CertificateValidation/Microsoft.AzureStack.CertificateValidation.psm1
#Requires -RunAsAdministrator #Requires -Version 5.0 <############################################################# # # # Copyright (C) Microsoft Corporation. All rights reserved. # # # #############################################################> <# .SYNOPSIS This module is intended to be given to the customer along with their deploymentdata.json in order to validate the certificates are suitable before Azure Stack deployment. .DESCRIPTION The validation checks the following: Read PFX. Checks for valid PFX file, correct password and warns if public information is not protected by the password. Signature Algorithm. Checks the Signature Algorithm is not SHA1 Private Key. Checks the private key is present and is exported with the Local Machine attribute. Cert Chain. Checks certificate chain is in tact including for self-signed certificates. DNS Names. Checks the SAN contains relevant DNS names for each endpoint or if a supporting wildcard is present. Key Usage. Checks Key Usage contains Digital Signature and Key Encipherment and Enhanced Key Usage contains Server Authentication and Client Authentication. Key Size. Checks Key Size is 2048 or larger Chain Order. Checks the order of the other certificates making the chain is correct. Other Certificates. Ensure no other certificates have been packaged in PFX other than the relevant leaf certificate and its chain. No Profile. Checks a new user can load the PFX data without a user profile loaded, mimicking the behavior of gMSA accounts during certificate servicing. .EXAMPLE To Check certificates are ready for install run the following: Import-Module .\Microsoft.AzureStack.CertificateValidation.psm1 $password = Read-Host -Prompt "Enter PFX Password" -AsSecureString Start-CertChecker -CertificatePath .\Certificates\ -pfxPassword $password -deploymentDataJSONPath .\DeploymentData.json To import/export certificates as indicated by the output of the above command Import-Module .\Microsoft.AzureStack.CertificateValidation.psm1 $password = Read-Host -Prompt "Enter PFX Password" -AsSecureString Start-CertChecker -pfxPassword $password -pfxPath \certificates\acsblob\old_sslblob.pfx -ExportToPath \certificates\acsblob\new_sslblob.pfx [<CommonParameters>] .NOTES The script expects the certificates in the same directory structure as the install: i.e. \Certificates\ \ACSblob \ssl.pfx \ADFS \ssl.pfx The script requires the deploymentdata.json that will be used for deployment. .LINK #> $mod = Import-Module $PSScriptRoot\PublicCertHelper.psd1 -Force -PassThru Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Utilities.psm1 -Force #setting global variable to true $GLOBAL:standalone = $true $ErrorActionPreference = 'Stop' function Test-AzsCertificateFolderStructure { param ([switch]$UseADFS, $certificatePath, [switch]$extensionHostFeature = $false) # set expected folder names if ($UseADFS) { $validContainers = 'ADFS', 'Graph', 'ACSBlob', 'ACSQueue', 'ACSTable', 'Admin Portal', 'ARM Admin', 'ARM Public', 'KeyVault', 'KeyVaultInternal', 'Public Portal' } else { $validContainers = 'ACSBlob', 'ACSQueue', 'ACSTable', 'Admin Portal', 'ARM Admin', 'ARM Public', 'KeyVault', 'KeyVaultInternal', 'Public Portal' } if ($extensionHostFeature) { $validContainers += @('Admin Extension Host', 'Public Extension Host') } # Check directory structure is valid $actualContainers = (Get-ChildItem -Path $certificatePath -Directory).Name if (-not $actualContainers) { Write-Error ("Invalid folder structure found in certificate folder {0}, ensure only required folders are present. `nRequired folders: {1}" -f $CertificatePath, ($validContainers -join ', ')) } $compareContainers = Compare-Object -ReferenceObject $validContainers -DifferenceObject $actualContainers if ($compareContainers) { $invalidContainers = $compareContainers | Where-Object SideIndicator -eq '=>' | Select-Object -ExpandProperty InputObject $missingContainers = $compareContainers | Where-Object SideIndicator -eq '<=' | Select-Object -ExpandProperty InputObject if (-not $invalidContainers) {$invalidContainers = '[none]'} if (-not $missingContainers) {$missingContainers = '[none]'} Write-Error ("Invalid folder structure found in certificate folder {0}, ensure only required folders are present. `nRequired folders: {1} `nInvalid folders: {2} `nMissing folders: {3}" -f ` $CertificatePath, ` ($validContainers -join ', '), ` ($invalidContainers -join ', '), ` ($missingContainers -join ', ') ) } # Check there is only a single cert in each folder foreach ($folder in (Get-ChildItem -Path $certificatePath -Directory)) { $pfxfiles = Get-ChildItem $folder.FullName -Recurse -Filter *.pfx -ErrorAction SilentlyContinue if ($pfxfiles.count -ne 1) { Write-Error ("The certificate Path '{0}' should only contain 1 certificate. `nEnsure all certificate folders only contain a single certificate." -f $folder.FullName) } } } function Invoke-AzsCertificateValidation { <# .SYNOPSIS Invoke-Microsoft.AzureStack.CertificateValidation is a standalone wrapper for "certchecker" .DESCRIPTION Either invokes certificate validation for Azure Stack public certificates or import/export routine to correct Azure Stack public certificates .EXAMPLE PS C:\> Import-Module .\Microsoft.AzureStack.CertificateValidation.psm1 PS C:\> $password = Read-Host -Prompt "Enter PFX Password" -AsSecureString PS C:\> Invoke-AzsCertificateValidation -CertificatePath .\Certificates -pfxPassword $password -RegionName east -externalFQDN azurestack.contoso.com -IdentitySystem AAD Validates certificates are ready for Azure Stack Deployment and Secret Rotation .EXAMPLE PS C:\>$PaaSCertificates = @{ 'PaaSDBCert' = @{'pfxPath' = 'c:\certs\DBCert.pfx';'pfxPassword' = (ConvertTo-SecureString -String 'Password' -AsPlainText -Force)} 'PaaSDefaultCert' = @{'pfxPath' = 'c:\certs\DefaultPaaSCert.pfx';'pfxPassword' = (ConvertTo-SecureString -String 'Password' -AsPlainText -Force)} 'PaaSAPICert' = @{'pfxPath' = 'c:\certs\PaaSAPICert.pfx';'pfxPassword' = (ConvertTo-SecureString -String 'Password' -AsPlainText -Force)} 'PaaSFTPCert' = @{'pfxPath' = 'c:\certs\PaaSFTPCert.pfx';'pfxPassword' = (ConvertTo-SecureString -String 'Password' -AsPlainText -Force)} 'PaaSSSOCert' = @{'pfxPath' = 'c:\certs\PaaSSSOCert.pfx';'pfxPassword' = (ConvertTo-SecureString -String 'Password' -AsPlainText -Force)} } PS C:\>Invoke-AzsCertificateValidation -RegionName east -FQDN azurestack.contoso.com -paasCertificates $PaaSCertificates Validates PaaS Certificates are ready for PaaS installations on Azure Stack. .PARAMETER CertificatePath Path to directory structure for Azure Stack Public Certificates. The path given for this parameter is expected to contain one of the following sets of sub-directories, each with a single pfx certificate: Identity System AAD: ACSBlob, ACSQueue, ACSTable, Admin Portal, ARM Admin, ARM Public, KeyVault, KeyVaultInternal, Public Portal Identity System ADFS: ADFS, Graph, ACSBlob, ACSQueue, ACSTable, Admin Portal, ARM Admin, ARM Public, KeyVault, KeyVaultInternal, Public Portal .PARAMETER pfxPassword A securestring containing a single password that is common across all certificates .PARAMETER deploymentDataJSONPath Specifies the Azure Stack deployment deployment data JSON configuration file. Generally only available to the deployment team. .PARAMETER PaaSCertificates Specifies a hashtable containing path and password to DB, Default, API, FTP & SSO Paas Certificates. Each individual certificate is optional. See Get-Help Invoke-AzsCertificateValidation -examples for example structure. .PARAMETER ExternalFQDN Specifies the Azure Stack deployment's External FQDN, also aliased as ExternalFQDN and ExternalDomainName, must be valid DNSHostName .PARAMETER RegionName Specifies the Azure Stack deployment's region name when deploymentdata.json is not used, must be alphanumeric. .PARAMETER IdentitySystem Specifies the Azure Stack deployment's Identity System valid values, AAD or ADFS, for Azure Active Directory and Active Directory Federated Services respectively .PARAMETER ExtensionHostFeature Indicates whether to verify the certificates for extension host feature. If the boolean is $false, it will skip the verification for extension host feature. .PARAMETER CleanReport Specifies whether to purge the existing report and start again with a clean report. Execution history and validation data is lost for all Readiness Checker validations. .PARAMETER OutputPath Specifies custom path to save Readiness JSON report and Verbose log file. .LINK Deployment Certificate Validation - https://aka.ms/AzsValidateCerts PaaS Certificate Validation - https://aka.ms/AzsValidatePaaSCerts Azure Stack Readiness Checker Tool - https://aka.ms/AzsReadinessChecker .NOTES #> [CmdletBinding()] [Alias("Start-CertChecker", "Start-AzsCertChecker", "Start-AzureStackCertChecker", "CertChecker", "Invoke-AzureStackCertificateValidation")] Param( [Parameter(Mandatory = $false, HelpMessage = "Enter Path to Certificates Directory", ParameterSetName = "ValidateJSON")] [Parameter(Mandatory = $false, HelpMessage = "Enter Path to Certificates Directory", ParameterSetName = "Validate")] [ValidateScript( {Test-Path $_ -PathType Container})] [string] $CertificatePath = ".\Certificates", [Parameter(Mandatory = $true, ParameterSetName = "Validate")] [Parameter(Mandatory = $true, ParameterSetName = "ValidatePaaS")] [ValidatePattern('(?# Region must be alphanumeric)^[a-zA-Z0-9]+$')] [string] $RegionName, [Parameter(Mandatory = $true, ParameterSetName = "Validate")] [Parameter(Mandatory = $true, ParameterSetName = "ValidatePaaS")] [Alias("ExternalDomainName", "FQDN")] [ValidateScript( {[System.Uri]::CheckHostName($_) -eq 'dns' <#FQDN must be valid DNSHostName#>})] [string] $ExternalFQDN, [Parameter(Mandatory = $true, ParameterSetName = "Validate", HelpMessage = "Enter Password for PFX Certificates as a secure string")] [Parameter(Mandatory = $true, ParameterSetName = "ValidateJSON", HelpMessage = "Enter Password for PFX Certificates as a secure string")] [securestring] $pfxPassword, [Parameter(Mandatory = $true, HelpMessage = "Enter Path to DeploymentData.json", ParameterSetName = "ValidateJSON")] [Parameter(Mandatory = $true, HelpMessage = "Enter Path to DeploymentData.json", ParameterSetName = "ValidatePaaSJSON")] [ValidateScript( {Test-Path $_ -Include *.json})] [string] $deploymentDataJSONPath, [Parameter(Mandatory = $true, ParameterSetName = "Validate")] [ValidateSet('AAD', 'ADFS')] [string] $IdentitySystem, [Parameter(Mandatory = $false, ParameterSetName = "Validate", HelpMessage = "Indicate whether to verify certificates for extension host feature.")] [Parameter(Mandatory = $false, ParameterSetName = "ValidateJSON", HelpMessage = "Indicate whether to verify certificates for extension host feature.")] [bool] $ExtensionHostFeature = $true, [Parameter(Mandatory = $true, ParameterSetName = "ValidatePaaS", HelpMessage = "Provide Hashtable with PFX path and password details for each PaaS Certificate. See Get-Help Invoke-AzsCertificateValidation -Examples")] [Parameter(Mandatory = $true, ParameterSetName = "ValidatePaaSJSON", HelpMessage = "Provide Hashtable with PFX path and password details for each PaaS Certificate. See Get-Help Invoke-AzsCertificateValidation -Examples")] [ValidateScript( { if ($false -in (Test-Path $_.values.pfxPath -include *.pfx)) {$false}else {$true} <#all PFX files paths should be accurate#>})] [hashtable] $PaaSCertificates, [Parameter(HelpMessage = "Directory path for log and report output")] [string]$OutputPath = "$ENV:TEMP\AzsReadinessChecker", [Parameter(HelpMessage = "Remove all previous progress and create a clean report")] [switch]$CleanReport = $false ) $thisFunction = $MyInvocation.MyCommand.Name $GLOBAL:OutputPath = $OutputPath Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Reporting.psm1 -Force Write-Header -invocation $MyInvocation -params $PSBoundParameters # Get/Clean Existing Report $readinessReport = Get-AzsReadinessProgress -clean:$CleanReport $readinessReport = Add-AzsReadinessCheckerJob -report $readinessReport if ($PSCmdlet.ParameterSetName -like '*JSON') { if ($deploymentDataJSONPath) { # detect deployment type, get region name and fqdn, and set useADFS flag and directory name $deploymentDataJSON = ConvertTo-DeploymentData -path $deploymentDataJSONPath $RegionName = $deploymentDataJSON.DeploymentData.RegionName $externalFQDN = $deploymentDataJSON.DeploymentData.ExternalDomainFQDN if ($deploymentDataJSON.DeploymentData.UseAdfs) { $UseADFS = $true $dirName = 'ADFS' } elseif ($deploymentDataJSON.DeploymentData.InfraAzureEnvironment) { $UseADFS = $false $dirName = 'AAD' } else { Write-Error -message "Failed to parse identity store in DeploymentJSON" } } } else { switch ($IdentitySystem) { 'ADFS' { $UseADFS = $true; $dirName = 'ADFS' } 'AAD' { $UseADFS = $false; $dirName = 'AAD' } } } #Validate Deployment Certificates if ($PSCmdlet.ParameterSetName -in @('Validate', 'ValidateJSON')) { # Check the password Write-AzsReadinessLog -Message 'Checking password length for pfxPassword' -Type Info -Function $thisFunction Test-PasswordLength -MinimumCharactersInPassword 8 -Password $pfxPassword -CredentialDescription 'pfxPassword' Test-PasswordComplexity -Password $pfxPassword -CredentialDescription 'pfxPassword' Write-AzsReadinessLog -Message 'Password length for pfxPassword. Success' -Type Info -Function $thisFunction # Validate folder structure Test-AzsCertificateFolderStructure -UseADFS:$UseADFS -certificatePath $CertificatePath -extensionHostFeature:$ExtensionHostFeature # Tests external certs #make the path and copy the certs into a temp cache per the identity system as in deployment $testPath = new-item $ENV:USERPROFILE\AzsCertCache\$dirname -ItemType Directory -Force Get-ChildItem $CertificatePath -Recurse -Directory | Copy-Item -Destination $testPath -Recurse try { $TestAzsCertificatesResults = Test-AzureStackCerts -ExpectedDomainFQDN "$RegionName.$externalFQDN" ` -CertificatePassword $pfxPassword ` -UseADFS $UseADFS ` -PfxFilesPath $testPath.Parent.FullName ` -ExtensionHostFeature:$ExtensionHostFeature } catch { $certResult = $_ } finally { if ($certResult) { Write-Host "Failed" -ForegroundColor Red Write-Host "Detail: $certResult" Write-Host "Please ensure the certificates meet all the requirements as per https://aka.ms/AzsPKIRequirements." } #Write Summary to log Write-Log -Message "Validation Summary Results:" -Type Info -Function $thisfunction $TestAzsCertificatesResults | Out-File $PSScriptRoot\CertChecker.log -Append -Force #Clean up temp cache Remove-Item $ENV:USERPROFILE\AzsCertCache -Force -Recurse } # Copy the log certchecker log for now, until migration can occur. Copy-AzsReadinessLogging -ComponentLogFile CertChecker # Write results to readiness report $readinessReport.CertificateValidation.DeploymentCertificates = $TestAzsCertificatesResults $readinessReport = Close-AzsReadinessCheckerJob -report $readinessReport $readinessReport.CertificateValidation.DeploymentCertificates = Test-CertificateReuse -validationResult $readinessReport.CertificateValidation.DeploymentCertificates } # Validate PaaS Certificates if ($PSCmdlet.ParameterSetName -like '*PaaS*') { Write-Log -Message ("Starting Azure Stack PaaS Certificate Validation {0} " -f $mod.Version) -Type Info -Function $thisfunction $TestAzsPaaSCertificatesResults = foreach ($key in $PaaSCertificates.keys.where( {$_ -match 'PaaSFTPCert|PaaSSSOCert|PaaSAPICert|PaaSDBCert|PaaSDefaultCert'})) { $PaaSCertificate = $PaaSCertificates[$key] Test-PasswordLength -MinimumCharactersInPassword 8 -Password $PaaSCertificate.pfxPassword -CredentialDescription "$key's pfxPassword" Test-PasswordComplexity -Password $PaaSCertificate.pfxPassword -CredentialDescription "$key's pfxPassword" Write-AzsReadinessLog -Message "Password length for $key's pfxPassword. Success" -Type Info -Function $thisFunction Switch ($key) { 'PaaSDBCert' { $ExpectedPrefix = '*.dbadapter' } 'PaaSDefaultCert' { $ExpectedPrefix = '*.appservice', '*.scm.appservice', '*.sso.appservice' } 'PaaSAPICert' { $ExpectedPrefix = 'api.appservice' } 'PaaSFTPCert' { $ExpectedPrefix = 'ftp.appservice' } 'PaaSSSOCert' { $ExpectedPrefix = 'sso.appservice' } } $pfxBinary = Get-Content -Path $PaaSCertificate.pfxPath -Encoding Byte $TestAzsPaaSCertificatesResult = Test-AzSCertificate -CertificateBinary $pfxBinary -CertificatePassword $PaaSCertificate.pfxPassword -expectedPrefix $ExpectedPrefix -ExpectedDomainFQDN "$RegionName.$externalFQDN" -IsPaaS #Add relative Path to result $pfxItem = Get-Item $PaaSCertificate.pfxPath $pfxShortPath = $pfxItem.Directory.Name + '\' + $pfxItem.name $TestAzsPaaSCertificatesResult | Foreach-Object {$_.Path = $pfxShortPath} $TestAzsPaaSCertificatesResult } # Copy the log certchecker log for now, until migration can occur. Copy-AzsReadinessLogging -ComponentLogFile CertChecker # Write results to readiness report $readinessReport.CertificateValidation.PaaSCertificates = $TestAzsPaaSCertificatesResults $readinessReport = Close-AzsReadinessCheckerJob -report $readinessReport $readinessReport.CertificateValidation.PaaSCertificates = Test-CertificateReuse -validationResult $readinessReport.CertificateValidation.PaaSCertificates } Write-AzsReadinessProgress -report $readinessReport Write-AzsReadinessReport -report $readinessReport Write-Footer -invocation $MyInvocation } function Repair-AzsPfxCertificate { <# .SYNOPSIS Re-package PFX files to remediate common packaging problems .DESCRIPTION Import PFX into local machine store, export the package ensuring chain export, encryption usage etc .EXAMPLE PS C:\> Repair-AzsPfxCertificate -PfxPassword $pfxPassword -PfxPath .\certificates\ACSBlob\ACSBlob.pfx -ExportPFXPath .\certificates\ACSBlob\ACSBlob_new.pfx Import ACSBlob PFX and re-exports it to the same folder with a new name. .PARAMETER PfxPassword Specifies the password associated with PFX certificate files. .PARAMETER PfxPath Specifies the path to a problematic certificate that requires import/export routine to fix, as indicated by certificate validation in this tool .PARAMETER ExportPFXPath Specifies the destination path for the resultant PFX file from import/export routine. .PARAMETER OutputPath Specifies custom path to save Readiness JSON report and Verbose log file. .LINK Remediate common issues for Azure Stack PKI certificates - https://aka.ms/AzsRemediateCerts Azure Stack Readiness Checker Tool - https://aka.ms/AzsReadinessChecker .NOTES General notes #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, HelpMessage = "Enter Password for PFX Certificates as a secure string")] [securestring] $pfxPassword, [Parameter(Mandatory = $true, HelpMessage = "Path to PFX on disk", ParameterSetName = "ImportExport")] [ValidateScript( {Test-Path $_ -Include *.pfx -PathType Leaf})] [string] $pfxPath, [Parameter(Mandatory = $true, HelpMessage = "Destination Path for PFX export", ParameterSetName = "ImportExport")] [ValidateScript( {Test-Path -Path (split-path -Path $_ -Parent)})] [string] $ExportPFXPath, [Parameter(HelpMessage = "Directory path for log")] [string]$OutputPath = "$ENV:TEMP\AzsReadinessChecker" ) $thisFunction = $MyInvocation.MyCommand.Name $GLOBAL:OutputPath = $OutputPath Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Reporting.psm1 -Force Write-Header -invocation $MyInvocation -params $PSBoundParameters #Verify PfxPassword is strong enough Write-AzsReadinessLog -Message 'Checking password length for pfxPassword' -Type Info -Function $thisFunction Test-PasswordLength -MinimumCharactersInPassword 8 -Password $pfxPassword -CredentialDescription 'pfxPassword' Test-PasswordComplexity -Password $pfxPassword -CredentialDescription 'pfxPassword' Write-AzsReadinessLog -Message 'Password length for pfxPassword. Success' -Type Info -Function $thisFunction Write-AzsReadinessLog -Message ("Starting Azure Stack Certificate Import/Export") -Type Info -Function $thisfunction -toscreen Write-AzsReadinessLog -Message "Importing PFX $pfxPath into Local Machine Store" -Type Info -Function $thisfunction -toscreen $certificate = Import-AzsCertificate -pfxPath $pfxPath -pfxPassword $pfxPassword if (-not $certificate) { Write-AzsReadinessLog -Message "Import Failed. Please review log." -Type Error -Function $thisfunction -toscreen } else { Write-AzsReadinessLog -Message "Exporting certificate to $exportPFXPath" -Type Info -Function $thisfunction -toscreen Export-AzsCertificate -filePath $ExportPFXPath -certPath $certificate -pfxPassword $pfxPassword Write-AzsReadinessLog -Message "Export complete. Removing certificate from the local machine store." -Type Info -Function $thisfunction -toscreen Remove-Item $certificate.pspath -Force if (-not (Test-Path $certificate.pspath)) { Write-AzsReadinessLog -Message "Removal complete." -Type Info -Function $thisfunction -toscreen } else { Write-AzsReadinessLog -Message ("Removal incomplete. Please manually remove {0}." -f $certificate.pspath) -Type Warning -Function $thisfunction -toscreen } } Copy-AzsReadinessLogging -ComponentLogFile CertChecker Write-Footer -invocation $MyInvocation } # SIG # Begin signature block # MIIkiAYJKoZIhvcNAQcCoIIkeTCCJHUCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAesql8Do048YkL # FlFs11WPJGB5JlsfYa4CELix6rex0aCCDYEwggX/MIID56ADAgECAhMzAAABA14l # HJkfox64AAAAAAEDMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMTgwNzEyMjAwODQ4WhcNMTkwNzI2MjAwODQ4WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQDRlHY25oarNv5p+UZ8i4hQy5Bwf7BVqSQdfjnnBZ8PrHuXss5zCvvUmyRcFrU5 # 3Rt+M2wR/Dsm85iqXVNrqsPsE7jS789Xf8xly69NLjKxVitONAeJ/mkhvT5E+94S # nYW/fHaGfXKxdpth5opkTEbOttU6jHeTd2chnLZaBl5HhvU80QnKDT3NsumhUHjR # hIjiATwi/K+WCMxdmcDt66VamJL1yEBOanOv3uN0etNfRpe84mcod5mswQ4xFo8A # DwH+S15UD8rEZT8K46NG2/YsAzoZvmgFFpzmfzS/p4eNZTkmyWPU78XdvSX+/Sj0 # NIZ5rCrVXzCRO+QUauuxygQjAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUR77Ay+GmP/1l1jjyA123r3f3QP8w # UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 # ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDM3OTY1MB8GA1UdIwQYMBaAFEhu # ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu # bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w # Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 # Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx # MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAn/XJ # Uw0/DSbsokTYDdGfY5YGSz8eXMUzo6TDbK8fwAG662XsnjMQD6esW9S9kGEX5zHn # wya0rPUn00iThoj+EjWRZCLRay07qCwVlCnSN5bmNf8MzsgGFhaeJLHiOfluDnjY # DBu2KWAndjQkm925l3XLATutghIWIoCJFYS7mFAgsBcmhkmvzn1FFUM0ls+BXBgs # 1JPyZ6vic8g9o838Mh5gHOmwGzD7LLsHLpaEk0UoVFzNlv2g24HYtjDKQ7HzSMCy # RhxdXnYqWJ/U7vL0+khMtWGLsIxB6aq4nZD0/2pCD7k+6Q7slPyNgLt44yOneFuy # bR/5WcF9ttE5yXnggxxgCto9sNHtNr9FB+kbNm7lPTsFA6fUpyUSj+Z2oxOzRVpD # MYLa2ISuubAfdfX2HX1RETcn6LU1hHH3V6qu+olxyZjSnlpkdr6Mw30VapHxFPTy # 2TUxuNty+rR1yIibar+YRcdmstf/zpKQdeTr5obSyBvbJ8BblW9Jb1hdaSreU0v4 # 6Mp79mwV+QMZDxGFqk+av6pX3WDG9XEg9FGomsrp0es0Rz11+iLsVT9qGTlrEOla # P470I3gwsvKmOMs1jaqYWSRAuDpnpAdfoP7YO0kT+wzh7Qttg1DO8H8+4NkI6Iwh # SkHC3uuOW+4Dwx1ubuZUNWZncnwa6lL2IsRyP64wggd6MIIFYqADAgECAgphDpDS # AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 # ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla # MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS # ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT # H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG # OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S # 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz # y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 # 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u # M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 # X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl # XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP # 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB # l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF # RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM # CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ # BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud # DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO # 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 # LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p # Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB # FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw # cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA # XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY # 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj # 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd # d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ # Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf # wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ # aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j # NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B # xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 # eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 # r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I # RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIWXTCCFlkCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAQNeJRyZH6MeuAAAAAABAzAN # BglghkgBZQMEAgEFAKCB3jAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSiYdEtBC # L9Rf0H1lqrI3D4JND1FqPdy+40DBl+BmpHswcgYKKwYBBAGCNwIBDDFkMGKgSIBG # AE0AaQBjAHIAbwBzAG8AZgB0ACAAQQB6AHUAcgBlAFMAdABhAGMAawAgAFAAYQBy # AHQAbgBlAHIAVABvAG8AbABrAGkAdKEWgBRodHRwOi8vQ29kZVNpZ25JbmZvIDAN # BgkqhkiG9w0BAQEFAASCAQA3uQgkNM8KuRxbSZvcTYHnhgD+EJK+u3AGGcYOmz4X # /tqyzB/WwWr9jV2LHkkpu9DNnug1mdJzlV4uRSaFGpIZjbFu6gcpDClmJY2vcHm/ # bLJz3QoZnrIeht9NcE9B8/z5VVxVGhxlfOSLZ+TSvU/Alz/c+nxil85YV1eqthif # lqQZGjj1lhLECatZRJNH6ydb/tG9AzcbEv2Y6ygEriLF9XCTSKdCBoGdZUS1MWUv # i4iMssoJMLJ7PHJn2CwME+zuhPwi1xB3QK8IvVTd3lacx04Ey5ipZctxCWqcQFee # UveJL0IxTPyPfKPynu5oOMaMuD8/3Ya9fS+7MiwFLcuRoYITtzCCE7MGCisGAQQB # gjcDAwExghOjMIITnwYJKoZIhvcNAQcCoIITkDCCE4wCAQMxDzANBglghkgBZQME # AgEFADCCAVgGCyqGSIb3DQEJEAEEoIIBRwSCAUMwggE/AgEBBgorBgEEAYRZCgMB # MDEwDQYJYIZIAWUDBAIBBQAEICH8IwHw5hF1tK/r16NHJ8ia8R3zRlAshrO8hMW6 # 40P5AgZb2dRzwLkYEzIwMTgxMTAxMjE1MzQxLjUxNFowBwIBAYACAfSggdSkgdEw # gc4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS # ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsT # IE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFs # ZXMgVFNTIEVTTjpCOEVDLTMwQTQtNzE0NDElMCMGA1UEAxMcTWljcm9zb2Z0IFRp # bWUtU3RhbXAgU2VydmljZaCCDx8wggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0G # CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv # bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 # aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp # dHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0yNTA3MDEyMTQ2NTVaMHwxCzAJBgNV # BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w # HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m # dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB # CgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RUENWlCgCChfvtfGhLLF/Fw+Vhwna3 # PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMw # VyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50YWeRX4FUsc+TTJLBxKZd0WETbijG # GvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/ # 9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaRtogINeh4HLDpmc085y9Euqf03GS9 # pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQABo4IB5jCCAeIwEAYJKwYBBAGCNxUB # BAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8RhvFM2hahW1VMBkGCSsGAQQBgjcU # AgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8G # A1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJoEeG # RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jv # b0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH # MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2Vy # QXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcu # AzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL1BLSS9k # b2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwA # XwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0B # AQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LF # Zslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7uVOMzPRgEop2zEBAQZvcXBf/XPle # FzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqRUgCvOA8X9S95gWXZqbVr5MfO9sp6 # AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9Va8v/rbljjO7Yl+a21dA6fHOmWaQ # jP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8+n99lmqQeKZt0uGc+R38ONiU9Mal # CpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacR # y5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh2rBQHm+98eEA3+cxB6STOvdlR3jo # +KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZ # eodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoouLGp25ayp0Kiyc8ZQU3ghvkqmqMR # ZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/ # XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341Hgi62jbb01+P3nSISRIwggT1MIID # 3aADAgECAhMzAAAAzDq9O3I4EQW6AAAAAADMMA0GCSqGSIb3DQEBCwUAMHwxCzAJ # BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k # MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jv # c29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTE4MDgyMzIwMjYyNVoXDTE5MTEy # MzIwMjYyNVowgc4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAw # DgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x # KTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYD # VQQLEx1UaGFsZXMgVFNTIEVTTjpCOEVDLTMwQTQtNzE0NDElMCMGA1UEAxMcTWlj # cm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZTCCASIwDQYJKoZIhvcNAQEBBQADggEP # ADCCAQoCggEBAMfQVaWKJhVrFd3wd5i7tfnMU0sGcTEnEmTqPS8j+nlRKLVotbrf # HVvTuguDClWIc1+lnsw6gnz+mgJT5Y6VzIGpwaRYTMe3cJ9X//XOZBa7xuXu9A46 # HiO2T5roJBkJ9lIt268voSvXmjGQA913N1nWhsc6UE4VuOsP56iHutiHStJ2AgMY # rDrpJEBI2KUVk/XCEbpiIaZyEn59sh7iMBIk1OJp3ISjQXt+AYjxgSoWaqzSvN/o # j1RWu+v0gFeLRBldrFihFO9PvZ3HqSJ6s7ctmOZkYnfmNjOwheVmdHj3QnuebbeY # 0hODFtVXYlvQU7Dw2SBQ6XEcnl6xYHLlIosCAwEAAaOCARswggEXMB0GA1UdDgQW # BBStqU2mSsJlEE/X63seIZoxM0jrqTAfBgNVHSMEGDAWgBTVYzpcijGQ80N7fEYb # xTNoWoVtVTBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5j # b20vcGtpL2NybC9wcm9kdWN0cy9NaWNUaW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmww # WgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29m # dC5jb20vcGtpL2NlcnRzL01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNV # HRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IB # AQA9XV1qguniZVE1UsPJHL/gEWBWEKeYcuZDunghCMGzq3Ap20k8qsRjKEwmLpwj # QK4ErHhgZLujYCCRkxpAcHcqUrzfBQl6hMbLqJwJNRmFu/7H4MJAckl+4lImOUsJ # RAjiheHl67fq5V+i8LMBg8LYNPKy4kCoTUvS/qgUhOrVnQCqtENJTDMxjmOeezO9 # kvqPtvIx76DSdKtg+PXoE/UgXc3xL6RBeNix76MdU8lLOqg4S1Gs9B5KyxZv8Ttf # f1yTU/E2kMwOf8QnzWnq5NfaDZ18TUzlyacL47GHW3K53TWdWyt+xfhYGrk0KVcH # ipz1p92Ae1Be5X7pSiJrLtjfoYIDrTCCApUCAQEwgf6hgdSkgdEwgc4xCzAJBgNV # BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w # HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29m # dCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT # TjpCOEVDLTMwQTQtNzE0NDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg # U2VydmljZaIlCgEBMAkGBSsOAwIaBQADFQBz2ocx/S77PGis5+hGlHNEh7+WTaCB # 3jCB26SB2DCB1TELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAO # BgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEp # MCcGA1UECxMgTWljcm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJzAlBgNV # BAsTHm5DaXBoZXIgTlRTIEVTTjo1N0Y2LUMxRTAtNTU0QzErMCkGA1UEAxMiTWlj # cm9zb2Z0IFRpbWUgU291cmNlIE1hc3RlciBDbG9jazANBgkqhkiG9w0BAQUFAAIF # AN+FbsQwIhgPMjAxODExMDExMjIzMzJaGA8yMDE4MTEwMjEyMjMzMlowdDA6Bgor # BgEEAYRZCgQBMSwwKjAKAgUA34VuxAIBADAHAgEAAgIPjjAHAgEAAgIabTAKAgUA # 34bARAIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMBoAowCAIBAAID # FuNgoQowCAIBAAIDB6EgMA0GCSqGSIb3DQEBBQUAA4IBAQC2u1Aui2mXBwi5oI/c # t3+Zjedf9zRm+aGAK5BcsPc8YQ8Ws8GMfheO00K6lwKsLarIeXMyG+DMSt3OC6Wn # phAT1QbTTUmN/V5GKZzDyd/A+2lrC8NUjt7U71x5yLfnD3S+BMYqpKggjdtzc0yZ # Y/zAci8YvyTZHI3s0N8EMvbOnC5+zenxX84SfKMGXtGc4HlO/HDhUaFp7AA0dQYz # 3UghueeHabt9SguoKNhC6P1Dxardv5rVTxtydE5GrFpJUoy1pM4/Pl9TTUhQI+J7 # cHneatWc0LRdgDD+JZdIVkrinw5EkUaBeSIX0KSiH80h0Xu4W2tvVoj73TeTgcQ4 # Nx0RMYIC9TCCAvECAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp # bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw # b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAC # EzMAAADMOr07cjgRBboAAAAAAMwwDQYJYIZIAWUDBAIBBQCgggEyMBoGCSqGSIb3 # DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQgK5tWHYjizo6h7idA # /w12k3M0QuBYaGHrgk6Dd5SDyOYwgeIGCyqGSIb3DQEJEAIMMYHSMIHPMIHMMIGx # BBRz2ocx/S77PGis5+hGlHNEh7+WTTCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMw # EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN # aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0 # YW1wIFBDQSAyMDEwAhMzAAAAzDq9O3I4EQW6AAAAAADMMBYEFJ2BopMDUofC0NLT # jlXL4jlHrP36MA0GCSqGSIb3DQEBCwUABIIBAL12YeOFZroAIIR8LeF3jkLFP3MY # 9adC9F0XcUu7v71vHs/KGPaQ/cBp/vYhs5SONcr4Y15PFEox86kQyipyzmHB3Yms # v0vBnGpIo+1YMkj2RpCEB2+S3lrNa4KevcBkWMYYBRblHgZVEEktT0pgSdeAIY/F # HetvNl26Fs9zWhjwKq67fm1HD40gGP/Cn4xGj4iUKyK9WvoS9M+F8WCrER855Hz1 # XjDQFDJM15vc6+tuqCVRDiic5KZlbWhevGOUJoPkt1U+A6uURpB2WeWD+NLultOY # Z5NLAFUWi8H4AFQnR9gTqi3/k4eEa+Ide0Ph/irt3VJ90ToKE/KGgV8+Qlc= # SIG # End signature block |