home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 June / PCpro_2006_06.ISO / files / mstools / MBaslineSASetup-EN.msi / !_StringData < prev    next >
Encoding:
Text File  |  2006-04-07  |  136.6 KB  |  589 lines

  1. NameTableCould not find any previously installed compliant products on the machine for installing this product.TypePropertyValue_ValidationColumnNullableMinValueMaxValueKeyTableKeyColumnCategorySetDescriptionName of tableIdentifierNName of columnDescription of columnTextYSet of values that are permittedString categoryText;Formatted;Template;Condition;Guid;Path;Version;Language;Identifier;Binary;UpperCase;LowerCase;Filename;Paths;AnyPath;WildCardFilename;RegPath;KeyFormatted;CustomSource;Property;Cabinet;Shortcut;URLColumn to which foreign key connectsFor foreign key, Name of table to which data must linkMaximum value allowedMinimum value allowedWhether the column is nullableY;N;@Name of property, uppercase if settable by launcher or loader.String value for property.  Never null or empty.Microsoft Baseline Security Analyzer 2.0ProductName2.0.5029.2ProductVersion1033ProductLanguageMicrosoft CorporationManufacturer{8A8F4EF8-160C-4E0F-B32D-92E2313E039B}ProductCode{1888A492-AD73-4BBE-A939-08AF22B68A75}UpgradeCodeUPGMBSA0SecureCustomPropertiesUpgradeVersionMinVersionMaxLanguageAttributesRemoveActionPropertyThe attributes of this product set.A comma-separated list of languages for either products in this set or products not in this set.The property to set when a product in this set is found.UpperCaseThe list of features to remove when uninstalling a product from this set.  The default is "ALL".FormattedThe UpgradeCode GUID belonging to the products in this set.GuidThe maximum ProductVersion of the products in this set.  The set may or may not include products with this particular version.The minimum ProductVersion of the products in this set.  The set may or may not include products with this particular version.0.0.0.0{85137A66-89EC-495A-A727-2A796057112A}UPGMBSAUPGMBSA1{E08FB153-7428-4643-83EB-A203BCAE6D32}NEWMBSA0NEWMBSAUPGMBSA0;UPGMBSA1;UPGMBSA;NEWMBSA0;NEWMBSA{97A4D516-DB83-4379-84E2-EF2A017A9F85}2.0VersionBuildVersion100INSTALLLEVEL1ARPNOREPAIRmbsa.exeARPPRODUCTICONreadme.htmlARPREADME{&MSSansSerif8}TEXT{&MSSansSerif8bold}BOLD{&Arial8}TITLE{&MSSansSerif8Black}SUBTITLENoAcceptAllUsersApplicationUsersdmusREINSTALLMODEMicrosoft Baseline Security AnalyzerMyProductNameARInstallChoiceALLUSERSRepairMModeTypeModifyOperationhttp://www.microsoft.comARPURLINFOABOUThttp://go.microsoft.com/fwlink/?LinkId=16534ARPURLUPDATEINFOhttp://go.microsoft.com/fwlink/?LinkId=16531ARPHELPLINKhttp://go.microsoft.com/fwlink/?LinkId=16533XMLParserInstallerRemoving previous [MyProductName] versionsMBSARemoveMessageLaunchConditionConditionLocalizable text to display when condition fails and install must abort.Expression which must evaluate to TRUE in order for install to commence.This application only runs on Windows 2000 SP3 or later.VersionNT >= 500 AND Win2kSP3Later = 1This application does not run on Windows 95/98.NOT Version9XCustomActionActionSourceTargetThe numeric custom action type, consisting of source location, code type, entry, option flags.Primary key, name of action, normally appears in sequence table unless private use.The table reference of the source of the code.CustomSourceExcecution parameter, depends on the type of custom actionomusSetPatchReinstallModeAllREINSTALLSetPatchModefile://[!readme.html]SetReadmeLocationRegisterMBSAInstallermbsainstall.dllClearMBSAInstallerClearMBSAInstaller.commitClearMBSAInstaller.rollbackWaitMBSAInstallerPrintEULAVerifyWin2kSP3OrLaterA newer version of [MyProductName] was detected on your system. Downgrade to an older version is not allowed. To install this version, it is first required to uninstall the current version using Add/Remove Programs on the Control PanelNewerVersionFatalAnother instance of [MyProductName] Setup is already running. You may not start this setup until the previous instance is complete.InstallerRunningFatal[MyProductName] cannot overwrite another installation that is present in the same folder. Please choose a different folder.OverwriteProtectionFatal
  2.         On Error Resume Next
  3.         Session.DoAction("VerifyWin2kSP3OrLater")
  4.     PrepareLaunchConditions
  5.         On Error Resume Next
  6.         If Not XCreateObject("MSXML2.DOMDocument", parser) Then
  7.             Session.Property("XMLParserMissing") = "1"
  8.         Else
  9.             Session.Property("XMLParserMissing") = ""
  10.             Set parser = Nothing
  11.         End If
  12.         
  13.         Function XCreateObject(name, ByRef obj)
  14.             On Error Resume Next
  15.             Set obj = Nothing
  16.             If name = "MSXML2.DOMDocument" Then
  17.                 Const MIN_VERSION = 3
  18.                 Const MAX_VERSION = 5
  19.         
  20.                 For v = MIN_VERSION To MAX_VERSION
  21.                     Err.Clear
  22.                     Set obj = CreateObject("MSXML2.DOMDocument." & v & ".0")
  23.                     If Err <> 0 Then
  24.                         Set obj = Nothing
  25.                     Else
  26.                         Exit For
  27.                     End If    
  28.                 Next
  29.             Else
  30.                 Set obj = CreateObject(name)
  31.             End If
  32.             XCreateObject = NOT (obj Is Nothing)
  33.         End Function        
  34.     TestXMLParser
  35.         On Error Resume Next
  36.         Set WshShell = CreateObject("WScript.Shell")
  37.         WshShell.Run Session.Property("XMLParserInstaller")
  38.         Set WshShell = Nothing
  39.     LaunchXMLInstaller
  40.         On Error Resume Next
  41.         Session.DoAction("TestXMLParser")    
  42.     PostVerifyRequirements
  43.         On Error Resume Next
  44.         
  45.         Set d = Session.Installer.OpenDatabase(Session.Property("OriginalDatabase"),0)
  46.         Set x1 = d.OpenView("SELECT `Value` FROM `Property` WHERE `Property`='ProductVersion'")
  47.         x1.Execute
  48.         Set r1 = x1.Fetch
  49.  
  50.         installed = (Session.Property("Installed") <> "")
  51.         curStrVer = Session.Property("ProductVersion")
  52.         pkgStrVer = r1.StringData(1)
  53.         curVer = GetVersion(Session.Property("ProductVersion"))
  54.         pkgVer = GetVersion(r1.StringData(1))
  55.         
  56.         x1.Close
  57.         Set r1 = Nothing
  58.         Set x1 = Nothing
  59.         Set d = Nothing
  60.         
  61.         If curVer > pkgVer Then
  62.             Session.Property("Downgrade") = "1"
  63.         End If
  64.         If  installed AND (curVer < pkgVer) Then
  65.             Session.Property("Upgrade") = "1"
  66.             Session.Property("UpgradeFrom") = curStrVer
  67.             Session.Property("UpgradeTo") = pkgStrVer
  68.             Session.Property("MModeType") = "Upgrade"
  69.         End If
  70.         
  71.         If InStr(Session.Property("REINSTALLMODE"), "v") > 0 Then
  72.             Session.Property("Reinstall") = "1"
  73.         End If
  74.  
  75.         Function GetVersion(sv)
  76.             ' XX.XX.XXXX.XXX[MACHINE]
  77.             sv1 = Split(sv, "[")
  78.             
  79.             ' XX.XX.XXXX.XXX
  80.             a = Split(sv1(0), ".")
  81.             
  82.             If UBound(a) <> 3 Then
  83.                 GetVersion = sv1(0)
  84.             End If
  85.             
  86.             v = a(0)
  87.             v = a(1) + v*100
  88.             v = a(2) + v*10000
  89.             v = a(3) + v*1000
  90.             
  91.             GetVersion = v
  92.         End Function
  93.     CheckVersions
  94.         ' On Error Resume Next
  95.         Session.DoAction("CheckVersions")
  96.         If (Session.Property("Installed") <> "") AND (Session.Property("UILevel") <> 5) Then
  97.             If Len(Session.Property("Upgrade")) > 0 Then
  98.                 Session.Property("UpgradeStarted") = "1"
  99.                 Session.Property("REMOVE") = "ALL"
  100.  
  101.                 upg =     "*level=" & Session.Property("UILevel") &_
  102.                             "*file=" & Session.Property("OriginalDatabase") &_
  103.                             "*upg=" & Session.Property("UpgradeStarted")
  104.                 Session.Property("InstallLaunchUpgradeInstaller") = upg
  105.             End If
  106.         End If
  107.     InstallCheckVersions
  108.         If Len(Session.Property("InstallLaunchUpgradeInstaller")) > 0 Then
  109.             Session.Property("InstallLaunchUpgradeInstaller") = Session.Property("InstallLaunchUpgradeInstaller") &_
  110.                         "*folder=" & Session.Property("INSTALLDIR")
  111.         End If
  112.     InstallFolderUpgradeInstaller
  113.         On Error Resume Next
  114.         If Len(Session.Property("UpgradeStarted")) > 0 Then
  115.             Session.DoAction("ClearMBSAInstaller")
  116.             Set WshShell = CreateObject("WScript.Shell")
  117.             WshShell.Run "msiexec /i """ & Session.Property("OriginalDatabase") & """ UPGRADESILENT=1 INSTALLDIR=""" & Session.Property("INSTALLDIR") & """"
  118.             Set WshShell = Nothing
  119.         Else
  120.             Session.DoAction("ExitDialog")
  121.         End If
  122.     LaunchUpgradeInstaller
  123.         On Error Resume Next
  124.         If Len(Session.Property("CustomActionData")) > 0 Then
  125.             Set WshShell = CreateObject("WScript.Shell")
  126.             WshShell.Run "msiexec " & UILevel2Args(GetParameter("level")) & " /i """ & GetParameter("file") & """ UPGRADESILENT=1 INSTALLDIR=""" & GetParameter("folder") & """"
  127.             Set WshShell = Nothing
  128.         End If
  129.         
  130.         Function UILevel2Args(level)
  131.             Select Case level
  132.                 Case 2
  133.                     UILevel2Args = "/qn "
  134.                 Case 3
  135.                     UILevel2Args = "/qb! "
  136.                 Case 4
  137.                     UILevel2Args = "/qr "
  138.                 Case 5
  139.                     UILevel2Args = ""
  140.             End Select
  141.         End Function
  142.         
  143.         Function GetParameter(param)
  144.             data = Session.Property("CustomActionData")
  145.             dataSplit = Split(data, "*")
  146.             For i = 0 To UBound(dataSplit)
  147.                 dataParam = Trim(dataSplit(i))
  148.                 pos = InStr(dataParam, "=")
  149.                 If pos > 0 Then
  150.                     If LCase(Left(dataParam, pos-1)) = LCase(Trim(param)) Then
  151.                         GetParameter = Right(dataParam, Len(dataParam)-pos)
  152.                         Exit Function
  153.                     End If
  154.                 End If
  155.             Next
  156.             GetParameter = ""
  157.         End Function
  158.     InstallLaunchUpgradeInstaller
  159.         On Error Resume Next
  160.         If Session.Property("UPGRADESILENT") = "1" Then
  161.             Session.Property("UpgradeSilent") = "1"
  162.             Session.Property("Upgrade") = "1"
  163.             Session.Property("MModeType") = "Upgrade"
  164.         End If
  165.     CheckSilentUpgrade
  166.         On Error Resume Next
  167.         Const MAX_PATH_LEN = 107
  168.         Const MAX_ALLOWED_LEN = 240
  169.         If Len(Session.Property("INSTALLDIR")) > MAX_PATH_LEN Then
  170.             Session.Property("InstallPathTooBig") = "1"
  171.         Else
  172.             Session.Property("InstallPathTooBig") = ""
  173.         End If
  174.  
  175.         If Len(Session.Property("INSTALLDIR")) > MAX_ALLOWED_LEN Then
  176.             installDir = Session.Property("INSTALLDIR")
  177.             Session.Property("INSTALLDIR") = Left(installDir, MAX_ALLOWED_LEN)
  178.         End If
  179.     CheckInstallPathTooBig
  180.         On Error Resume Next
  181.  
  182.         If Len(Session.Property("INSTALLDIR")) > 0 Then
  183.             Set fs = CreateObject("Scripting.FileSystemObject")    
  184.             folder = Session.Property("INSTALLDIR") & "\"
  185.             
  186.             If (NOT CanOverwrite(folder & "mbsa.exe") OR _
  187.                 NOT CanOverwrite(folder & "mbsacli.exe") OR _
  188.                 NOT CanOverwrite(folder & "serversecure.dll") OR _
  189.                 NOT CanOverwrite(folder & "xmldb.dll")) AND _
  190.                 (NOT Session.Property("Installed") <> "") Then
  191.                     Session.Property("OverwriteDetected") = "1"
  192.             Else
  193.                     Session.Property("OverwriteDetected") = ""
  194.             End If
  195.         End If
  196.         
  197.         ' Returns True if files belongs to this release
  198.         Function CanOverwrite(fname)
  199.             On Error Resume Next
  200.             Set fs = CreateObject("Scripting.FileSystemObject")
  201.             
  202.             CanOverwrite = True
  203.             
  204.             If fs.FileExists(fname) Then
  205.                 CanOverwrite = False
  206.                 
  207.                 ver = fs.GetFileVersion(fname)
  208.                 If Len(ver) > 0 Then
  209.                     ' Verify major.minor versions are the same
  210.                     verFields = Split(ver, ".")
  211.                     thisFields = Split("2.0", ".")
  212.                     If UBound(verFields) >= 2 Then
  213.                         If verFields(0) = thisFields(0) AND _
  214.                            verFields(1) = thisFields(1) Then
  215.                             CanOverwrite = True
  216.                         End If
  217.                     End If
  218.                 End If
  219.             End If
  220.         End Function
  221.     CheckOverwriteProtectionDirectoryDirectory_ParentDefaultDirUnique identifier for directory entry, primary key. If a property by this name is defined, it contains the full path to the directory.The default sub-path under parent's path.Reference to the entry in this table specifying the default parent directory. A record parented to itself or with a Null parent represents a root of the install tree.SOURCEDIRTARGETDIR.:ProgramFProgramFilesFolderMBSA|Microsoft Baseline Security Analyzer 2INSTALLDIRCreateFolderDirectory_Component_Foreign key into the Component table.ComponentPrimary key, could be foreign key into the Directory table.ProgramsFileFileNameFileSizeSequenceSequence with respect to the media images; order must track cabinet order.Integer containing bit flags representing file attributes (with the decimal value of each bit position in parentheses)Primary key, non-localized token, must match identifier in cabinet.  For uncompressed files, this field is ignored.Foreign key referencing Component that controls the file.File name used for installation, may be localized.  This may contain a "short name|long name" pair.FilenameSize of file in bytes (long integer).List of decimal language Ids, comma-separated if more than one.Version string for versioned files;  Blank for unversioned files.MsiFileHashFile_OptionsHashPart1HashPart2HashPart3HashPart4Primary key, foreign key into File table referencing file with this hashVarious options and attributes for this hash.mbsacli.exeSelfRegCostForeign key into the File table denoting the module that needs to be registered.The cost of registering the module.serversecure.dllSERVER~1.DLL|serversecure.dllxmldb.dllwusscan.dllRemoveFileFileKeyDirPropertyInstallModeForeign key referencing Component that controls the file to be removed.Primary key used to identify a particular file entryName of the file to be removed.WildCardFilenameName of a property whose value is assumed to resolve to the full pathname to the folder of the file to be removed.Installation option, one of iimEnum.1;2;3mssecure*.cabRemoveFile.mssecure.cabmssecure*.xmlRemoveFile.mssecure.xmlthumbs.dbRemoveFile.Programs.Thumbs.dbRemoveFolder.InstallDirComponentIdKeyPathA conditional statement that will disable this component if the specified condition evaluates to the 'True' state. If a component is disabled, it will not be installed, regardless of the 'Action' state associated with the component.Remote execution option, one of irsEnumPrimary key used to identify a particular component record.A string GUID unique to this component, version, and language.Required key of a Directory table record. This is actually a property name whose value contains the actual path, set either by the AppSearch action or with the default setting obtained from the Directory table.Either the primary key into the File table, Registry table, or ODBCDataSource table. This extract path is stored when the component is installed, and is used to detect the presence of the component and to return the path to it.File;Registry;ODBCDataSource{2BACB435-0CF0-407A-839B-EABB04F9A119}OMBSARegistryRootKeyThe registry value name.The registry value.Foreign key into the Component table referencing component that controls the installing of the registry value.The key for the registry value.RegPathPrimary key, non-localized token.The predefined root key for the registry value, one of rrkEnum.#1NoVersionCheckSOFTWARE\Microsoft\Microsoft Baseline Security AnalyzerRegOMBSA.NoNewVer.1RemoveRegistryForeign key into the Component table referencing component that controls the deletion of the registry value.The predefined root key for the registry value, one of rrkEnum{D82B4E8F-C488-4B53-8A21-9FAE8DD039CC}System.VCSharedmsvcp60.dll{23FDF953-3D5D-49BF-B36D-5230CD819441}ApplicationABOUT~2.HTM|about.htmlabout.htmlCOMPUT~1.XSL|computerMRU.xslcomputerMRU.xslDEFAUL~1.HTM|Default.htmlDefault.htmlDOMAIN~1.XSL|domainMRU.xsldomainMRU.xslERRORS~2.HTM|errors.htmlerrors.htmlerrors.xsl|errors.xslerrors.xslFOOTER~1.HTM|Footer.htmlFooter.htmlHEADER~2.HTM|Header.htmlHeader.htmlipMRU.xsl|ipMRU.xslipMRU.xslIPRANG~1.XSL|iprangeMRU.xsliprangeMRU.xslONEREP~2.HTM|onereport.htmlonereport.htmlOPTION~1.HTM|optionshelp.htmloptionshelp.htmlPICKCO~1.HTM|pickcomputer.htmlpickcomputer.htmlPICKCO~2.HTM|pickcomputers.htmlpickcomputers.htmlPICKRE~2.HTM|pickreport.htmlpickreport.htmlPRINTR~3.HTM|PrintReport.htmlPrintReport.htmlPRINTR~2.XSL|printreport.xslprintreport.xslPRINTR~4.HTM|PrintReportList.htmlPrintReportList.htmlREPORT~4.HTM|report.htmlreport.htmlreport.xsl|report.xslreport.xslRE52E8~1.HTM|reportdetails.htmlreportdetails.htmlREPORT~1.XSL|reportdetails.xslreportdetails.xslREPORT~2.XSL|reportdetailsWUS.xslreportdetailsWUS.xslREPORT~3.XSL|reportdetailsSQL.xslreportdetailsSQL.xslREPORT~5.XSL|reportnamelist.xslreportnamelist.xslREA5FB~1.HTM|reports.htmlreports.htmlreports.xsl|reports.xslreports.xslSCAN~1.HTM|scan.htmlscan.htmlSHOWRE~1.HTM|ShowReport.htmlShowReport.htmlsusMRU.xsl|susMRU.xslsusMRU.xslTOOLBA~2.HTM|ToolBar.htmlToolBar.htmlVIEWER~2.HTM|viewerrors.htmlviewerrors.htmlVIEWRE~2.HTM|viewreport.htmlviewreport.htmlWELCOM~1.HTM|welcome.htmlwelcome.htmlNEWVER~1.HTM|newversion.htmlnewversion.htmlRE8DB5~1.XSL|reportdetailsIEZones.xslreportdetailsIEZones.xslREPORT~6.HTM|reportdetailsIEZonesSub.htmlreportdetailsIEZonesSub.htmlREF7F1~1.XSL|reportdetailsIEZonesSub.xslreportdetailsIEZonesSub.xsl{953DC0EA-A038-4BAB-A88F-84EA9DE42D7D}RemoteInstallermbsa2ri.exembsa2mu.exe{645843B2-24E9-4C0D-A28D-065959231EBF}DataChecks.csvDetails.csvNOEXPI~1.TXT|NoExpireOk.txtNoExpireOk.txtServices.txt{515A4D25-222D-4C00-9D82-04A96F7ED25E}ConsoleDataCMDDET~2.XSL|cmdDetailReport_v.xslcmdDetailReport_v.xslCMDERR~1.XSL|cmdErrors.xslcmdErrors.xslCMDOVE~1.XSL|cmdOverviewReport.xslcmdOverviewReport.xslCMDREP~1.XSL|cmdReportList.xslcmdReportList.xsl{03A660AC-007B-4EB9-835A-DCF624CC85AA}EventLog[#serversecure.dll]EventMessageFileSYSTEM\CurrentControlSet\Services\Eventlog\Application\MBSAEventLog.MessageFile#7TypesSupportedEventLog.Types{DC434AAE-885B-4108-861F-F37F3FCE3A0C}FileTypeMBSA.Report.ViewerSOFTWARE\Classes\.mbsaFileType.MBSA.1MBSA Scan ReportSOFTWARE\Classes\MBSA.Report.ViewerFileType.MBSA.3"[INSTALLDIR]mbsa.exe" "%1"SOFTWARE\Classes\MBSA.Report.Viewer\shell\open\commandFileType.MBSA.4*FileType.DEL.MBSA.1FileType.DEL.MBSA.2{BA4D2648-08A4-4351-97E2-673A74F0FB45}HelpCHECK2~1.HTM|check20001.htmlcheck20001.htmlCHECK2~2.HTM|check20001fix.htmlcheck20001fix.htmlCHECK5~1.HTM|check5311.htmlcheck5311.htmlCHECK5~2.HTM|check53110.htmlcheck53110.htmlCHECK5~3.HTM|check53110fix.htmlcheck53110fix.htmlCHECK5~4.HTM|check53111.htmlcheck53111.htmlCH60AA~1.HTM|check53111fix.htmlcheck53111fix.htmlCHFDC0~1.HTM|check53112.htmlcheck53112.htmlCH60A9~1.HTM|check53112fix.htmlcheck53112fix.htmlCH0ECC~1.HTM|check53114.htmlcheck53114.htmlCH60A7~1.HTM|check53114fix.htmlcheck53114fix.htmlCH0ECA~1.HTM|check53115.htmlcheck53115.htmlCH60AE~1.HTM|check53115fix.htmlcheck53115fix.htmlCH0EC8~1.HTM|check53116.htmlcheck53116.htmlCH60A5~1.HTM|check53116fix.htmlcheck53116fix.htmlCH0EC6~1.HTM|check53117.htmlcheck53117.htmlCH60A4~1.HTM|check53117fix.htmlcheck53117fix.htmlCHA8C6~1.HTM|check5311fix.htmlcheck5311fix.htmlCH3485~1.HTM|check5313.htmlcheck5313.htmlCHAAC6~1.HTM|check5313fix.htmlcheck5313fix.htmlCH3885~1.HTM|check5314.htmlcheck5314.htmlCHABC6~1.HTM|check5314fix.htmlcheck5314fix.htmlCH3C85~1.HTM|check5315.htmlcheck5315.htmlCHACC6~1.HTM|check5315fix.htmlcheck5315fix.htmlCH3095~1.HTM|check5316.htmlcheck5316.htmlCHADC6~1.HTM|check5316fix.htmlcheck5316fix.htmlCH3495~1.HTM|check5317.htmlcheck5317.htmlCHAEC6~1.HTM|check5317fix.htmlcheck5317fix.htmlCH3895~1.HTM|check5318.htmlcheck5318.htmlCHAFC6~1.HTM|check5318fix.htmlcheck5318fix.htmlCH3C95~1.HTM|check5319.htmlcheck5319.htmlCHA0D6~1.HTM|check5319fix.htmlcheck5319fix.htmlCH3C7F~1.HTM|check5321.htmlcheck5321.htmlCHA849~1.HTM|check5321fix.htmlcheck5321fix.htmlCH348F~1.HTM|check5323.htmlcheck5323.htmlCHAA49~1.HTM|check5323fix.htmlcheck5323fix.htmlCH388F~1.HTM|check5324.htmlcheck5324.htmlCHAB49~1.HTM|check5324fix.htmlcheck5324fix.htmlCH3C8F~1.HTM|check5325.htmlcheck5325.htmlCHAC49~1.HTM|check5325fix.htmlcheck5325fix.htmlCH309F~1.HTM|check5326.htmlcheck5326.htmlCHAD49~1.HTM|check5326fix.htmlcheck5326fix.htmlCH349F~1.HTM|check5327.htmlcheck5327.htmlCHAE49~1.HTM|check5327fix.htmlcheck5327fix.htmlCH389F~1.HTM|check5328.htmlcheck5328.htmlCHAF49~1.HTM|check5328fix.htmlcheck5328fix.htmlCH3C71~1.HTM|check5331.htmlcheck5331.htmlCHFDC2~1.HTM|check53310.htmlcheck53310.htmlCH60AA~2.HTM|check53310fix.htmlcheck53310fix.htmlCHFDC0~2.HTM|check53311.htmlcheck53311.htmlCH60A9~2.HTM|check53311fix.htmlcheck53311fix.htmlCHFDCE~2.HTM|check53312.htmlcheck53312.htmlCH60A8~2.HTM|check53312fix.htmlcheck53312fix.htmlCHA8C9~1.HTM|check5331fix.htmlcheck5331fix.htmlCH3481~1.HTM|check5333.htmlcheck5333.htmlCHAAC9~1.HTM|check5333fix.htmlcheck5333fix.htmlCH3881~1.HTM|check5334.htmlcheck5334.htmlCHABC9~1.HTM|check5334fix.htmlcheck5334fix.htmlCH3C81~1.HTM|check5335.htmlcheck5335.htmlCHACC9~1.HTM|check5335fix.htmlcheck5335fix.htmlCH3091~1.HTM|check5336.htmlcheck5336.htmlCHADC9~1.HTM|check5336fix.htmlcheck5336fix.htmlCH3491~1.HTM|check5337.htmlcheck5337.htmlCHAEC9~1.HTM|check5337fix.htmlcheck5337fix.htmlCH3891~1.HTM|check5338.htmlcheck5338.htmlCHAFC9~1.HTM|check5338fix.htmlcheck5338fix.htmlCH3C91~1.HTM|check5339.htmlcheck5339.htmlCHA0D9~1.HTM|check5339fix.htmlcheck5339fix.htmlCH487B~1.HTM|check5340.htmlcheck5340.htmlCHA744~1.HTM|check5340fix.htmlcheck5340fix.htmlCH06D8~1.HTM|check53176.htmlcheck53176.htmlCH64A5~1.HTM|check53176fix.htmlcheck53176fix.htmlCH06D6~1.HTM|check53177.htmlcheck53177.htmlCH64A4~1.HTM|check53177fix.htmlcheck53177fix.htmlCH0AD4~1.HTM|check53178.htmlcheck53178.htmlCH66A3~1.HTM|check53178fix.htmlcheck53178fix.htmlCH0AD2~1.HTM|check53179.htmlcheck53179.htmlCH66A2~1.HTM|check53179fix.htmlcheck53179fix.htmlMBSAHE~1.HTM|mbsahelp.htmlmbsahelp.htmlREADME~1.HTM|readme.html{5A350A9A-130A-45DB-BCDA-F93A58C4E735}cssfooter.cssRESULT~1.CSS|resultdetails.cssresultdetails.cssscanner.csscoUA.csscoUApr~1.css|coUAprint.csscoUAprint.css{EE87E321-A7F6-43AC-978A-3B28DE316A1D}graphicsarrow.gifARROW_~1.GIF|arrow_disabled.gifarrow_disabled.gifastrx.gifbanner.jpgbarrow.gifBARROW~1.GIF|barrow_disabled.gifbarrow_disabled.gifchek_grn.gifclose_1.gifclose_2.gifclose_3.gifcopy.gifdash.gifexcl_gld.gifexcl_red.gifinfo.gifLEFTCO~1.GIF|LeftCorner.gifLeftCorner.gifMSTOOL~1.GIF|mstoolbar_ms.gifmstoolbar_ms.gifplus_blu.gifprint.gifprogress.gifPROGRE~1.GIF|progress_empty.gifprogress_empty.gifRIGHTC~1.GIF|RightCorner.gifRightCorner.gifscore_1.gifscore_3.gifspacer.gifstar_blu.gifTOC_EN~1.GIF|toc_endnode.giftoc_endnode.gifwait_m.curx_gold.gifx_red.gifdownload.gifexp_expand.gifexp_collapse.gifmini_x_red.gifmini_x_gold.gifmini_chek_grn.gifmini_star_blu.gifRemoveFile.graphics.Thumbs.db{11B91E59-BF79-41F1-9AC6-1A3A84DF7451}includesdropdown.jsobject.js{AE607A21-07BF-4041-870C-3A6DCE2325FA}DesktopFolderDesktopIconShortcutArgumentsHotkeyIcon_IconIndexShowCmdWkDirThe name of the shortcut to be created.The description for the shortcut.Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.Foreign key into the File table denoting the external icon file for the shortcut.IconThe icon index for the shortcut.Foreign key into the Directory table denoting the directory where the shortcut file is created.The shortcut target. This is usually a property that is expanded to a file or a folder that the shortcut points to.The command-line arguments for the shortcut.The hotkey for the shortcut. It has the virtual-key code for the key in the low-order byte, and the modifier flags in the high-order byte. The show command for the application window.The following values may be used.1;3;7Name of property defining location of working directory.[#mbsa.exe]mbsa.lnk|Microsoft Baseline Security Analyzer 2.0SOFTWARE\Microsoft\[MyProductName]\DesktopIconRegMBSA.CU.DesktopIcon{24958D48-8535-4F67-9583-C1A73CD56825}ProgramMenuFolderProgramMenuIconSOFTWARE\Microsoft\[MyProductName]RegMBSA.CU.ProgramMenuIcon{4934CD13-9183-47DC-AAC3-CAA7492A93B8}FeatureFeature_ParentTitleDisplayLevelLonger descriptive text describing a visible feature item.Feature attributes0;1;2;4;5;6;8;9;10;16;17;18;20;21;22;24;25;26;32;33;34;36;37;38;48;49;50;52;53;54Primary key used to identify a particular feature record.The name of the Directory that can be configured by the UI. A non-null value will enable the browse button.The install level at which record will be initially selected. An install level of 0 will disable an item and prevent its display.Short text identifying a visible feature item.Numeric sort order, used to force a specific display ordering.Optional key of a parent record in the same table. If the parent is not selected, then the record will not be installed. Null indicates a root item.MBSAFeatureComponentsFeature_Foreign key into Feature table.Foreign key into Component table.StartMenuIconMediaDiskIdLastSequenceDiskPromptCabinetVolumeLabelThe property defining the location of the cabinet file.If some or all of the files stored on the media are compressed in a cabinet, the name of that cabinet.Primary key, integer to determine sort order for table.Disk name: the visible text actually printed on the disk.  This will be used to prompt the user when this disk needs to be inserted.File sequence number for the last file for this media.The label attributed to the volume.Disk1#Data.CabArial10DefaultUIFontErrorDialogControlEventDialog_Control_EventArgumentOrderingA standard conditional statement that specifies under which conditions an event should be triggered.An integer used to order several events tied to the same control. Can be left blank.A value to be used as a modifier when triggering a particular event.A foreign key to the Dialog table, name of the dialog.DialogA foreign key to the Control table, name of the controlControlAn identifier that specifies the type of the event that should take place when the user interacts with control specified by the first two entries.ReturnEndDialogCancelExitYesXWidthHeightControl_NextThe type of the control.Vertical coordinate of the upper left corner of the bounding rectangle of the control.A string used to set the initial text contained within a control (if appropriate).The name of a defined property to be linked to this control. A 32-bit word that specifies the attribute flags to be applied to this control.Height of the bounding rectangle of the control.Width of the bounding rectangle of the control.Horizontal coordinate of the upper left corner of the bounding rectangle of the control.Name of the control. This name must be unique within a dialog, but can repeat on different dialogs. The name of an other control on the same dialog. This link defines the tab order of the controls. The links have to form one or more cycles!External key to the Dialog table, name of the dialog.The help strings used with the button. The text is optional. [TEXT]&ResumePushButton[TEXT]Installation is not complete. If you quit the setup program now, the application will not be installed. You can run the setup program at a later time to complete the installation. To continue installing, click Resume. To quit the setup program, click Exit Setup.[TEXT]&Exit SetupHCenteringVCenteringControl_FirstControl_DefaultControl_CancelA 32-bit word that specifies the attribute flags to be applied to this dialog.Height of the bounding rectangle of the dialog.Width of the bounding rectangle of the dialog.Name of the dialog.Defines the cancel control. Hitting escape or clicking on the close icon on the dialog is equivalent to pushing this button.Defines the default control. Hitting return is equivalent to pushing this button.Defines the control that has the focus when the dialog is created.Horizontal position of the dialog on a 0-100 scale. 0 means left end, 100 means right end of the screen, 50 center.A text string specifying the title to be displayed in the title bar of the dialog's window.Vertical position of the dialog on a 0-100 scale. 0 means top end, 100 means bottom end of the screen, 50 center.ListBoxOrderThe visible text to be assigned to the item. Optional. If this entry or the entire column is missing, the text is the same as the value.A named property to be tied to this item. All the items tied to the same property become part of the same listbox.The value string associated with this item. Selecting the line will set the associated property to this value.A positive integer used to determine the ordering of the items within one list..The integers do not have to be consecutive.MBSA SetupErrorYes[TEXT]&YesErrorAbortA[TEXT]&AbortErrorCancelC[TEXT]&CancelErrorIgnoreI[TEXT]&IgnoreErrorNo[TEXT]&NoErrorOkO[TEXT]&OKErrorRetryR[TEXT]&RetryerroriconErrorIcon[TEXT]ErrorTextISSCRIPTRUNNING="1"CleanUpDoActionFinishFatalErrorControlConditionThe desired action to be taken on the specified control.Default;Disable;Enable;Hide;ShowA standard conditional statement that specifies under which conditions the action should be triggered.A foreign key to the Control table, name of the control.NOT UpdateStartedDefault[Suspend]DisableUpdateStartedEnable[TEXT]&Finish{}BackLineDlgLine[TITLE]Setup has encountered an error.TextLine1[TEXT]Setup was interrupted before [MyProductName] could be completely installed.TextLine2HideFinishText1Show[TEXT]Your system has not been modified. To complete installation at another time, please run setup again.FinishText2[TEXT]Click Finish to exit setup.RestContText1[TEXT]You can either keep any existing installed elements on your system to continue this installation at a later time or you can restore your system to its original state prior to the installation.RestContText2[TEXT]Click Restore or Continue Later to exit setup.bannerBitmapBannerLine12top16Bitmap24[TEXT]< &BackRetryFilesInUseIgnore[TITLE]Running ProgramsRunningProgramsList[TEXT]< &Ignore[TEXT]Setup has determined that the following program(s) are running.ListLabel[TEXT]Setup recommends closing these programs during installation.RecommendedLabelFileInUseProcessOKUserExitInstalledTextInstall[TEXT][MyProductName] Setup was interrupted before your new software was fully installed. You can rerun this installation at another time to complete the setup of this software.Operation <> "Modify" OR NOT InstalledTextModify[TEXT]Configuration of [MyProductName] was interrupted before you made any changes to the product. You can rerun this installation at another time to modify or remove this software.Operation <> "Reinstall" OR NOT InstalledTextRepair[TEXT]Repair of [MyProductName] was interrupted before it was complete.Operation <> "Remove" OR NOT InstalledTextRemove[TEXT]Removal of [MyProductName] was interrupted before it was complete.Operation <> "Upgrade" OR NOT InstalledTextUpgrade[TEXT]Upgrade of [MyProductName] was interrupted before it was complete.InstallPathTooBig[TEXT][MyProductName] Setup cannot use the folder specified because the path name is too long. Please select another destination folder.MessageNOT UpgradeSilentSpawnDialogProgressUpgradeSilentEventMappingAttributeA foreign key to the Dialog table, name of the Dialog.An identifier that specifies the type of the event that the control subscribes to.The name of the control attribute, that is set when this event is received.SetProgressProgressBar[TEXT]Current Action:ActionCaptionActionTextPrepInstInstalled OR UpgradeSilent[TEXT]Preparing to install...PrepUninstMModeType <> "Remove" OR NOT Installed[TEXT]Preparing to uninstall...PrepRepairMModeType <> "Repair" OR NOT Installed[TEXT]Preparing to repair...PrepUpgrade(MModeType <> "Upgrade" OR NOT Installed) AND NOT UpgradeSilent[TEXT]Preparing to upgrade...ActionDataInstallMgs[TITLE]Installation ProgressRemoveMsg[TITLE]Uninstallation ProgressRepairMsg[TITLE]Repair ProgressUpgradeMsg[TITLE]Upgrade Progress[SUBTITLE]Please waitText2LineTopLineBottomRequirementsMissing[TEXT]The system requiments necessary to run [MyProductName] are still not met. Please satisfy them before continuing.OverwriteDetectedDialog[TEXT][MyProductName] detected another instance in the same folder: [INSTALLDIR]. Please choose a different folder.WelcomeDialog0[SUBTITLE]Version [Version]Text14[TITLE]Welcome to [MyProductName]Line3Prep1[TEXT]Preparing [MyProductName] installation wizard...NOT InstalledPrep2[TEXT]Preparing [MyProductName] configuration wizard...LicenseDialogNewDialogNextStartSetupDialog[TEXT]&Next >Previous{&Arial14}[MyProductName] Setup[TEXT]WARNING: This program is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this program, or any portion of it, may result in severe civil and criminal penalties, and will be prosecuted to the maximum extent possible under law. Copyright 2002-2005 Microsoft Corporation. All rights reserved.[TEXT]It is strongly recommended that you exit all Windows programs before running this setup program. Click Cancel to quit the setup program, then close any programs you have running. Click Next to continue the installation.Text1[TITLE]Welcome to the [MyProductName]XMLParserMissingVerifyRequirementsNOT(XMLParserMissing)InstallationDestinationAccept = "Yes"Accept <> "Yes"RadioButtonGroupGroupLicense[SUBTITLE]You must agree with the license agreement below to proceed.PrintLicense{\rtf1\ansi\ansicpg1252\uc1\deff36\stshfdbch11\stshfloch0\stshfhich0\stshfbi0\deflang1033\deflangfe1041{\fonttbl{\f0\froman\fcharset0\fprq2{\*\panose 02020603050405020304}Times New Roman{\*\falt Times};}
  222. {\f2\fmodern\fcharset0\fprq1{\*\panose 02070309020205020404}Courier New;}{\f3\froman\fcharset2\fprq2{\*\panose 05050102010706020507}Symbol;}{\f10\fnil\fcharset2\fprq2{\*\panose 05000000000000000000}Wingdings;}
  223. {\f11\fmodern\fcharset128\fprq1{\*\panose 02020609040205080304}MS Mincho{\*\falt ?l?r ??\'81\'66c};}{\f36\fswiss\fcharset0\fprq2{\*\panose 020b0604030504040204}Tahoma;}{\f38\fswiss\fcharset0\fprq2{\*\panose 020b0603020202020204}Trebuchet MS;}
  224. {\f39\fmodern\fcharset128\fprq1{\*\panose 02020609040205080304}@MS Mincho;}{\f162\froman\fcharset238\fprq2 Times New Roman CE{\*\falt Times};}{\f163\froman\fcharset204\fprq2 Times New Roman Cyr{\*\falt Times};}
  225. {\f165\froman\fcharset161\fprq2 Times New Roman Greek{\*\falt Times};}{\f166\froman\fcharset162\fprq2 Times New Roman Tur{\*\falt Times};}{\f167\froman\fcharset177\fprq2 Times New Roman (Hebrew){\*\falt Times};}
  226. {\f168\froman\fcharset178\fprq2 Times New Roman (Arabic){\*\falt Times};}{\f169\froman\fcharset186\fprq2 Times New Roman Baltic{\*\falt Times};}{\f170\froman\fcharset163\fprq2 Times New Roman (Vietnamese){\*\falt Times};}
  227. {\f182\fmodern\fcharset238\fprq1 Courier New CE;}{\f183\fmodern\fcharset204\fprq1 Courier New Cyr;}{\f185\fmodern\fcharset161\fprq1 Courier New Greek;}{\f186\fmodern\fcharset162\fprq1 Courier New Tur;}
  228. {\f187\fmodern\fcharset177\fprq1 Courier New (Hebrew);}{\f188\fmodern\fcharset178\fprq1 Courier New (Arabic);}{\f189\fmodern\fcharset186\fprq1 Courier New Baltic;}{\f190\fmodern\fcharset163\fprq1 Courier New (Vietnamese);}
  229. {\f274\fmodern\fcharset0\fprq1 MS Mincho Western{\*\falt ?l?r ??\'81\'66c};}{\f272\fmodern\fcharset238\fprq1 MS Mincho CE{\*\falt ?l?r ??\'81\'66c};}{\f273\fmodern\fcharset204\fprq1 MS Mincho Cyr{\*\falt ?l?r ??\'81\'66c};}
  230. {\f275\fmodern\fcharset161\fprq1 MS Mincho Greek{\*\falt ?l?r ??\'81\'66c};}{\f276\fmodern\fcharset162\fprq1 MS Mincho Tur{\*\falt ?l?r ??\'81\'66c};}{\f279\fmodern\fcharset186\fprq1 MS Mincho Baltic{\*\falt ?l?r ??\'81\'66c};}
  231. {\f522\fswiss\fcharset238\fprq2 Tahoma CE;}{\f523\fswiss\fcharset204\fprq2 Tahoma Cyr;}{\f525\fswiss\fcharset161\fprq2 Tahoma Greek;}{\f526\fswiss\fcharset162\fprq2 Tahoma Tur;}{\f527\fswiss\fcharset177\fprq2 Tahoma (Hebrew);}
  232. {\f528\fswiss\fcharset178\fprq2 Tahoma (Arabic);}{\f529\fswiss\fcharset186\fprq2 Tahoma Baltic;}{\f530\fswiss\fcharset163\fprq2 Tahoma (Vietnamese);}{\f531\fswiss\fcharset222\fprq2 Tahoma (Thai);}{\f542\fswiss\fcharset238\fprq2 Trebuchet MS CE;}
  233. {\f543\fswiss\fcharset204\fprq2 Trebuchet MS Cyr;}{\f545\fswiss\fcharset161\fprq2 Trebuchet MS Greek;}{\f546\fswiss\fcharset162\fprq2 Trebuchet MS Tur;}{\f549\fswiss\fcharset186\fprq2 Trebuchet MS Baltic;}
  234. {\f554\fmodern\fcharset0\fprq1 @MS Mincho Western;}{\f552\fmodern\fcharset238\fprq1 @MS Mincho CE;}{\f553\fmodern\fcharset204\fprq1 @MS Mincho Cyr;}{\f555\fmodern\fcharset161\fprq1 @MS Mincho Greek;}{\f556\fmodern\fcharset162\fprq1 @MS Mincho Tur;}
  235. {\f559\fmodern\fcharset186\fprq1 @MS Mincho Baltic;}}{\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;
  236. \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128;\red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;}{\stylesheet{
  237. \ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \snext0 \sautoupd Normal;}{\s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  238. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext1 heading 1;}{\s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  239. \jclisttab\tx720\aspalpha\aspnum\faauto\ls17\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext2 heading 2;}{
  240. \s3\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar\tx1077\jclisttab\tx1440\aspalpha\aspnum\faauto\ls17\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext3 
  241. heading 3;}{\s4\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\aspalpha\aspnum\faauto\ls17\ilvl3\outlinelevel3\adjustright\rin0\lin1435\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 
  242. \sbasedon0 \snext4 heading 4;}{\s5\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\tx1792\jclisttab\tx2155\aspalpha\aspnum\faauto\ls17\ilvl4\outlinelevel4\adjustright\rin0\lin1792\itap0 
  243. \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext5 heading 5;}{\s6\ql \fi-357\li2149\ri0\sb120\sa120\widctlpar
  244. \jclisttab\tx2152\aspalpha\aspnum\faauto\ls17\ilvl5\outlinelevel5\adjustright\rin0\lin2149\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext6 heading 6;}{
  245. \s7\ql \fi-357\li2506\ri0\sb120\sa120\widctlpar\jclisttab\tx2509\aspalpha\aspnum\faauto\ls17\ilvl6\outlinelevel6\adjustright\rin0\lin2506\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext7 
  246. heading 7;}{\s8\ql \fi-357\li2863\ri0\sb120\sa120\widctlpar\jclisttab\tx2866\aspalpha\aspnum\faauto\ls17\ilvl7\outlinelevel7\adjustright\rin0\lin2863\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 
  247. \sbasedon0 \snext8 heading 8;}{\s9\ql \fi-358\li3221\ri0\sb120\sa120\widctlpar\jclisttab\tx3223\aspalpha\aspnum\faauto\ls17\ilvl8\outlinelevel8\adjustright\rin0\lin3221\itap0 
  248. \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext9 heading 9;}{\*\cs10 \additive \slocked \ssemihidden Default Paragraph Font;}{\*
  249. \ts11\tsrowd\trftsWidthB3\trpaddl108\trpaddr108\trpaddfl3\trpaddft3\trpaddfb3\trpaddfr3\tscellwidthfts0\tsvertalt\tsbrdrt\tsbrdrl\tsbrdrb\tsbrdrr\tsbrdrdgl\tsbrdrdgr\tsbrdrh\tsbrdrv 
  250. \ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs20\lang1024\langfe1024\loch\f0\hich\af0\dbch\af11\cgrid\langnp1024\langfenp1024 \snext11 \ssemihidden Normal Table;}{
  251. \s15\ql \li357\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext15 Body 1;}{
  252. \s16\ql \li720\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext16 Body 2;}{
  253. \s17\ql \li1077\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin1077\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext17 Body 3;}{
  254. \s18\ql \li1435\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin1435\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext18 Body 4;}{
  255. \s19\ql \li1803\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin1803\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext19 Body 5;}{
  256. \s20\ql \li2160\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin2160\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext20 Body 6;}{
  257. \s21\ql \li2506\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin2506\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext21 Body 7;}{
  258. \s22\ql \li2863\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin2863\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext22 Body 8;}{
  259. \s23\ql \li3221\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin3221\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext23 Body 9;}{
  260. \s24\ql \fi-357\li357\ri0\sb120\sa120\widctlpar\jclisttab\tx360\aspalpha\aspnum\faauto\ls1\adjustright\rin0\lin357\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext24 Bullet 1;}{
  261. \s25\ql \fi-363\li720\ri0\sb120\sa120\widctlpar\jclisttab\tx720\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext25 Bullet 2;}{
  262. \s26\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar\jclisttab\tx1080\aspalpha\aspnum\faauto\ls3\adjustright\rin0\lin1077\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext26 Bullet 3;}{
  263. \s27\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin1435\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext27 Bullet 4;}{
  264. \s28\ql \fi-357\li1792\ri0\sb120\sa120\widctlpar\jclisttab\tx1795\aspalpha\aspnum\faauto\ls5\adjustright\rin0\lin1792\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext28 Bullet 5;}{
  265. \s29\ql \fi-357\li2149\ri0\sb120\sa120\widctlpar\jclisttab\tx2152\aspalpha\aspnum\faauto\ls6\adjustright\rin0\lin2149\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext29 Bullet 6;}{
  266. \s30\ql \fi-357\li2506\ri0\sb120\sa120\widctlpar\jclisttab\tx2509\aspalpha\aspnum\faauto\ls7\adjustright\rin0\lin2506\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext30 Bullet 7;}{
  267. \s31\ql \fi-357\li2863\ri0\sb120\sa120\widctlpar\jclisttab\tx2866\aspalpha\aspnum\faauto\ls8\adjustright\rin0\lin2863\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext31 Bullet 8;}{
  268. \s32\ql \fi-358\li3221\ri0\sb120\sa120\widctlpar\jclisttab\tx3223\aspalpha\aspnum\faauto\ls9\adjustright\rin0\lin3221\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon23 \snext32 Bullet 9;}{
  269. \s33\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs28\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 Heading EULA;}{\s34\ql \li0\ri0\sb120\sa120\widctlpar\brdrb
  270. \brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs28\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 Heading Software Title;}{
  271. \s35\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext35 Preamble;}{\s36\ql \li0\ri0\sb120\sa120\widctlpar\brdrb
  272. \brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext1 Preamble Border;}{
  273. \s37\qc \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext37 Heading Warranty;}{
  274. \s38\ql \fi-360\li360\ri0\sb120\sa120\widctlpar\jclisttab\tx360\aspalpha\aspnum\faauto\ls11\outlinelevel0\adjustright\rin0\lin360\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext0 
  275. Heading 1 Warranty;}{\s39\ql \fi-360\li720\ri0\sb120\sa120\widctlpar\jclisttab\tx720\aspalpha\aspnum\faauto\ls11\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 
  276. \sbasedon0 \snext0 Heading 2 Warranty;}{\s40\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar\tx1077\jclisttab\tx1440\aspalpha\aspnum\faauto\ls10\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 
  277. \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon3 \snext40 Heading 3 Bold;}{\s41\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin1435\itap0 
  278. \fs19\ul\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon27 \snext41 Bullet 4 Underline;}{\s42\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  279. \fs19\ul\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon26 \snext42 Bullet 3 Underline;}{\*\cs43 \additive \b\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\langnp1033\langfenp1033 \sbasedon10 \slocked 
  280. Heading 2 Char;}{\s44\ql \li720\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin720\itap0 \fs19\ul\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon16 \snext44 Body 2 Underline;}{
  281. \s45\ql \li1077\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin1077\itap0 \fs19\ul\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon17 \snext45 Body 3 Underline;}{
  282. \s46\ql \li0\ri0\sb120\sa120\sl480\slmult1\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext46 Body Text 2;}{
  283. \s47\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar\jclisttab\tx1437\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin1435\itap0 \i\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon27 \snext47 Bullet 4 Italics;}{\*
  284. \cs48 \additive \f36\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \slocked Body 2 Char;}{\*\cs49 \additive \f36\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \slocked Body 3 Char;}{\*\cs50 \additive 
  285. \f36\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \slocked Body 4 Char;}{\*\cs51 \additive \f36\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 \slocked Body 1 Char;}{\s52\ql \li0\ri0\sb120\sa120\widctlpar\brdrt\brdrs\brdrw10\brsp20 
  286. \aspalpha\aspnum\faauto\adjustright\rin0\lin0\rtlgutter\itap0 \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon35 \snext52 Preamble Border Above;}{
  287. \s53\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext53 \ssemihidden footnote text;}{\*\cs54 \additive \super 
  288. \sbasedon10 \ssemihidden footnote reference;}{\s55\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext55 \ssemihidden 
  289. endnote text;}{\*\cs56 \additive \super \sbasedon10 \ssemihidden endnote reference;}{\s57\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  290. \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext57 \ssemihidden annotation text;}{\*\cs58 \additive \fs16 \sbasedon10 \ssemihidden annotation reference;}{\s59\ql \li0\ri0\sa160\sl-240\slmult0
  291. \widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext59 Char;}{\s60\ql \li0\ri0\sa160\sl-240\slmult0
  292. \widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext60 Char Char Char Char;}{\*\cs61 \additive \ul\cf2 \sbasedon10 Hyperlink;}{
  293. \s62\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs16\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext62 \ssemihidden Balloon Text;}{\*\cs63 \additive 
  294. \b\f38\lang1033\langfe1033\langnp1033\langfenp1033 \sbasedon10 Heading 2 Char1;}{\*\cs64 \additive \sbasedon10 page number;}{\s65\ql \li0\ri0\sa160\sl-240\slmult0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  295. \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \sbasedon0 \snext65 Char Char Char Char1;}{\s66\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  296. \b\fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \snext0 \styrsid8999754 Body 0 Bold;}{\s67\ql \li0\ri0\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 
  297. \fs19\lang1033\langfe1033\loch\f36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 \snext0 \styrsid8999754 Body 0;}}{\*\latentstyles\lsdstimax156\lsdlockeddef0}{\*\listtable{\list\listtemplateid176468498\listhybrid{\listlevel\levelnfc23\levelnfcn23
  298. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid692200086\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s32\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
  299. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  300. \levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  301. \leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691
  302. \'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}
  303. \f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040
  304. \jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel
  305. \levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid196815738}
  306. {\list\listtemplateid-1793664660{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\b\i0\fbias0 \s38\fi-360\li360\jclisttab\tx360\lin360 }{\listlevel\levelnfc0
  307. \levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\b\i0\fbias0 \s39\fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0
  308. \levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02);}{\levelnumbers\'01;}\fbias0 \fi-360\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  309. \'03(\'03);}{\levelnumbers\'02;}\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'04);}{\levelnumbers\'02;}\fbias0 \fi-360\li1800
  310. \jclisttab\tx1800\lin1800 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'05);}{\levelnumbers\'02;}\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0
  311. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\fbias0 \fi-360\li2520\jclisttab\tx2520\lin2520 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  312. \levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'08.;}{\levelnumbers\'01;}
  313. \fbias0 \fi-360\li3240\jclisttab\tx3240\lin3240 }{\listname ;}\listid394402059}{\list\listtemplateid1928476992{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}
  314. \b\i0\f38\fs20\fbias0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-363\li720
  315. \jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\b\i0\f36\fs20\fbias0 \s40\fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel
  316. \levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0
  317. \leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
  318. \levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  319. {\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}
  320. \b0\i0\f38\fs20\fbias0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-358\li3221
  321. \jclisttab\tx3223\lin3221 }{\listname ;}\listid398796681}{\list\listtemplateid789093748\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid-317712510
  322. \'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s25\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}
  323. \f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160
  324. \jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }
  325. {\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23
  326. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
  327. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1
  328. \levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  329. \leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid477573462}{\list\listtemplateid1948578256{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
  330. \levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  331. \'02\'01.;}{\levelnumbers\'01;}\b\i0\fs20\fbias0 \fi-360\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 
  332. \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-358\li1435
  333. \jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-357\li1792\jclisttab\tx2155\lin1792 }
  334. {\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0
  335. \leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1
  336. \levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  337. \'02A.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid630479929}{\list\listtemplateid67698717{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  338. {\leveltext\'02\'00);}{\levelnumbers\'01;}\fi-360\li360\jclisttab\tx360\lin360 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01);}{\levelnumbers\'01;}\fi-360\li720
  339. \jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02);}{\levelnumbers\'01;}\fi-360\li1080\jclisttab\tx1080\lin1080 }{\listlevel\levelnfc0\levelnfcn0\leveljc0
  340. \leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'03);}{\levelnumbers\'02;}\fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  341. {\leveltext\'03(\'04);}{\levelnumbers\'02;}\fi-360\li1800\jclisttab\tx1800\lin1800 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'03(\'05);}{\levelnumbers\'02;}\fi-360\li2160
  342. \jclisttab\tx2160\lin2160 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\fi-360\li2520\jclisttab\tx2520\lin2520 }{\listlevel\levelnfc4\levelnfcn4\leveljc0
  343. \leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'07.;}{\levelnumbers\'01;}\fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  344. {\leveltext\'02\'08.;}{\levelnumbers\'01;}\fi-360\li3240\jclisttab\tx3240\lin3240 }{\listname ;}\listid700712945}{\list\listtemplateid680715664{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  345. {\leveltext\'02\'00.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \s1\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}
  346. \b\i0\f38\fs20\fbias0 \s2\fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\b\i0\f36\fs20\fbias0 \s3\fi-357\li1077
  347. \jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \s4\fi-358\li1435\jclisttab\tx1437\lin1435 }
  348. {\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \s5\fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0
  349. \levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \s6\fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0
  350. \levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \s7\fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  351. {\leveltext\'02i.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \s8\fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}
  352. \b0\i0\f38\fs20\fbias0 \s9\fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid752163927}{\list\listtemplateid2088029282{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  353. \'02\'00.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'01.;}{\levelnumbers\'01;}
  354. \b\i0\f38\fs20\fbias0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}\b\i0\f36\fs20\fbias0 \fi-357\li1077
  355. \jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-358\li1435\jclisttab\tx1437\lin1435 }
  356. {\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-357\li1792\jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0
  357. \levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0
  358. \levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  359. {\leveltext\'02i.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02A.;}{\levelnumbers;}
  360. \b0\i0\f38\fs20\fbias0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid800729109}{\list\listtemplateid-296591990\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  361. \leveltemplateid-48305026\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s31\fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691
  362. \'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}
  363. \f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880
  364. \jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel
  365. \levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23
  366. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
  367. \levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  368. {\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid810947713}{\list\listtemplateid1567531878{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0
  369. \levelstartat1\levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  370. \'02\'01.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}
  371. \b0\i0\f38\fs20\fbias0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 
  372. \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-357\li1792
  373. \jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel
  374. \levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0
  375. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  376. \levelindent0{\leveltext\'02A.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid826823576}{\list\listtemplateid2088029282{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1
  377. \levelspace0\levelindent0{\leveltext\'02\'00.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  378. \'02\'01.;}{\levelnumbers\'01;}\b\i0\f38\fs20\fbias0 \fi-363\li720\jclisttab\tx720\lin720 }{\listlevel\levelnfc2\levelnfcn2\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'02.;}{\levelnumbers\'01;}
  379. \b\i0\f36\fs20\fbias0 \fi-357\li1077\jclisttab\tx1440\lin1077 }{\listlevel\levelnfc3\levelnfcn3\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'03.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 
  380. \fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel\levelnfc1\levelnfcn1\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'04.;}{\levelnumbers\'01;}\b0\i0\strike0\f38\fs20\ulnone\fbias0 \fi-357\li1792
  381. \jclisttab\tx2155\lin1792 }{\listlevel\levelnfc0\levelnfcn0\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'05.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel
  382. \levelnfc4\levelnfcn4\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02\'06.;}{\levelnumbers\'01;}\b0\i0\f38\fs20\fbias0 \fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0
  383. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\'02i.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-357\li2863\jclisttab\tx2866\lin2863 }{\listlevel\levelnfc255\levelnfcn255\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  384. \levelindent0{\leveltext\'02A.;}{\levelnumbers;}\b0\i0\f38\fs20\fbias0 \fi-358\li3221\jclisttab\tx3223\lin3221 }{\listname ;}\listid974869818}{\list\listtemplateid-1813845996\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
  385. \levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid2033377338\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s30\fi-357\li2506\jclisttab\tx2509\lin2506 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  386. \levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  387. \leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689
  388. \'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}
  389. \f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320
  390. \jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }
  391. {\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23
  392. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1219436735}{\list\listtemplateid-41362566
  393. \listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid-1175557160\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s27\fi-358\li1435\jclisttab\tx1437\lin1435 }{\listlevel
  394. \levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0
  395. \leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
  396. \levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  397. \levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  398. \leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689
  399. \'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}
  400. \f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480
  401. \jclisttab\tx6480\lin6480 }{\listname ;}\listid1559511898}{\list\listtemplateid-743794326\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid1229593488
  402. \'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s26\fi-357\li1077\jclisttab\tx1080\lin1077 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}
  403. \f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160
  404. \jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }
  405. {\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23
  406. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
  407. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1
  408. \levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  409. \leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1567649130}{\list\listtemplateid1363474438\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
  410. \levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid1637229796\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s28\fi-357\li1792\jclisttab\tx1795\lin1792 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1
  411. \levelspace1077\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0
  412. {\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext
  413. \leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid67698691
  414. \'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}
  415. \f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040
  416. \jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }
  417. {\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace1077\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname 
  418. ;}\listid1848404271}{\list\listtemplateid-1802592190\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid961321180\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s29
  419. \fi-357\li2149\jclisttab\tx2152\lin2149 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 
  420. }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23
  421. \levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880\jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0
  422. \levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0
  423. \levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  424. \leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691
  425. \'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}
  426. \f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid1877695764}{\list\listtemplateid1186249844\listhybrid{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext
  427. \leveltemplateid1182702444\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \s24\fi-357\li357\jclisttab\tx360\lin357 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691
  428. \'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li1440\jclisttab\tx1440\lin1440 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}
  429. \f10\fbias0 \fi-360\li2160\jclisttab\tx2160\lin2160 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li2880
  430. \jclisttab\tx2880\lin2880 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li3600\jclisttab\tx3600\lin3600 }{\listlevel
  431. \levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li4320\jclisttab\tx4320\lin4320 }{\listlevel\levelnfc23\levelnfcn23
  432. \leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698689\'01\u-3913 ?;}{\levelnumbers;}\f3\fbias0 \fi-360\li5040\jclisttab\tx5040\lin5040 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0
  433. \levelstartat1\levelspace0\levelindent0{\leveltext\leveltemplateid67698691\'01o;}{\levelnumbers;}\f2\fbias0 \fi-360\li5760\jclisttab\tx5760\lin5760 }{\listlevel\levelnfc23\levelnfcn23\leveljc0\leveljcn0\levelfollow0\levelstartat1\levelspace0\levelindent0
  434. {\leveltext\leveltemplateid67698693\'01\u-3929 ?;}{\levelnumbers;}\f10\fbias0 \fi-360\li6480\jclisttab\tx6480\lin6480 }{\listname ;}\listid2054619191}}{\*\listoverridetable{\listoverride\listid2054619191\listoverridecount0\ls1}
  435. {\listoverride\listid477573462\listoverridecount0\ls2}{\listoverride\listid1567649130\listoverridecount0\ls3}{\listoverride\listid1559511898\listoverridecount0\ls4}{\listoverride\listid1848404271\listoverridecount0\ls5}{\listoverride\listid1877695764
  436. \listoverridecount0\ls6}{\listoverride\listid1219436735\listoverridecount0\ls7}{\listoverride\listid810947713\listoverridecount0\ls8}{\listoverride\listid196815738\listoverridecount0\ls9}{\listoverride\listid398796681\listoverridecount0\ls10}
  437. {\listoverride\listid394402059\listoverridecount0\ls11}{\listoverride\listid700712945\listoverridecount0\ls12}{\listoverride\listid826823576\listoverridecount0\ls13}{\listoverride\listid630479929\listoverridecount0\ls14}{\listoverride\listid800729109
  438. \listoverridecount0\ls15}{\listoverride\listid974869818\listoverridecount0\ls16}{\listoverride\listid752163927\listoverridecount0\ls17}}{\*\rsidtbl \rsid17701\rsid480810\rsid555183\rsid1076966\rsid1845488\rsid2765957\rsid3043007\rsid3370445\rsid3416253
  439. \rsid3739474\rsid4022155\rsid4489125\rsid5459775\rsid6184270\rsid6498245\rsid6758513\rsid7022616\rsid7226971\rsid7290457\rsid7433926\rsid7619174\rsid7692510\rsid7878867\rsid8324055\rsid8325040\rsid8812012\rsid8920496\rsid8999754\rsid9857610\rsid9964378
  440. \rsid10813938\rsid10911017\rsid11347136\rsid12000701\rsid13908819\rsid14168694\rsid14498483\rsid14705568\rsid14897950\rsid14943232\rsid15493712\rsid15872081\rsid15925451\rsid16395859\rsid16450365\rsid16661796\rsid16712132}{\*\generator Microsoft Word 11.
  441. 0.6502;}{\info{\title MICROSOFT [PRE-RELEASE ][EVALUATION ]SOFTWARE LICENSE TERMS}{\author Sabrina Powers (LCA)}{\operator Lee Morgan}{\creatim\yr2005\mo6\dy3\hr15\min39}{\revtim\yr2005\mo6\dy16\hr14\min42}{\printim\yr2005\mo5\dy17\hr16\min58}{\version4}
  442. {\edmins5}{\nofpages3}{\nofwords1074}{\nofchars6122}{\*\company Microsoft Corporation}{\nofcharsws7182}{\vern24579}}{\*\userprops {\propname db_build_version}\proptype30{\staticval 2.6}{\propname db_charger_document_reference}\proptype3{\staticval 251}
  443. {\propname db_charger_client_name}\proptype30{\staticval tbc}{\propname db_charger_matter_number}\proptype30{\staticval tbc}{\propname autosave}\proptype30{\staticval false}{\propname owner}\proptype30{\staticval REDMOND\'5cdavidken}{\propname db_master_r
  444. eference}\proptype30{\staticval USETERMS_OTHERSUPER_ENGLISH}{\propname db_master_version}\proptype30{\staticval 20050529}{\propname db_master_clock}\proptype3{\staticval 59}{\propname db_master_name}\proptype30{\staticval List of Beta, Evaluation or Stand
  445. alone Software License Terms Languages}{\propname db_master_description}\proptype30{\staticval  }{\propname db_base_url}\proptype30{\staticval http://usetermassembly/dealbuilder_live/DealBuilderNET/dealbuilder.aspx}{\propname ProductVersion}\proptype30
  446. {\staticval 0}{\propname MScom}\proptype11{\staticval 1}{\propname PublishDate}\proptype30{\staticval 2005/06/26}{\propname RetirementDate}\proptype30{\staticval 2007/06/26}{\propname Language}\proptype30{\staticval English\'3bFrench\'3bGerman\'3bJapanes
  447. e}{\propname CanadaAvail}\proptype11{\staticval 1}{\propname CanadaFrench}\proptype11{\staticval 1}{\propname FileFormat}\proptype11{\staticval 1}{\propname MandatoryActivation}\proptype11{\staticval 0}{\propname SoftwareType}\proptype30{\staticval Free, 
  448. Standalone Software}{\propname ProductName}\proptype30{\staticval Baseline Security Analyzer Tool, Version 2.0}{\propname NumberOfCopies}\proptype30{\staticval Any number of copies}{\propname StandaloneUseRight}\proptype30{\staticval On the user's device(
  449. s) that run a particular software program}{\propname RequiredSoftwareName}\proptype30{\staticval Windows 2000, Windows XP, or Windows Server 2003}{\propname MediaElementsTemplates}\proptype11{\staticval 0}{\propname DistributableCode}\proptype11
  450. {\staticval 0}{\propname Transfer}\proptype30{\staticval No transfer permitted}{\propname OtherMicrosoftPrograms}\proptype11{\staticval 1}{\propname OtherMicrosoftProgramsTerms}\proptype30{\staticval The separate license terms associated with the other Mi
  451. crosoft programs}{\propname PrereleaseCode}\proptype11{\staticval 0}{\propname ThirdPartyPrograms}\proptype11{\staticval 0}{\propname Benchmarking}\proptype11{\staticval 1}{\propname MPEG}\proptype11{\staticval 0}{\propname InternetBasedServices}
  452. \proptype11{\staticval 1}{\propname InternetBasedServicesTerms}\proptype11{\staticval 1}{\propname InternetBasedServicesInteractive}\proptype11{\staticval 0}{\propname InternetBasedServicesFeatureInf}\proptype30{\staticval Link to a privacy statement}
  453. {\propname InternetBasedServicesLink}\proptype30{\staticval http://update.microsoft.com/microsoftupdate/v6/privacy.aspx?ln=en-us}{\propname InternetBasedServicesFeaturesDesc}\proptype30{\staticval Windows Update Feature\'3bWeb Content Features (e.g., clip
  454.  art, online assistance)}{\propname db_commit}\proptype30{\staticval ProductVersion}}\margl1440\margr1440 \widowctrl\ftnbj\aenddoc\noxlattoyen\expshrtn\noultrlspc\dntblnsbdb\nospaceforul\hyphcaps0\formshade\horzdoc\dgmargin\dghspace180\dgvspace180
  455. \dghorigin1440\dgvorigin1440\dghshow1\dgvshow1\jexpand\viewkind1\viewscale100\pgbrdrhead\pgbrdrfoot\splytwnine\ftnlytwnine\htmautsp\nolnhtadjtbl\useltbaln\alntblind\lytcalctblwd\lyttblrtgr\lnbrkrule\rsidroot10813938\viewbksp1 \fet0{\*\ftnsep \pard\plain 
  456. \ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid14498483 \chftnsep 
  457. \par }}{\*\ftnsepc \pard\plain \ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid14498483 \chftnsepc 
  458. \par }}{\*\aftnsep \pard\plain \ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid14498483 \chftnsep 
  459. \par }}{\*\aftnsepc \pard\plain \ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid14498483 \chftnsepc 
  460. \par }}\sectd \psz1\linex0\endnhere\sectlinegrid360\sectdefaultcl\sftnbj {\*\pnseclvl1\pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}
  461. {\*\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 
  462. {\pntxtb (}{\pntxta )}}{\*\pnseclvl8\pnlcltr\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}{\*\pnseclvl9\pnlcrm\pnstart1\pnindent720\pnhang {\pntxtb (}{\pntxta )}}\pard\plain 
  463. \s33\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs28\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  464. MICROSOFT SOFTWARE LICENSE TERMS
  465. \par }\pard\plain \s34\ql \li0\ri0\sb120\sa120\widctlpar\brdrb\brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs28\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 
  466. \hich\af36\dbch\af11\loch\f36 MICROSOFT }{\insrsid1076966\charrsid7022616 \hich\af36\dbch\af11\loch\f36 BASELINE SECURITY ANALYZER TOOL, VERSION 2.0}{\insrsid9964378\charrsid7022616 
  467. \par }\pard\plain \s35\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\b0\insrsid9964378\charrsid7022616 
  468. \hich\af36\dbch\af11\loch\f36 These license ter\hich\af36\dbch\af11\loch\f36 
  469. ms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you.  Please read them.  They apply to the software named above, which includes the media on which you received it, if any.  The terms also apply to 
  470. \hich\af36\dbch\af11\loch\f36 a\hich\af36\dbch\af11\loch\f36 ny Microsoft
  471. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard\plain \s25\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  472. \jclisttab\tx720\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 updates,
  473. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af36\dbch\af11\loch\f36 supplements,
  474. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af36\dbch\af11\loch\f36 Internet-based services, and 
  475. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af36\dbch\af11\loch\f36 support services
  476. \par }\pard\plain \s35\ql \li0\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin0\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\b0\insrsid9964378\charrsid7022616 
  477. \hich\af36\dbch\af11\loch\f36 for this software, unless other terms accompany those items.  If so, those terms apply.
  478. \par }{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 By using the software, you accept these terms.  If you do not accept them, do \hich\af36\dbch\af11\loch\f36 not use the software.
  479. \par \hich\af36\dbch\af11\loch\f36 As described below, using some features also operates as your consent to the transmission of certain standard computer information for Internet-based services.
  480. \par }\pard\plain \s52\ql \li0\ri0\sb120\sa120\widctlpar\brdrt\brdrs\brdrw10\brsp20 \aspalpha\aspnum\faauto\adjustright\rin0\lin0\rtlgutter\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {
  481. \insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 If you comply with these license terms, you have the rights below.
  482. \par {\listtext\pard\plain\s1 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 1.\tab}}\pard\plain \s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  483. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 INST
  484. \hich\af36\dbch\af11\loch\f36 ALLATION AND USE RIGHTS.  
  485. \par {\listtext\pard\plain\s2 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 a.\tab}}\pard\plain \s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  486. \jclisttab\tx720\aspalpha\aspnum\faauto\ls17\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  487. Installation and Use.}{\cs48\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   You may install and use any number of copies of }{\cs48\b0\insrsid555183\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  488. the software on your devices running validly licensed copies of}{\cs48\b0\insrsid6184270\charrsid7022616 \hich\af36\dbch\af11\loch\f36  }{\cs48\b0\insrsid1076966\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  489. Windows 2000, Windows XP, or Windows Server 2003}{\cs48\b0\insrsid555183\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .}{\cs48\insrsid9964378\charrsid7022616 
  490. \par {\listtext\pard\plain\s2 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 b.\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Included Microsoft Programs.}{
  491. \cs48\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   The soft\hich\af36\dbch\af11\loch\f36 ware contains other Microsoft programs.  The license terms with those programs apply to your use of them.}{\insrsid9964378\charrsid7022616 
  492.  
  493. \par {\listtext\pard\plain\s1 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 2.\tab}}\pard\plain \s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  494. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  495. INTERNET-BASED SERVICES.  }{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Microsoft provides Internet-based services with the software.  It may change or cancel them at any time.}{\insrsid9964378\charrsid7022616 
  496. \par {\listtext\pard\plain\s2 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 a.\tab}}\pard\plain \s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  497. \jclisttab\tx720\aspalpha\aspnum\faauto\ls17\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  498. Consent for I\hich\af36\dbch\af11\loch\f36 nternet-Based Services.}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   }{\b0\insrsid7619174\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  499. The software features described below connect to Microsoft or service provider computer systems over the Internet.  In some cases, you will not receive a separate notice when they connect.  You may switch off these features or not 
  500. \hich\af36\dbch\af11\loch\f36 use them.  For more information about these features, see }{\b0\insrsid1076966\charrsid7022616 \hich\af36\dbch\af11\loch\f36 http://update.microsoft.com/microsoftupdate/v6/privacy.aspx?ln=en-us}{
  501. \b0\insrsid7619174\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .  }{\insrsid7619174\charrsid7022616 \hich\af36\dbch\af11\loch\f36 By using}{\b0\insrsid7619174\charrsid7022616 \hich\af36\dbch\af11\loch\f36  }{\insrsid7619174\charrsid7022616 
  502. \hich\af36\dbch\af11\loch\f36 these features, you consent to the transmission of this information.}{\b0\insrsid7619174\charrsid7022616 \hich\af36\dbch\af11\loch\f36   Microsoft does not use the information\hich\af36\dbch\af11\loch\f36 
  503.  to identify or contact you.}{\insrsid9964378\charrsid7022616 
  504. \par {\listtext\pard\plain\s3 \b\f36\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 i.\tab}}\pard\plain \s3\ql \fi-357\li1077\ri0\sb120\sa120\widctlpar
  505. \jclisttab\tx1077\jclisttab\tx1440\aspalpha\aspnum\faauto\ls17\ilvl2\outlinelevel2\adjustright\rin0\lin1077\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\b\insrsid9964378\charrsid7022616 
  506. \hich\af36\dbch\af11\loch\f36 Computer Information.}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   }{\insrsid16661796\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  507. The following features use Internet protocols, which send to the appropriate systems computer information, such as your Internet protocol address, the type of operating system, browser and name and ver\hich\af36\dbch\af11\loch\f36 
  508. sion of the software you are using, and the language code of the device where you installed the software.  Microsoft uses this information to make the Internet-based services available to you.}{\insrsid9964378\charrsid7022616 
  509. \par {\listtext\pard\plain\s41 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard\plain \s41\ql \fi-358\li1435\ri0\sb120\sa120\widctlpar
  510. \jclisttab\tx1437\aspalpha\aspnum\faauto\ls4\adjustright\rin0\lin1435\itap0 \fs19\ul\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Windows Update Feature}{
  511. \ulnone\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .  You may connect new hardware to the \hich\af36\dbch\af11\loch\f36 
  512. device where you installed the software.  Your device may not have the drivers needed to communicate with that hardware.  If so, the update feature of the software can obtain the correct driver from Microsoft and install it on your device.  You can switch
  513. \hich\af36\dbch\af11\loch\f36  \hich\af36\dbch\af11\loch\f36 off this update feature.}{\insrsid9964378\charrsid7022616 
  514. \par {\listtext\pard\plain\s41 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Web Content Features}{
  515. \ulnone\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  516. .  Features in the software can retrieve related content from Microsoft and provide it to you.  To provide the content, these features send to Microsoft the type of operating system, name and version of the so\hich\af36\dbch\af11\loch\f36 
  517. ftware you are using, type of browser and language code of the device where you installed the software.  Examples of these features are clip art, templates, online training, online assistance and Appshelp.  You may choose not to use these web content feat
  518. \hich\af36\dbch\af11\loch\f36 u\hich\af36\dbch\af11\loch\f36 res.}{\insrsid9964378\charrsid7022616 
  519. \par {\listtext\pard\plain\s1 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 3.\tab}}\pard\plain \s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  520. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  521. Scope of License.}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  522.   The software is licensed, not sold. This agreement only gives you some rights to use the software.  Microsoft reserves all other rights.  Unless applicable law gives you more rights despite this limitation, you may use the softwa
  523. \hich\af36\dbch\af11\loch\f36 re only as expressly permitted in this agreement.  In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways.  For more information, see }{
  524. \cs61\b0\insrsid9964378\charrsid4489125 \hich\af36\dbch\af11\loch\f36 www.microsoft.com/licensing/userights}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .  You may not}{\insrsid9964378\charrsid7022616 
  525. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard\plain \s25\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  526. \jclisttab\tx720\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  527. disclose the results of any benchmark tests of the software to any third party without Microsoft\hich\f36 \rquote \loch\f36 s prior written approval}{\insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  528. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 work around any technical limitations in the software}{
  529. \insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  530. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 reverse engine\hich\af36\dbch\af11\loch\f36 
  531. er, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation}{\insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  532. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  533. make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitati\hich\af36\dbch\af11\loch\f36 on}{\insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  534. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 publish the software for others to copy}{
  535. \insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  536. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 rent, lease or lend the software}{
  537. \insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ;}{\insrsid9964378\charrsid7022616 
  538. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  539. transfer the software or this agreement to any third party}{\insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 ; or}{\insrsid9964378\charrsid7022616 
  540. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  541. use the software for commercial software hosting services}{\insrsid8920496\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .}{\insrsid9964378\charrsid7022616 
  542. \par {\listtext\pard\plain\s1 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 4.\tab}}\pard\plain \s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  543. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 BACKUP COPY.}{
  544. \b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   You may make one backup copy o\hich\af36\dbch\af11\loch\f36 f the software.  You may use it only to reinstall the software.}{\insrsid9964378\charrsid7022616 
  545. \par {\listtext\pard\plain\s1 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 5.\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 DOCUMENTATION.}{\b0\insrsid9964378\charrsid7022616 
  546. \hich\af36\dbch\af11\loch\f36   Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.}{\insrsid9964378\charrsid7022616 
  547. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 6.\tab}}{\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Export Restrictions}{
  548. \insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 .}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   The \hich\af36\dbch\af11\loch\f36 
  549. software is subject to United States export laws and regulations.  You must comply with all domestic and international export laws and regulations that apply to the software.  These laws include restrictions on destinations, end users and end use.  For ad
  550. \hich\af36\dbch\af11\loch\f36 d\hich\af36\dbch\af11\loch\f36 itional information, see }{\cs61\b0\insrsid9964378\charrsid4489125 \hich\af36\dbch\af11\loch\f36 www.microsoft.com/exporting}{\cs61\b0\ul\insrsid9964378\charrsid7022616 
  551. \hich\af36\dbch\af11\loch\f36 .}{\insrsid9964378\charrsid7022616 
  552. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 7.\tab}}{\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Entire Agreement.}{
  553. \b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   This agreement, and the terms for supplements, updates, Internet-based services and support services that \hich\af36\dbch\af11\loch\f36 
  554. you use, are the entire agreement for the software and support services.
  555. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 8.\tab}}\pard 
  556. \s1\ql \fi-360\li360\ri0\sb120\sa120\keepn\widctlpar\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin360\itap0 {\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Applicable Law}{\insrsid9964378\charrsid7022616 
  557. \hich\af36\dbch\af11\loch\f36 .
  558. \par {\listtext\pard\plain\s2 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 a.\tab}}\pard\plain \s2\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  559. \jclisttab\tx720\aspalpha\aspnum\faauto\ls17\ilvl1\outlinelevel1\adjustright\rin0\lin720\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  560. United States.}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   If you acquired the software in the United States, Washington state law governs the interpretation of this agre\hich\af36\dbch\af11\loch\f36 
  561. ement and applies to claims for breach of it, regardless of conflict of laws principles.  The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.}{
  562. \insrsid9964378\charrsid7022616 
  563. \par {\listtext\pard\plain\s2 \b\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 b.\tab}}{\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Outside \hich\af36\dbch\af11\loch\f36 
  564. the United States.}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   If you acquired the software in any other country, the laws of that country apply.}{\insrsid9964378\charrsid7022616 
  565. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 9.\tab}}\pard\plain \s1\ql \fi-357\li357\ri0\sb120\sa120\widctlpar
  566. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin357\itap0 \b\fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  567. Legal Effect.}{\b0\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36   This agreement describes certain legal rights.  You may have other rights under the laws of your country.  You may also have rights wit\hich\af36\dbch\af11\loch\f36 
  568. h respect to the party from whom you acquired the software.  This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.}{\caps\insrsid9964378\charrsid7022616 
  569. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 10.\tab}}{\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Disclaimer of Warranty.}{
  570. \insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 \hich\f36    The software is licensed \'93\loch\f36 \hich\f36 as-is.\'94\loch\f36   Y\hich\af36\dbch\af11\loch\f36 
  571. ou bear the risk of using it.  Microsoft gives no express warranties, guarantees or conditions.  You may have additional consumer rights under your local laws which this agreement cannot change.  To the extent permitted under your local laws, Microsoft ex
  572. \hich\af36\dbch\af11\loch\f36 c\hich\af36\dbch\af11\loch\f36 ludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement.}{\caps\insrsid9964378\charrsid7022616 
  573. \par {\listtext\pard\plain\s1 \b\caps\f38\fs20\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \hich\af38\dbch\af11\loch\f38 11.\tab}}\pard \s1\ql \fi-360\li360\ri0\sb120\sa120\widctlpar
  574. \jclisttab\tx360\aspalpha\aspnum\faauto\ls17\outlinelevel0\adjustright\rin0\lin360\itap0\pararsid8999754 {\caps\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 Limitation on and Exclusion of Remedies and Damages.   }{
  575. \insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00.  You c\hich\af36\dbch\af11\loch\f36 
  576. annot recover any other damages, including consequential, lost profits, special, indirect or incidental damages.}{\caps\insrsid9964378\charrsid7022616 
  577. \par }\pard\plain \s15\ql \li357\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin357\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 
  578. \hich\af36\dbch\af11\loch\f36 This limitation applies to
  579. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}}\pard\plain \s25\ql \fi-363\li720\ri0\sb120\sa120\widctlpar
  580. \jclisttab\tx720\aspalpha\aspnum\faauto\ls2\adjustright\rin0\lin720\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  581. anything related to the software, services, content (including code) on third party Internet sites, or third party\hich\af36\dbch\af11\loch\f36  programs; and
  582. \par {\listtext\pard\plain\s25 \f3\fs19\lang1033\langfe1033\langfenp1033\insrsid9964378\charrsid7022616 \loch\af3\dbch\af11\hich\f3 \'b7\tab}\hich\af36\dbch\af11\loch\f36 
  583. claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
  584. \par }\pard\plain \ql \li360\ri0\sb120\sa120\widctlpar\aspalpha\aspnum\faauto\adjustright\rin0\lin360\itap0 \fs19\lang1033\langfe1033\loch\af36\hich\af36\dbch\af11\cgrid\langnp1033\langfenp1033 {\insrsid9964378\charrsid7022616 \hich\af36\dbch\af11\loch\f36 
  585. It also applies even if Microsoft knew or should have known about the possibi\hich\af36\dbch\af11\loch\f36 
  586. lity of the damages.  The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.}{\insrsid9964378\charrsid7022616 
  587. \par }}ScrollableText[TITLE]License Agreement[TEXT]&Print[PostVerifyRequirementsRun]XMLMissingTextNOT XMLParserMissing[TEXT]MSXML Parser 3.0 or greater is not installed. Click on the button below to obtain the latest available version of MSXML.XMLOKText[TEXT]MSXML Parser 3.0 or greater is installed.XMLButtonCompBadText[TEXT]One or more required components are missing. Please install the missing components before continue.[SUBTITLE]Install components required to run[TITLE]Verify System Requirements[TEXT]Download MS&XML ParserConfirmInstallOutOfDiskSpace = 1 OR OverwriteDetected = 1OutOfDiskSpace <> 1 AND OverwriteDetected <> 1[SUBTITLE]Select a folder where the application will be installed.Text19[TEXT]Setup will install the files for [MyProductName] in the following folder. To install into a different folder, click the Browse button, and select another folder. You can choose not to install [MyProductName] by clicking Cancel to exit setup.Text42{&MSSansSerif8}[INSTALLDIR]InstallDirOutOfDiskSpace = 1NotEnoughSpaceNoticeOutOfDiskSpace <> 1[BOLD]There is not enough disk space in the selected folder or on the system to install [MyProductName]. Setup requires 10Mb on your hard drive to install. Please choose another installation location or free enough space before continuing.OverwriteDetected = 1OverwriteInstallDetectedOverwriteDetected <> 1[BOLD][MyProductName] Setup detected another installation on this folder and cannot continue. Please choose another folder to continue.Bitmap23[TEXT]Destination FolderGroupBoxLine7[TITLE]Destination Folder[_BrowseProperty]BrowseButtonBrowse[TEXT]B&rowseLine17NOT InstallPathTooBigSetTargetPathOverwriteDetectedNOT (InstallPathTooBig OR OverwriteDetected)PathEditTailResetComboTextCombo[TEXT]&Look in:DirectoryListUpUpDirectoryComboDirectoryListNewNewFolderUp one level|upCreate new folder|folderTailTextDirectoryList[TITLE]Change Current Destination Folder[SUBTITLE]Browse to the destination folder[TEXT]&Folder name:Install[Operation][TEXT]&Install[TEXT]Click Install to start application installation. Press Back to review your selections.NOT (UPGMBSA OR UPGMBSA0 OR UPGMBSA1)UpgradeNotice[BOLD]WARNING: You have an older version of [MyProductName] installed. Setup will create a new installation, however you may remove the older version using Add or Remove Programs. Before removing the old version, please review article 895660 in the Microsoft Knowledge Base.[TITLE]Start Installation[SUBTITLE]Click Install to start application installationMModeType = "Repair"ocmusReinstallModeMaintenanceDialogRepairDialogMModeType = "Remove"UninstallDialogMaintGroup[TITLE]Application Maintenance[SUBTITLE]Select the maintenance operation to perform.Line39Bitmap25Line8repairuninstALL[TEXT]&Uninstall[TEXT]Current Installation Folder[TEXT][INSTALLDIR]Text43[TEXT]This will remove [MyProductName] from your machine. Are you sure you want to continue?Texta[TEXT]Click the Uninstall button to remove the application. Click the Back button for more options. Click the Cancel button to exit the uninstall process.Text2a[TITLE]Uninstall Product[SUBTITLE]Click the Uninstall button to remove the applicationReinstall[TEXT]&Repair[TEXT]This will repair [MyProductName] on your machine. Are you sure you want to continue?[TEXT]Click the Repair button to repair the application. Click the Back button for more options. Click the Cancel button to exit the repair process.[TITLE]Repair Product[SUBTITLE]Click the Repair button to repair the application[MModeType]UpgradeDialog[UpgradeStarted][TEXT]&Upgrade[TEXT]This will upgrade [MyProductName] on your machine. Are you sure you want to continue?[TEXT]Upgrade FromUpgradeFromBox[TEXT][UpgradeFrom]UpgradeFromText[TEXT]New VersionUpgradeToBox[BOLD][UpgradeTo]UpgradeToTextInstallDirBoxInstallDirText[TEXT]Click the Upgrade button to upgrade the application. Click the Cancel button to exit the upgrade process.[TEXT]WARNING: Interrupting the upgrade once started may corrupt the installation or force the product to be uninstalled.UpgradeWarn[TITLE]Upgrade Product[SUBTITLE]Click the Upgrade button to upgrade the applicationmbsaExitDialog[TEXT][MyProductName] Setup has completed successfully.[TEXT][MyProductName] has been removed from your computer.[TEXT][MyProductName] Setup has successfully repaired your installation.MModeType <> "Upgrade" OR NOT Installed[TEXT][MyProductName] Setup has successfully updated your installation.TextStyleFaceNameSizeColorStyleBitsName of the style. The primary key of this table. This name is embedded in the texts to indicate a style change.A long integer indicating the color of the string in the RGB format (Red, Green, Blue each 0-255, RGB = R + 256*G + 256^2*B).A string indicating the name of the font used. Required. The string must be at most 31 characters long.The size of the font used. This size is given in our units (1/12 of the system font height). Assuming that the system font is set to 12 point size, this is equivalent to the point size.A combination of style bits.ArialArial14Arial8MS Sans SerifMSSansSerif8BlackMSSansSerif8MSSansSerif8boldRadioButtonThe vertical coordinate of the upper left corner of the bounding rectangle of the radio button.The visible title to be assigned to the radio button.A named property to be tied to this radio button. All the buttons tied to the same property become part of the same group.The height of the button.The width of the button.The horizontal coordinate of the upper left corner of the bounding rectangle of the radio button.The value string associated with this button. Selecting the button will set the associated property to this value.The help strings used with the button. The text is optional.[TEXT]I &do not accept the license agreement[TEXT]I &accept the license agreement[TEXT]&Reinstall or Repair
  588. Restore [MyProductName] to its original state.[TEXT]&Uninstall
  589. Remove [MyProductName] from this computer.ErrorInteger error number, obtained from header file IError(...) macros.Error formatting template, obtained from user ed. or localizers.Template{{Fatal error: }}InstallExecuteSequenceName of action to invoke, either in the engine or the handler DLL.Optional expression which skips the action if evaluates to expFalse.If the expression syntax is invalid, the engine will terminate, returning iesBadActionData.Number that determines the sort order in which the actions are to be executed.  Leave blank to suppress action.InstallUISequenceAdminExecuteSequenceAdminUISequenceAdvtExecuteSequenceAdvtUISequenceNOT ((NEWMBSA OR NEWMBSA0) OR Downgrade) AND NOT InstallRunningLaunchConditionsValidateProductIDFindRelatedProducts(NEWMBSA OR NEWMBSA0) OR DowngradeInstallRunningCostInitializeFileCostCostFinalizeInstalled AND NOT UpgradeInstalled AND UpgradeNOT Installed AND NOT Upgrade AND NOT UpgradeSilentExecuteActionLocalized description displayed in progress dialog and log when action is executing.Name of action to be described.Optional localized format template used to format action data records for display during action execution.AdvertiseAPPS_TESTAppSearchCCP_TESTCCPSearchNOT CCP_SUCCESS And CCP_TESTRMCCPSearchSetODBCFoldersInstallValidateRemoveExistingProductsInstallInitializeAllocateRegistrySpaceProcessComponentsUnpublishComponentsUnpublishFeaturesVersionNTStopServicesDeleteServicesUnregisterComPlusSelfUnregModulesUnregisterTypeLibrariesRemoveODBCUnregisterFontsRemoveRegistryValuesUnregisterClassInfoUnregisterExtensionInfoUnregisterProgIdInfoUnregisterMIMEInfoRemoveIniValuesRemoveShortcutsRemoveEnvironmentStringsRemoveDuplicateFilesRemoveFilesRemoveFoldersCreateFoldersMoveFilesInstallFilesDuplicateFilesPatchFilesBindImageCreateShortcutsRegisterClassInfoRegisterExtensionInfoRegisterProgIdInfoRegisterMIMEInfoWriteRegistryValuesWriteIniValuesWriteEnvironmentStringsRegisterFontsInstallODBCRegisterTypeLibrariesRegisterComPlusSelfRegModulesRegisterUserRegisterProductPublishComponentsPublishFeaturesPublishProductInstallFinalizeInstallAdminPackageBinaryUnique key identifying the binary data.The unformatted binary data.side16.orgtop16.orgside16side16btop16bmexclamPrimary key. Name of the icon file.Binary stream. The binary icon data in PE (.DLL or .EXE) or icon (.ICO) format.The following applications should be closed before continuing the install:Could not access network location [2].There is not enough disk space on the volume '[2]' to continue the install with recovery enabled. [3] KB are required, but only [4] KB are available. Click Ignore to continue the install without saving recovery information, click Retry to check for available space again, or click Cancel to quit the installation.The product '[2]' is already installed, preventing the installation of this product.  The two products are incompatible.The file [2][3] is being held in use{ by the following process: Name: [4], Id: [5], Window Title: '[6]'}.  Close that application and retry.Are you sure you want to cancel?Out of disk space -- Volume: '[2]'; required space: [3] KB; available space: [4] KB.  Free some disk space and retry.User '[2]' has previously initiated an install for product '[3]'.  That user will need to run that install again before they can use that product.User '[2]' has previously initiated an install for product '[3]'.  That user will need to run that install again before they can use that product.  Your current install will now continue.Error accessing secured data. Please make sure the Windows Installer is configured properly and try the install again.Another installation is in progress. You must complete that installation before continuing this one.Could not increase the available registry space. [2] KB of free registry space is required for the installation of this application.Could not read security information for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not get sub key names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not get value names for key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not write value [2] to key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel.Could not read value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not delete key [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not delete value [2] from key [3]. {{ System error [4].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not open key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. Could not create key: [2]. {{ System error [3].}}  Verify that you have sufficient access to that key, or contact your support personnel. There was an error creating a temporary file that is needed to complete this installation.{{  Folder: [3]. System error code: [2]}}The cabinet file '[2]' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.The file '[2]' cannot be installed because the file cannot be found in cabinet file '[3]'. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package.Failed to correctly patch [2] file: CRC error.Failed to correctly move [2] file: CRC error.Failed to correctly copy [2] file: CRC error.A file that is required cannot be installed because the cabinet file [2] has an invalid digital signature.  This may indicate that the cabinet file is corrupt.{{  Error [3] was returned by WinVerifyTrust.}}A file that is required cannot be installed because the cabinet file [2] is not digitally signed.  This may indicate that the cabinet file is corrupt.Error applying patch to file [2].  It has probably been updated by other means, and can no longer be modified by this patch.  For more information contact your patch vendor.  {{System Error: [3]}}Invalid Drive: [2]Error getting file security: [3] GetLastError: [2]'[2]' is not a valid short file name.The folder path '[2]' contains an invalid character.The folder path '[2]' contains words that are not valid in folder paths.A portion of the folder path '[2]' is invalid.  It is either empty or exceeds the length allowed by the system.The Installer has insufficient privileges to modify this file: [2].The specified path is too long: [2]A network error occurred while attempting to open the source file cabinet: [2]A network error occurred while attempting to create the directory: [2]An error occurred while attempting to create the directory: [2]A network error occurred while attempting to read from the file: [2]Unable to write to the specified folder: [2].The specified path '[2]' is unavailable.The volume [2] is currently unavailable.  Please select another.Cannot create the directory '[2]'.  A file with this name already exists.  Please rename or remove the file and click retry, or click Cancel to exit.Source file not found{{(cabinet)}}: [2].  Verify that the file exists and that you can access it.Error writing to file: [3]. {{ System error [2].}}  Verify that you have access to that directory.Error reading from file: [3]. {{ System error [2].}}  Verify that the file exists and that you can access it.Source file not found: [2].  Verify that the file exists and that you can access it.There is not enough disk space to install this file: [2].  Free some disk space and click Retry, or click Cancel to exit.Another application has exclusive access to the file '[2]'.  Please shut down all other applications, then click Retry.Error reading from file [2]. {{ System error [3].}} Verify that the file exists and that you can access it.Error writing to file: [2].  Verify that you have access to that directory.The installer has insufficient privileges to access this directory: [2].  The installation cannot continue.  Log on as administrator or contact your system administrator.Please insert the disk: [2]Cannot create the file '[2]'.  A directory with this name already exists.  Cancel the install and try installing to a different location.Error reading from file: [2]. {{ System error [3].}}  Verify that the file exists and that you can access it.{[ProductName] }Setup failed.{[ProductName] }Setup completed successfully.Preparing to remove older versions of this application...Removing older versions of this application...Gathering required information...Please wait while Windows configures [ProductName]Installer stopped prematurely.Installer is no longer responding.Out of memory. Shut down other applications before retrying.Time remaining: {[1] minutes }{[2] seconds}Action ended [Time]: [1]. Return value [2].Action start [Time]: [1].=== Logging stopped: [Date]  [Time] ====== Logging started: [Date]  [Time] ===Message type: [1], Argument: [2]{[2]}{, [3]}{, [4]}[ProductName]Action [Time]: [1]. [2]{{Disk full: }}The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is [1]. {{The arguments are: [2], [3], [4]}}Info [1]. Warning [1]. {{Error [1]. }}Key: [1], Name: [2], Value: [3]Writing system registry valuesWriting INI files valuesUnregistering type librariesUnregistering program identifiersUnregistering MIME infoUnregistering fontsUnregistering extension serversAppId: [1]{{, AppType: [2]}}Unregistering COM+ Applications and ComponentsUnregister Class serversUnpublishing product informationUnpublishProductUnpublishing Product FeaturesUnpublishing Qualified ComponentsRemoving moved filesUnmoveFilesStopping servicesStarting servicesStartServicesInitializing ODBC directoriesUnregistering modulesFile: [1], Folder: [2]Registering modulesRemoving backup filesRollbackCleanupRolling back action:RollbackRemoving shortcutsKey: [1], Name: [2]Removing system registry valuesRemoving ODBC componentsFile: [1],  Section: [2],  Key: [3], Value: [4]Removing INI files entriesRemoving foldersRemoving files[MBSARemoveMessage]Removing applicationsName: [1], Value: [2], Action [3]Updating environment stringsFile: [1], Directory: [9]Removing duplicated filesRegistering userLibID: [1]Registering type librariesProgId: [1]Registering program identifiersRegistering productMIME Content Type: [1], Extension: [2]Registering MIME infoFont: [1]Registering fontsExtension: [1]Registering extension serversAppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}Registering COM+ Applications and ComponentsClass Id: [1]Registering Class serversPublishing product informationFeature: [1]Publishing Product FeaturesComponent ID: [1], Qualifier: [2]Publishing Qualified ComponentsUpdating component registrationFile: [1],  Directory: [2],  Size: [3]Patching filesMoving filesApplication: [1]Migrating feature states from related applicationsMigrateFeatureStatesEvaluating launch conditionsValidating installService: [2]Installing new servicesInstallServicesFile: [1],  Dependencies: [2]Installing system catalogInstallSFPCatalogFileInstalling ODBC componentsCopying new filesFile: [1], Directory: [9], Size: [6]Copying network install files[1]Generating script operations for action:GenerateScriptFound application: [1]Searching for related applicationsFile: [1],  Directory: [9],  Size: [6]Creating duplicate filesService: [1]Deleting servicesShortcut: [1]Creating shortcutsFolder: [1]Creating foldersComputing space requirementsSearching for qualifying productsFile: [1]Binding executablesProperty: [1], Signature: [2]Searching for installed applicationsFree space: [1]Allocating registry spaceAdvertising application6.0.8168.0An error occurred while applying security settings. [2] is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install. {{Unable to locate the user's SID, system error [3]}}The key [2] is not valid.  Verify that you entered the correct key.The installer must restart your system before configuration of [2] can continue.  Click Yes to restart now or No if you plan to manually restart later.You must restart your system for the configuration changes made to [2] to take effect. Click Yes to restart now or No if you plan to manually restart later.An installation for [2] is currently suspended.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?A previous installation for this product is in progress.  You must undo the changes made by that installation to continue.  Do you want to undo those changes?An installation package for the product [2] cannot be found. Try the installation again using a valid copy of the installation package '[3]'.Installation completed successfully.Installation failed.Product: [2] -- [3]You may either restore your computer to its previous state or continue the install later. Would you like to restore?An error occurred while writing installation information to disk.  Check to make sure enough disk space is available, and click Retry, or Cancel to end the install.One or more of the files required to restore your computer to its previous state could not be found.  Restoration will not be possible.[2] cannot install one of its required products. Contact your technical support group.  {{System Error: [3].}}The older version of [2] cannot be removed.  Contact your technical support group.  {{System Error [3].}}Installed [2]Configured [2]Removed [2]File [2] was rejected by digital signature policy.The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.There is a problem with this Windows Installer package. A script required for this install to complete could not be run. Contact your support personnel or package vendor.  {{Custom action [2] script error [3], [4]: [5] Line [6], Column [7], [8] }}There is a problem with this Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor. {{Action: [2], location: [3], command: [4] }}There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor.  {{Action [2], location: [3], command: [4] }}There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor.  {{Action [2], entry: [3], library: [4] }}Removal completed successfully.Removal failed.Advertisement completed successfully.Advertisement failed.Configuration completed successfully.Configuration failed.You must be an Administrator to remove this application. To remove this application, you can log on as an Administrator, or contact your technical support group for assistance.The path [2] is not valid.  Please specify a valid path.There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to go back to the previously selected volume.There is no disk in drive [2]. Please insert one and click Retry, or click Cancel to return to the browse dialog and select a different volume.The folder [2] does not exist.  Please enter a path to an existing folder.You have insufficient privileges to read this folder.A valid destination folder for the install could not be determined.Error attempting to read from the source install database: [2].Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation.Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation.Module [2] failed to register.  HRESULT [3].  Contact your support personnel.Module [2] failed to unregister.  HRESULT [3].  Contact your support personnel.Failed to cache package [2]. Error: [3]. Contact your support personnel.Could not register font [2].  Verify that you have sufficient permissions to install fonts, and that the system supports this font.Could not unregister font [2]. Verify that you that you have sufficient permissions to remove fonts.Could not create Shortcut [2]. Verify that the destination folder exists and that you can access it.Could not remove Shortcut [2]. Verify that the shortcut file exists and that you can access it.Could not register type library for file [2].  Contact your support personnel.Could not unregister type library for file [2].  Contact your support personnel.Could not update the ini file [2][3].  Verify that the file exists and that you can access it.Could not schedule file [2] to replace file [3] on reboot.  Verify that you have write permissions to file [3].Error removing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.Error installing ODBC driver manager, ODBC error [2]: [3]. Contact your support personnel.Error removing ODBC driver: [4], ODBC error [2]: [3]. Verify that you have sufficient privileges to remove ODBC drivers.Error installing ODBC driver: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.Error configuring ODBC data source: [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it.Service '[2]' ([3]) failed to start.  Verify that you have sufficient privileges to start system services.Service '[2]' ([3]) could not be stopped.  Verify that you have sufficient privileges to stop system services.Service '[2]' ([3]) could not be deleted.  Verify that you have sufficient privileges to remove system services.Service '[2]' ([3]) could not be installed.  Verify that you have sufficient privileges to install system services.Could not update environment variable '[2]'.  Verify that you have sufficient privileges to modify environment variables.You do not have sufficient privileges to complete this installation for all users of the machine.  Log on as administrator and then retry this installation.Could not set file security for file '[3]'. Error: [2].  Verify that you have sufficient privileges to modify the security permissions for this file.Component Services (COM+ 1.0) are not installed on this computer.  This installation requires Component Services in order to complete successfully.  Component Services are available on Windows 2000.Error registering COM+ Application.  Contact your support personnel for more information.Error unregistering COM+ Application.  Contact your support personnel for more information.The description for service '[2]' ([3]) could not be changed.The Windows Installer service cannot update the system file [2] because the file is protected by Windows.  You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2].  List of protected files:\r\n[3]}}User installations are disabled via policy on the machine.An error occured during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}