-
Notifications
You must be signed in to change notification settings - Fork 0
/
Deploy-Application.ps1
386 lines (347 loc) · 18.5 KB
/
Deploy-Application.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<#
.SYNOPSIS
This script performs the installation or uninstallation of an application(s).
.DESCRIPTION
The script is provided as a template to perform an install or uninstall of an application(s).
The script either performs an "Install" deployment type or an "Uninstall" deployment type.
The install deployment type is broken down into 3 main sections/phases: Pre-Install, Install, and Post-Install.
The script dot-sources the AppDeployToolkitMain.ps1 script which contains the logic and functions required to install or uninstall an application.
.PARAMETER DeploymentType
The type of deployment to perform. Default is: Install.
.PARAMETER DeployMode
Specifies whether the installation should be run in Interactive, Silent, or NonInteractive mode. Default is: Interactive. Options: Interactive = Shows dialogs, Silent = No dialogs, NonInteractive = Very silent, i.e. no blocking apps. NonInteractive mode is automatically set if it is detected that the process is not user interactive.
.PARAMETER AllowRebootPassThru
Allows the 3010 return code (requires restart) to be passed back to the parent process (e.g. SCCM) if detected from an installation. If 3010 is passed back to SCCM, a reboot prompt will be triggered.
.PARAMETER TerminalServerMode
Changes to "user install mode" and back to "user execute mode" for installing/uninstalling applications for Remote Destkop Session Hosts/Citrix servers.
.PARAMETER DisableLogging
Disables logging to file for the script. Default is: $false.
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -DeployMode 'Silent'; Exit $LastExitCode }"
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -AllowRebootPassThru; Exit $LastExitCode }"
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -DeploymentType 'Uninstall'; Exit $LastExitCode }"
.EXAMPLE
Deploy-Application.exe -DeploymentType "Install" -DeployMode "Silent"
.NOTES
Toolkit Exit Code Ranges:
60000 - 68999: Reserved for built-in exit codes in Deploy-Application.ps1, Deploy-Application.exe, and AppDeployToolkitMain.ps1
69000 - 69999: Recommended for user customized exit codes in Deploy-Application.ps1
70000 - 79999: Recommended for user customized exit codes in AppDeployToolkitExtensions.ps1
.LINK
http://psappdeploytoolkit.com
#>
[CmdletBinding()]
Param (
[Parameter(Mandatory=$false)]
[ValidateSet('Install','Uninstall')]
[string]$DeploymentType = 'Install',
[Parameter(Mandatory=$false)]
[ValidateSet('Interactive','Silent','NonInteractive')]
[string]$DeployMode = 'Interactive',
[Parameter(Mandatory=$false)]
[switch]$AllowRebootPassThru = $false,
[Parameter(Mandatory=$false)]
[switch]$TerminalServerMode = $false,
[Parameter(Mandatory=$false)]
[switch]$DisableLogging = $false
)
Try {
## Set the script execution policy for this process
Try { Set-ExecutionPolicy -ExecutionPolicy 'ByPass' -Scope 'Process' -Force -ErrorAction 'Stop' } Catch {}
##*===============================================
##* VARIABLE DECLARATION
##*===============================================
## Variables: Application
[string]$appVendor = 'Microsoft'
[string]$appName = 'PFE Remediation Agent'
[string]$appVersion = '16.3.5.0'
[string]$appArch = ''
[string]$appLang = 'EN'
[string]$appRevision = '01'
[string]$appScriptVersion = '1.0.1'
[string]$appScriptDate = '2017-06-21'
[string]$appScriptAuthor = 'Mieszko Ślusarczyk'
[bool]$showPostinstallMessage = $false
##*===============================================
## Variables: Install Titles (Only set here to override defaults set by the toolkit)
[string]$installName = ''
[string]$installTitle = ''
##* Do not modify section below
#region DoNotModify
## Variables: Exit Code
[int32]$mainExitCode = 0
## Variables: Script
[string]$deployAppScriptFriendlyName = 'Deploy Application'
[version]$deployAppScriptVersion = [version]'3.6.9'
[string]$deployAppScriptDate = '02/12/2017'
[hashtable]$deployAppScriptParameters = $psBoundParameters
## Variables: Environment
If (Test-Path -LiteralPath 'variable:HostInvocation') { $InvocationInfo = $HostInvocation } Else { $InvocationInfo = $MyInvocation }
[string]$scriptDirectory = Split-Path -Path $InvocationInfo.MyCommand.Definition -Parent
## Dot source the required App Deploy Toolkit Functions
Try {
[string]$moduleAppDeployToolkitMain = "$scriptDirectory\AppDeployToolkit\AppDeployToolkitMain.ps1"
If (-not (Test-Path -LiteralPath $moduleAppDeployToolkitMain -PathType 'Leaf')) { Throw "Module does not exist at the specified location [$moduleAppDeployToolkitMain]." }
If ($DisableLogging) { . $moduleAppDeployToolkitMain -DisableLogging } Else { . $moduleAppDeployToolkitMain }
}
Catch {
If ($mainExitCode -eq 0){ [int32]$mainExitCode = 60008 }
Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
## Exit the script, returning the exit code to SCCM
If (Test-Path -LiteralPath 'variable:HostInvocation') { $script:ExitCode = $mainExitCode; Exit } Else { Exit $mainExitCode }
}
## Dot source the required SCCM PFE Common Functions
Try
{
Write-Log "Trying to load SCCMPFECommonFunctions"
[string]$moduleSCCMPFECommonFunctions = "$scriptDirectory\AppDeployToolkit\SCCMPFECommonFunctions.ps1"
If (-not (Test-Path -LiteralPath $moduleSCCMPFECommonFunctions -PathType 'Leaf')) { Throw "Module does not exist at the specified location [$moduleSCCMPFECommonFunctions]." }
If ($DisableLogging) { . $moduleSCCMPFECommonFunctions -DisableLogging }
Else { . $moduleSCCMPFECommonFunctions }
}
Catch
{
If ($mainExitCode -eq 0) { [int32]$mainExitCode = 60008 }
Write-Error -Message "Module [$moduleSCCMPFECommonFunctions] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
## Exit the script, returning the exit code to SCCM
If (Test-Path -LiteralPath 'variable:HostInvocation') { $script:ExitCode = $mainExitCode; Exit } Else { Exit $mainExitCode }
}
#endregion
##* Do not modify section above
##*===============================================
##* END VARIABLE DECLARATION
##*===============================================
If ($deploymentType -ine 'Uninstall')
{
##*===============================================
##* PRE-INSTALLATION
##*===============================================
[string]$installPhase = 'Pre-Installation'
## Show Welcome Message, close Internet Explorer if required, allow up to 3 deferrals, verify there is enough disk space to complete the install, and persist the prompt
Show-InstallationWelcome -CheckDiskSpace -PersistPrompt
## Show Progress Message (with the default message)
Show-InstallationProgress
## <Perform Pre-Installation tasks here>
If (Get-InstalledApplication -Name "Microsoft PFE Remediation for Configuration Manager")
{
Remove-MSIApplications -Name "Microsoft PFE Remediation for Configuration Manager"
}
If (Get-InstalledApplication -Name "System Center Configuration Manager Primary Site Setup")
{
$isPrimarySiteServer = $true
Write-Log "Info: This is a SCCM Primary Site Server" -Source Pre-Installation
$myFQDN = (Get-WmiObject win32_computersystem).DNSHostName + "." + (Get-WmiObject win32_computersystem).Domain
If ($myFQDN)
{
Write-Log "Info: Setting PRIMARYSITENAME to own FQDN ($myFQDN)" -Source Pre-Installation
$PrimarySiteServer = $myFQDN
}
}
Else
{
Write-Log "Info: This is NOT a SCCM Primary Site Server" -Source Pre-Installation
Try
{
Write-Log "Info: Trying to get SCCM Primary Site Server from AD" -Source Pre-Installation
$script:PrimarySiteServer = Get-SMSMP -Source AD -Primary $true
}
Catch
{
Write-Log "Warning: Failed to get SCCM Primary Site Server from AD" -Severity 2 -Source Pre-Installation
Try
{
Write-Log "Info: Trying to get SCCM Primary Site Server from WMI" -Source Pre-Installation
$script:PrimarySiteServer = Get-SMSMP -Source WMI -Primary $true
}
Catch
{
Write-Log "Warning: Failed to get SCCM Primary Site Server from WMI" -Severity 2 -Source Pre-Installation
$script:PrimarySiteServer = Get-Content "$DirSupportFiles\Primary.txt"
}
}
}
##*===============================================
##* INSTALLATION
##*===============================================
[string]$installPhase = 'Installation'
## Handle Zero-Config MSI Installations
If ($useDefaultMsi)
{
[hashtable]$ExecuteDefaultMSISplat = @{ Action = 'Install'; Path = $defaultMsiFile }; If ($defaultMstFile) { $ExecuteDefaultMSISplat.Add('Transform', $defaultMstFile) }
Execute-MSI @ExecuteDefaultMSISplat; If ($defaultMspFiles) { $defaultMspFiles | ForEach-Object { Execute-MSI -Action 'Patch' -Path $_ } }
}
## <Perform Installation tasks here>
Execute-MSI -Action 'Install' -Path "$dirfiles\PFERemediationAgent.msi" -AddParameters "PRIMARYSITENAME=$PrimarySiteServer"
If ($isPrimarySiteServer)
{
Write-Log "Info: Creating $ShareName share" -Source Installation
Create-SCCMPFEClientFolder
Apply-SCCMPFEClientFolderPermissions
Create-SCCMPFEClientShare
Create-SCCMPFESharesPermissions
}
##*===============================================
##* POST-INSTALLATION
##*===============================================
[string]$installPhase = 'Post-Installation'
## <Perform Post-Installation tasks here>
If ($isPrimarySiteServer)
{
Write-Log "Info: Creating/copying SCCM PFE Configuration" -Source Post-Installation
Create-SCCMPFEConfiguration
Copy-SCCMPFEConfiguration
}
## Display a message at the end of the install
If (-not $useDefaultMsi -and $showPostinstallMessage) { Show-InstallationPrompt -Message 'You can customize text to appear at the end of an install or remove it completely for unattended installations.' -ButtonRightText 'OK' -Icon Information -NoWait }
}
ElseIf ($deploymentType -ieq 'Uninstall')
{
##*===============================================
##* PRE-UNINSTALLATION
##*===============================================
[string]$installPhase = 'Pre-Uninstallation'
## Show Welcome Message, close Internet Explorer with a 60 second countdown before automatically closing
Show-InstallationWelcome
## Show Progress Message (with the default message)
Show-InstallationProgress
## <Perform Pre-Uninstallation tasks here>
##*===============================================
##* UNINSTALLATION
##*===============================================
[string]$installPhase = 'Uninstallation'
## Handle Zero-Config MSI Uninstallations
If ($useDefaultMsi)
{
[hashtable]$ExecuteDefaultMSISplat = @{ Action = 'Uninstall'; Path = $defaultMsiFile }; If ($defaultMstFile) { $ExecuteDefaultMSISplat.Add('Transform', $defaultMstFile) }
Execute-MSI @ExecuteDefaultMSISplat
}
# <Perform Uninstallation tasks here>
Remove-MSIApplications -Name "Microsoft PFE Remediation for Configuration Manager"
##*===============================================
##* POST-UNINSTALLATION
##*===============================================
[string]$installPhase = 'Post-Uninstallation'
## <Perform Post-Uninstallation tasks here>
}
##*===============================================
##* END SCRIPT BODY
##*===============================================
## Call the Exit-Script function to perform final cleanup operations
Exit-Script -ExitCode $mainExitCode
}
Catch {
[int32]$mainExitCode = 60001
[string]$mainErrorMessage = "$(Resolve-Error)"
Write-Log -Message $mainErrorMessage -Severity 3 -Source $deployAppScriptFriendlyName
Show-DialogBox -Text $mainErrorMessage -Icon 'Stop'
Exit-Script -ExitCode $mainExitCode
}
# SIG # Begin signature block
# MIITkQYJKoZIhvcNAQcCoIITgjCCE34CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU4I86nby1am9qeM/vUMuTV1Ht
# Eeiggg7fMIIEFDCCAvygAwIBAgILBAAAAAABL07hUtcwDQYJKoZIhvcNAQEFBQAw
# VzELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNV
# BAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw0xMTA0
# MTMxMDAwMDBaFw0yODAxMjgxMjAwMDBaMFIxCzAJBgNVBAYTAkJFMRkwFwYDVQQK
# ExBHbG9iYWxTaWduIG52LXNhMSgwJgYDVQQDEx9HbG9iYWxTaWduIFRpbWVzdGFt
# cGluZyBDQSAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlO9l
# +LVXn6BTDTQG6wkft0cYasvwW+T/J6U00feJGr+esc0SQW5m1IGghYtkWkYvmaCN
# d7HivFzdItdqZ9C76Mp03otPDbBS5ZBb60cO8eefnAuQZT4XljBFcm05oRc2yrmg
# jBtPCBn2gTGtYRakYua0QJ7D/PuV9vu1LpWBmODvxevYAll4d/eq41JrUJEpxfz3
# zZNl0mBhIvIG+zLdFlH6Dv2KMPAXCae78wSuq5DnbN96qfTvxGInX2+ZbTh0qhGL
# 2t/HFEzphbLswn1KJo/nVrqm4M+SU4B09APsaLJgvIQgAIMboe60dAXBKY5i0Eex
# +vBTzBj5Ljv5cH60JQIDAQABo4HlMIHiMA4GA1UdDwEB/wQEAwIBBjASBgNVHRMB
# Af8ECDAGAQH/AgEAMB0GA1UdDgQWBBRG2D7/3OO+/4Pm9IWbsN1q1hSpwTBHBgNV
# HSAEQDA+MDwGBFUdIAAwNDAyBggrBgEFBQcCARYmaHR0cHM6Ly93d3cuZ2xvYmFs
# c2lnbi5jb20vcmVwb3NpdG9yeS8wMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL2Ny
# bC5nbG9iYWxzaWduLm5ldC9yb290LmNybDAfBgNVHSMEGDAWgBRge2YaRQ2XyolQ
# L30EzTSo//z9SzANBgkqhkiG9w0BAQUFAAOCAQEATl5WkB5GtNlJMfO7FzkoG8IW
# 3f1B3AkFBJtvsqKa1pkuQJkAVbXqP6UgdtOGNNQXzFU6x4Lu76i6vNgGnxVQ380W
# e1I6AtcZGv2v8Hhc4EvFGN86JB7arLipWAQCBzDbsBJe/jG+8ARI9PBw+DpeVoPP
# PfsNvPTF7ZedudTbpSeE4zibi6c1hkQgpDttpGoLoYP9KOva7yj2zIhd+wo7AKvg
# IeviLzVsD440RZfroveZMzV+y5qKu0VN5z+fwtmK+mWybsd+Zf/okuEsMaL3sCc2
# SI8mbzvuTXYfecPlf5Y1vC0OzAGwjn//UYCAp5LUs0RGZIyHTxZjBzFLY7Df8zCC
# BJ8wggOHoAMCAQICEhEh1pmnZJc+8fhCfukZzFNBFDANBgkqhkiG9w0BAQUFADBS
# MQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEoMCYGA1UE
# AxMfR2xvYmFsU2lnbiBUaW1lc3RhbXBpbmcgQ0EgLSBHMjAeFw0xNjA1MjQwMDAw
# MDBaFw0yNzA2MjQwMDAwMDBaMGAxCzAJBgNVBAYTAlNHMR8wHQYDVQQKExZHTU8g
# R2xvYmFsU2lnbiBQdGUgTHRkMTAwLgYDVQQDEydHbG9iYWxTaWduIFRTQSBmb3Ig
# TVMgQXV0aGVudGljb2RlIC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
# AoIBAQCwF66i07YEMFYeWA+x7VWk1lTL2PZzOuxdXqsl/Tal+oTDYUDFRrVZUjtC
# oi5fE2IQqVvmc9aSJbF9I+MGs4c6DkPw1wCJU6IRMVIobl1AcjzyCXenSZKX1GyQ
# oHan/bjcs53yB2AsT1iYAGvTFVTg+t3/gCxfGKaY/9Sr7KFFWbIub2Jd4NkZrItX
# nKgmK9kXpRDSRwgacCwzi39ogCq1oV1r3Y0CAikDqnw3u7spTj1Tk7Om+o/SWJMV
# TLktq4CjoyX7r/cIZLB6RA9cENdfYTeqTmvT0lMlnYJz+iz5crCpGTkqUPqp0Dw6
# yuhb7/VfUfT5CtmXNd5qheYjBEKvAgMBAAGjggFfMIIBWzAOBgNVHQ8BAf8EBAMC
# B4AwTAYDVR0gBEUwQzBBBgkrBgEEAaAyAR4wNDAyBggrBgEFBQcCARYmaHR0cHM6
# Ly93d3cuZ2xvYmFsc2lnbi5jb20vcmVwb3NpdG9yeS8wCQYDVR0TBAIwADAWBgNV
# HSUBAf8EDDAKBggrBgEFBQcDCDBCBgNVHR8EOzA5MDegNaAzhjFodHRwOi8vY3Js
# Lmdsb2JhbHNpZ24uY29tL2dzL2dzdGltZXN0YW1waW5nZzIuY3JsMFQGCCsGAQUF
# BwEBBEgwRjBEBggrBgEFBQcwAoY4aHR0cDovL3NlY3VyZS5nbG9iYWxzaWduLmNv
# bS9jYWNlcnQvZ3N0aW1lc3RhbXBpbmdnMi5jcnQwHQYDVR0OBBYEFNSihEo4Whh/
# uk8wUL2d1XqH1gn3MB8GA1UdIwQYMBaAFEbYPv/c477/g+b0hZuw3WrWFKnBMA0G
# CSqGSIb3DQEBBQUAA4IBAQCPqRqRbQSmNyAOg5beI9Nrbh9u3WQ9aCEitfhHNmmO
# 4aVFxySiIrcpCcxUWq7GvM1jjrM9UEjltMyuzZKNniiLE0oRqr2j79OyNvy0oXK/
# bZdjeYxEvHAvfvO83YJTqxr26/ocl7y2N5ykHDC8q7wtRzbfkiAD6HHGWPZ1BZo0
# 8AtZWoJENKqA5C+E9kddlsm2ysqdt6a65FDT1De4uiAO0NOSKlvEWbuhbds8zkSd
# wTgqreONvc0JdxoQvmcKAjZkiLmzGybu555gxEaovGEzbM9OuZy5avCfN/61PU+a
# 003/3iCOTpem/Z8JvE3KGHbJsE2FUPKA0h0G9VgEB7EYMIIGIDCCBAigAwIBAgIT
# UgAAABxN1D0InJGIbQAAAAAAHDANBgkqhkiG9w0BAQsFADA/MRMwEQYKCZImiZPy
# LGQBGRYDY29tMRYwFAYKCZImiZPyLGQBGRYGaXBhcGVyMRAwDgYDVQQDEwdJUFN1
# YkNBMB4XDTE3MDQxNzE1MTcyNVoXDTIwMDQxNjE1MTcyNVowHTEbMBkGA1UEAxMS
# SW50ZXJuYXRpb25hbFBhcGVyMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCN
# DHhqB9jdBRakFFWXJnNdj+ZuOYmN9g+U5v/xsgDam173evS5GV0Zj5w6yFmag1Fj
# kjhyQmiZcilVrb2z+CU4mgmbkduCZai5/1NN6wiHqTsQyTlwyNCoGRTmHAzWdRgs
# OJ4SHcW5YWKDSicThtUlEiCipueqLf6J55W0vSnvEwIDAQABo4ICuTCCArUwPgYJ
# KwYBBAGCNxUHBDEwLwYnKwYBBAGCNxUIgfvTWYSZhyiDsYMahKiqM4SB+SaBGYW0
# wReFytkCAgFkAgEMMBMGA1UdJQQMMAoGCCsGAQUFBwMDMAsGA1UdDwQEAwIHgDAM
# BgNVHRMBAf8EAjAAMBsGCSsGAQQBgjcVCgQOMAwwCgYIKwYBBQUHAwMwHQYDVR0O
# BBYEFKkBcsWCUlbQsQuvlGn8TdH+HNybMB8GA1UdIwQYMBaAFO/UWWdgalRzmf9r
# cPCTbIgUSaTrMIHxBgNVHR8EgekwgeYwgeOggeCggd2GK2h0dHA6Ly9jZXJ0Lmlw
# YXBlci5jb20vQ2VydERhdGEvSVBTdWJDQS5jcmyGga1sZGFwOi8vL0NOPUlQU3Vi
# Q0EsQ049UzAyQVNDQSxDTj1DRFAsQ049UHVibGljJTIwS2V5JTIwU2VydmljZXMs
# Q049U2VydmljZXMsQ049Q29uZmlndXJhdGlvbixEQz1pcGFwZXIsREM9Y29tP2Nl
# cnRpZmljYXRlUmV2b2NhdGlvbkxpc3Q/YmFzZT9vYmplY3RDbGFzcz1jUkxEaXN0
# cmlidXRpb25Qb2ludDCB8QYIKwYBBQUHAQEEgeQwgeEwNwYIKwYBBQUHMAKGK2h0
# dHA6Ly9jZXJ0LmlwYXBlci5jb20vQ2VydERhdGEvSVBTdWJDQS5jcnQwgaUGCCsG
# AQUFBzAChoGYbGRhcDovLy9DTj1JUFN1YkNBLENOPUFJQSxDTj1QdWJsaWMlMjBL
# ZXklMjBTZXJ2aWNlcyxDTj1TZXJ2aWNlcyxDTj1Db25maWd1cmF0aW9uLERDPWlw
# YXBlcixEQz1jb20/Y0FDZXJ0aWZpY2F0ZT9iYXNlP29iamVjdENsYXNzPWNlcnRp
# ZmljYXRpb25BdXRob3JpdHkwDQYJKoZIhvcNAQELBQADggIBAGryNXWYcEAErDeM
# nIORRnlVZchJd2qx6SdEmzX3YFYcoAqnLS6WMGyWLI6Ak2Yirf3xGrzanK42Jlkp
# D+tP0fBzAUXlcA9cb3w/HIvWFdM+OZqI1YCnLv7tDeJu6cmN9IFhbaowcYC3VgBM
# w8E3nVWfk99OxeGu/2Q0qZl2ry0LQfw+oI8smPMQekby1rR75EF2phMFef8nQtAz
# 5NeLWxAU7AgM1vWig4N8LtoaUK8BmRLwV2D39Iddhds0XkWxQfyjYtAhhGH4oMq3
# L7eFZ0Hi6psuAE3iWFhgXqgV+rlvX6f4Itt+UiktfkTxhuMAzQeNNhaKXwloD7/F
# 122bD7k0mORD9xx1+jHPbpC0FgfXFccNTfyBTagIylaKDtrEdg0+gUGNCBhlgZfX
# cM8QlT4aJ1IRB98mv58KbzNUPIVG8C+5bUCPhrFG4yo4AboP9706VplR/g8lT/nY
# vOD8uqs+orXNlJ4AXB9Wxn6iik4H5ZyioBF5Zhma8yG/Lb1pzXvmZtwwxA61JOOD
# HO8HQMJQDow4mkQFxs1HRx2k+UWzx0NfvnbzyR4ip39uS6UqXKMrLzIJ2/Gczm/i
# cmNqo9xRc+kXjJXjFFgnJguG85OY9ALrpBfCUvqf1N27DnCHsfHCLLXny6SU+MaH
# D69vPYBagfulKZqFHdaEdy/ZMPzoMYIEHDCCBBgCAQEwVjA/MRMwEQYKCZImiZPy
# LGQBGRYDY29tMRYwFAYKCZImiZPyLGQBGRYGaXBhcGVyMRAwDgYDVQQDEwdJUFN1
# YkNBAhNSAAAAHE3UPQickYhtAAAAAAAcMAkGBSsOAwIaBQCgeDAYBgorBgEEAYI3
# AgEMMQowCKACgAChAoAAMBkGCSqGSIb3DQEJAzEMBgorBgEEAYI3AgEEMBwGCisG
# AQQBgjcCAQsxDjAMBgorBgEEAYI3AgEVMCMGCSqGSIb3DQEJBDEWBBSgEY9ww5RS
# BazY4W7T7c5pZvn7MjANBgkqhkiG9w0BAQEFAASBgF49L2d07ezWDIFLJ8t9QX7T
# P98OydKyRgjmkrTyVGFqv8yw76VljPVnXHKJdnAw+UybYzRVV5yJdrB5KnKN9pEm
# JA1K3VO52irTAw/VafntxQIB+yp6FSoUqYUbrh6MmKy6cZ8KBO4ixxpDdhOC4vRB
# ZydIhCpJVU9iX+NeR+g7oYICojCCAp4GCSqGSIb3DQEJBjGCAo8wggKLAgEBMGgw
# UjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExKDAmBgNV
# BAMTH0dsb2JhbFNpZ24gVGltZXN0YW1waW5nIENBIC0gRzICEhEh1pmnZJc+8fhC
# fukZzFNBFDAJBgUrDgMCGgUAoIH9MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEw
# HAYJKoZIhvcNAQkFMQ8XDTE3MDcxMzEzNDExMFowIwYJKoZIhvcNAQkEMRYEFO56
# 5NMKPLyilROhpawfvkiMIcCMMIGdBgsqhkiG9w0BCRACDDGBjTCBijCBhzCBhAQU
# Y7gvq2H1g5CWlQULACScUCkz7HkwbDBWpFQwUjELMAkGA1UEBhMCQkUxGTAXBgNV
# BAoTEEdsb2JhbFNpZ24gbnYtc2ExKDAmBgNVBAMTH0dsb2JhbFNpZ24gVGltZXN0
# YW1waW5nIENBIC0gRzICEhEh1pmnZJc+8fhCfukZzFNBFDANBgkqhkiG9w0BAQEF
# AASCAQCtH3LL32oX2AaBveQYP1Jht7IC1w9AVE/lEb0t34kV8ObmqcZsvzXTD9B1
# ACDipOBXqBZ7xdx9X+XhkwKJ2kYRpZc0TKC5UxctsQhbaGUmnv2JY+CYCG7h0MVj
# LDjpxB6HTdzvO7bvqNb+SsuFDYDYrXqGXhE/mHWSw1EP9X6KmOHU3FIFkh2i3tsk
# hHgafzs62ePLjJmLXcHUZdM3S70yJ62UuMvrsQi/PbLX2JB1Hny5erQrIQaYekkn
# qo1kiSajvOXORptspZ1AAoX7zr9meV9X5WoSOncoH/Ptd56lvpZm8jQ9h71xyHMa
# WCtj6/sp+FMB/iZd4rECN+XePELO
# SIG # End signature block