Functions/Invoke-IntuneDocumentation.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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 |
Function Invoke-IntuneDocumentation(){ <# .DESCRIPTION This Script documents an Intune Tenant with almost all settings, which are available over the Graph API. NOTE: This no longer does Conditional Access The Script is using the PSWord and Microsoft.Graph.Intune Module. Therefore you have to install them first. .PARAMETER FullDocumentationPath Path including filename where the documentation should be created. The filename has to end with .docx. Note: If there is already a file present, the documentation witt be added at the end of the existing document. .PARAMETER UseTranslationBeta When using this parameter the API names will be translated to the labels used in the Intune Portal. Note: These Translations need to be created manually, only a few are translated yet. If you are willing to support this project. You can do this by translating the json files which are mentioned to you when you generate the documentation in your tenant. .EXAMPLE Invoke-IntuneDocumentation -FullDocumentationPath c:\temp\IntuneDoc.docx .NOTES Author: Thomas Kurth/baseVISION Co-Author: jflieben Co-Author: Robin Dadswell Date: 14.6.2020 History See Release Notes in Github. ExitCodes: 99001: Could not Write to LogFile 99002: Could not Write to Windows Log 99003: Could not Set ExitMessageRegistry #> [CmdletBinding()] Param( [ValidateScript({ if($_ -notmatch "(\.docx)"){ throw "The file specified in the path argument must be of type docx" } return $true })] [System.IO.FileInfo]$FullDocumentationPath = ".\IntuneDocumentation.docx", [switch]$UseTranslationBeta ) ## Manual Variable Definition ######################################################## #$DebugPreference = "Continue" $ScriptName = "DocumentIntune" $Script:NewTranslationFiles = @() if($UseTranslationBeta){ $Script:UseTranslation = $true } else { $Script:UseTranslation = $false } #region Initialization ######################################################## Write-Log "Start Script $Scriptname" #region Authentication Connect-MSGraph #endregion #region Main Script ######################################################## #region Save Path #endregion #region CopyTemplate if((Test-Path -Path $FullDocumentationPath)){ Write-Log "File already exists, does not use built-in template." -Type Warn } else { Copy-Item "$PSScriptRoot\..\Data\Template.docx" -Destination $FullDocumentationPath Update-WordText -FilePath $FullDocumentationPath -ReplacingText "DATE" -NewText (Get-Date -Format "HH:mm dd.MM.yyyy") try{ $org = Invoke-MSGraphRequest -Url /organization Update-WordText -FilePath $FullDocumentationPath -ReplacingText "TENANT" -NewText $org.value.displayName } catch{ Update-WordText -FilePath $FullDocumentationPath -ReplacingText "TENANT" -NewText "" } } #endregion #region Document Apps $Intune_Apps = @() Get-MobileAppsBeta | ForEach-Object { $App_Assignment = Get-IntuneMobileAppAssignment -mobileAppId $_.id if($App_Assignment){ $Intune_App = New-Object -Type PSObject $Intune_App | Add-Member Noteproperty "Publisher" $_.publisher $Intune_App | Add-Member Noteproperty "DisplayName" $_.displayName $Intune_App | Add-Member Noteproperty "Type" (Format-MsGraphData $_.'@odata.type') $Assignments = @() foreach($Assignment in $App_Assignment) { if($null -ne $Assignment.target.groupId){ $Assignments += "$((Get-AADGroup -groupid $Assignment.target.groupId).displayName)`n - Intent:$($Assignment.intent)" } else { $Assignments += "$(($Assignment.target.'@odata.type' -replace "#microsoft.graph.",''))`n - Intent:$($Assignment.intent)" } } $Intune_App | Add-Member Noteproperty "Assignments" ($Assignments -join "`n") $Intune_Apps += $Intune_App } } if($null -ne $Intune_Apps){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Applications" $Intune_Apps | Sort-Object Publisher,DisplayName | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Contents -Design LightListAccent2 } #endregion #region Document App protection policies $MAMs = Get-IntuneAppProtectionPolicy if($null -ne $MAMs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "App Protection Policies" foreach($MAM in $MAMs){ write-Log "App Protection Policy: $($MAM.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $MAM.displayName $ht2 = @{} $MAM.psobject.properties | ForEach-Object { $ht2[(Format-MsGraphData $($_.Name))] = (Format-MsGraphData $($_.Value)) } ($ht2.GetEnumerator() | Sort-Object -Property Name | Select-Object Name,Value) | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 if($MAM.'@odata.type' -eq "#microsoft.graph.iosManagedAppProtection"){ $MAMA = Get-DeviceAppManagement_IosManagedAppProtections_Assignments -iosManagedAppProtectionId $MAM.id -iosManagedAppProtectionODataType microsoft.graph.iosManagedAppProtection } if($MAM.'@odata.type' -eq "#microsoft.graph.androidManagedAppProtection"){ $MAMA = Get-DeviceAppManagement_AndroidManagedAppProtections_Assignments -androidManagedAppProtectionId $MAM.id -androidManagedAppProtectionODataType microsoft.graph.androidManagedAppProtection } if($MAM.'@odata.type' -eq "#microsoft.graph.mdmWindowsInformationProtectionPolicy"){ $MAMA = Get-DeviceAppManagement_WindowsInformationProtectionPolicies_Assignments -windowsInformationProtectionPolicyId $MAM.id -windowsInformationProtectionPolicyODataType microsoft.graph.windowsInformationProtectionPolicy } Invoke-PrintAssignmentDetail -Assignments $MAMA } } #endregion #region Document App configuration policies $MACs = Get-DeviceAppManagement_MobileAppConfigurations if($null -ne $MACs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "App Configuration Policies" foreach($MAC in $MACs){ write-Log "App Protection Policy: $($MAC.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $MAC.displayName $ht2 = @{} $MAC.encodedSettingXml = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($MAC.encodedSettingXml)) $MAC.psobject.properties | ForEach-Object { $ht2[(Format-MsGraphData $($_.Name))] = (Format-MsGraphData $($_.Value)) } ($ht2.GetEnumerator() | Sort-Object -Property Name | Select-Object Name,Value) | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 $id = $MAM.id $MAMA = Get-DeviceAppManagement_MobileAppConfigurations_Assignments -managedDeviceMobileAppConfigurationId $id Invoke-PrintAssignmentDetail -Assignments $MAMA } } #endregion #region Document Compliance Policies $DCPs = Get-IntuneDeviceCompliancePolicy if($null -ne $DCPs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Compliance Policies" foreach($DCP in $DCPs){ write-Log "Device Compliance Policy: $($DCP.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $DCP.displayName $ht2 = @{} $DCP.psobject.properties | ForEach-Object { $ht2[(Format-MsGraphData $($_.Name))] = (Format-MsGraphData $($_.Value)) } ($ht2.GetEnumerator() | Sort-Object -Property Name | Select-Object Name,Value) | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 $id = $DCP.id $DCPA = Get-IntuneDeviceCompliancePolicyAssignment -deviceCompliancePolicyId $id Invoke-PrintAssignmentDetail -Assignments $DCPA } } #endregion #region Security Baselines $SBs = Get-SecBaselinesBeta if($null -ne $SBs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Security Baselines" foreach($SB in $SBs){ write-Log "Security Baselines Policy: $($SB.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $SB.displayName $SB.Settings | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 Invoke-PrintAssignmentDetail -Assignments $SB.Assignments } } #endregion #region Document T&C write-Log "Terms and Conditions" $GAndTs = Get-IntuneTermsAndConditions if($null -ne $GAndTs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Terms and Conditions" foreach($GAndT in $GAndTs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $GAndT.displayName $GAndT | Select-Object -Property id,@{Name="Created at";Expression={$_.createdDateTime}},@{Name="Modified at";Expression={$_.lastModifiedDateTime}},@{Name="Displayname";Expression={$_.displayName}},@{Name="Title";Expression={$_.title}},@{Name="Version";Expression={$_.version}} | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Contents -Design LightListAccent2 $DCPA = Get-DeviceManagement_TermsAndConditions_Assignments -termsAndConditionId $GAndT.id Invoke-PrintAssignmentDetail -Assignments $DCPA } } #endregion #region Document Device Configurations Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Device Configuration" $DCPs = Get-ConfigurationProfileBeta foreach($DCP in $DCPs){ write-Log "Device Compliance Policy: $($DCP.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $DCP.displayName Invoke-PrintTable -Properties $DCP.psobject.properties -TypeName $DCP.'@odata.type' $id = $DCP.id $DCPA = Get-IntuneDeviceConfigurationPolicyAssignment -deviceConfigurationId $id Invoke-PrintAssignmentDetail -Assignments $DCPA } $ADMXPolicies = Get-ADMXBasedConfigurationProfile foreach($ADMXPolicy in $ADMXPolicies){ write-Log "Device Configuration (ADMX): $($ADMXPolicy.DisplayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $ADMXPolicy.DisplayName $ADMXPolicy.Settings | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 $DCPA = Get-ADMXBasedConfigurationProfile_Assignment -ADMXBasedConfigurationProfileId $ADMXPolicy.Id Invoke-PrintAssignmentDetail -Assignments $DCPA } #endregion #region Device Management Scripts (PowerShell) Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Device Management Scripts" $PSScripts = Get-DeviceManagementScript foreach($PSScript in $PSScripts){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $PSScript.displayName $ht2 = @{} $PSScript.psobject.properties | ForEach-Object { if($_.Name -ne "scriptContent"){ $ht2[(Format-MsGraphData $($_.Name))] = "$($_.Value)" } } ($ht2.GetEnumerator() | Sort-Object -Property Name | Select-Object Name,Value) | Add-WordTable -FilePath $FullDocumentationPath -AutoFitStyle Window -Design LightListAccent2 $DCPA = Get-DeviceManagementScript_Assignment -DeviceManagementScriptId $ht2.id Invoke-PrintAssignmentDetail -Assignments $DCPA Add-WordText -FilePath $FullDocumentationPath -Heading Heading3 -Text "Script" $PSScript.scriptContent | Add-WordText -FilePath $FullDocumentationPath -Size 10 -Italic -FontFamily "Courier New" } #endregion #region AutoPilot Configuration $AutoPilotConfigs = Get-WindowsAutopilotConfig if($null -ne $AutoPilotConfigs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "AutoPilot Configuration" foreach($APC in $AutoPilotConfigs){ write-Log "AutoPilot Config: $($APC.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $APC.displayName Invoke-PrintTable -Properties $APC.psobject.properties -TypeName $APC.'@odata.type' } } #endregion #region Enrollment Configuration $EnrollmentStatusPage = Get-EnrollmentStatusPage if($null -ne $EnrollmentStatusPage){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Enrollment Configuration" foreach($ESP in $EnrollmentStatusPage){ write-Log "Enrollment Status Page Config: $($ESP.displayName)" $ESPtype = $ESP.'@odata.type' switch($ESPtype){ "#microsoft.graph.windows10EnrollmentCompletionPageConfiguration" { $ESPtype = "ESP" } "#microsoft.graph.deviceEnrollmentLimitConfiguration" { $ESPtype = "Enrollment Limit" } "#microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration" { $ESPtype = "Platform Restrictions" } "#microsoft.graph.deviceEnrollmentWindowsHelloForBusinessConfiguration" { $ESPtype = "Windows Hello for Business" } } Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text "$($ESPtype) - $($ESP.displayName)" Invoke-PrintTable -Properties $ESP.psobject.properties -TypeName $ESP.'@odata.type' $DCPA = Get-DeviceManagement_DeviceEnrollmentConfigurations_Assignments -deviceEnrollmentConfigurationId $ESP.id Invoke-PrintAssignmentDetail -Assignments $DCPA } } #endregion #region Custom Roles $CustomRoles = Get-DeviceManagement_RoleDefinitions | Where-Object { $_.isBuiltin -eq $false } if($null -ne $CustomRoles){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Custom Roles" foreach($CustomRole in $CustomRoles){ write-Log "Custom role: $($CustomRole.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $CustomRole.displayName $CustomRole.rolePermissions.resourceActions.allowedResourceActions | Add-WordText -FilePath $FullDocumentationPath -Size 11 } } #endregion #region Apple Push Certificate $VPPs = Get-IntuneVppToken $APNs = Get-IntuneApplePushNotificationCertificate Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Apple Configurations" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text "Apple Push Certificate" foreach($APN in $APNs){ write-Log "AutoPilot Config: $($APN.appleIdentifier)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading3 -Text $APN.appleIdentifier Invoke-PrintTable -Properties $APN.psobject.properties -TypeName "applePushNotificationCertificate" } Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text "Apple VPP Tokens" foreach($VPP in $VPPs){ write-Log "VPP Config: $($VPP.appleId)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading3 -Text $VPP.appleId Invoke-PrintTable -Properties $VPP.psobject.properties -TypeName "appleVPPCertificate" } #endregion #region Device Categories $Cats = Get-IntuneDeviceCategory if($null -ne $Cats){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Device Categories" write-Log "Device Categories: $($Cats.count)" foreach($Cat in $Cats){ Add-WordText -FilePath $FullDocumentationPath -Text (" - " + $Cat.displayName) -Size 10 } } #endregion #region Exchange Connection $exch = Get-IntuneExchangeConnector if($null -ne $exch){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Exchange Connector" write-Log "Exchange Connector: $($exch.serverName)" Invoke-PrintTable -Properties $exch.psobject.properties -TypeName "ExchangeConnector" } #endregion #region Partner Configuration $partnerConfigs = Get-IntuneDeviceManagementPartner if($null -ne $partnerConfigs){ Add-WordText -FilePath $FullDocumentationPath -Heading Heading1 -Text "Partner Connections" foreach($partnerConfig in $partnerConfigs){ write-Log "Partner Config: $($partnerConfig.displayName)" Add-WordText -FilePath $FullDocumentationPath -Heading Heading2 -Text $partnerConfig.displayName Invoke-PrintTable -Properties $partnerConfig.psobject.properties -TypeName "PartnerConfiguration" } } #endregion #endregion #region Finishing ######################################################## Write-Log "Press Ctrl + A and then F9 to Update the table of contents and other dynamic fields in the Word document." if($Script:NewTranslationFiles.Count -gt 0 -and $Script:UseTranslation){ Write-Log "You used the option to translate API properties. Some of the configurations of your tenant could not be translated because translations are missing." -Type Warn foreach($file in ($Script:NewTranslationFiles | Select-Object -Unique)){ Write-Log " - $($file.Replace('Internal\..\',''))" -Type Warn } Write-Log "You can support the project by translating and submitting the files as issue on the project page. Then it will be included for the future." -Type Warn Write-Log "Follow the guide here https://github.com/ThomasKur/IntuneDocumentation/blob/master/AddTranslation.md" -Type Warn } Write-Log "End Script $Scriptname" #endregion } # SIG # Begin signature block # MIIZwgYJKoZIhvcNAQcCoIIZszCCGa8CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUOwNmt/yR3YlCD6RcOmr8Vnyn # Vv2gghUDMIID7jCCA1egAwIBAgIQfpPr+3zGTlnqS5p31Ab8OzANBgkqhkiG9w0B # AQUFADCBizELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTEUMBIG # A1UEBxMLRHVyYmFudmlsbGUxDzANBgNVBAoTBlRoYXd0ZTEdMBsGA1UECxMUVGhh # d3RlIENlcnRpZmljYXRpb24xHzAdBgNVBAMTFlRoYXd0ZSBUaW1lc3RhbXBpbmcg # Q0EwHhcNMTIxMjIxMDAwMDAwWhcNMjAxMjMwMjM1OTU5WjBeMQswCQYDVQQGEwJV # UzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xMDAuBgNVBAMTJ1N5bWFu # dGVjIFRpbWUgU3RhbXBpbmcgU2VydmljZXMgQ0EgLSBHMjCCASIwDQYJKoZIhvcN # AQEBBQADggEPADCCAQoCggEBALGss0lUS5ccEgrYJXmRIlcqb9y4JsRDc2vCvy5Q # WvsUwnaOQwElQ7Sh4kX06Ld7w3TMIte0lAAC903tv7S3RCRrzV9FO9FEzkMScxeC # i2m0K8uZHqxyGyZNcR+xMd37UWECU6aq9UksBXhFpS+JzueZ5/6M4lc/PcaS3Er4 # ezPkeQr78HWIQZz/xQNRmarXbJ+TaYdlKYOFwmAUxMjJOxTawIHwHw103pIiq8r3 # +3R8J+b3Sht/p8OeLa6K6qbmqicWfWH3mHERvOJQoUvlXfrlDqcsn6plINPYlujI # fKVOSET/GeJEB5IL12iEgF1qeGRFzWBGflTBE3zFefHJwXECAwEAAaOB+jCB9zAd # BgNVHQ4EFgQUX5r1blzMzHSa1N197z/b7EyALt0wMgYIKwYBBQUHAQEEJjAkMCIG # CCsGAQUFBzABhhZodHRwOi8vb2NzcC50aGF3dGUuY29tMBIGA1UdEwEB/wQIMAYB # Af8CAQAwPwYDVR0fBDgwNjA0oDKgMIYuaHR0cDovL2NybC50aGF3dGUuY29tL1Ro # YXd0ZVRpbWVzdGFtcGluZ0NBLmNybDATBgNVHSUEDDAKBggrBgEFBQcDCDAOBgNV # HQ8BAf8EBAMCAQYwKAYDVR0RBCEwH6QdMBsxGTAXBgNVBAMTEFRpbWVTdGFtcC0y # MDQ4LTEwDQYJKoZIhvcNAQEFBQADgYEAAwmbj3nvf1kwqu9otfrjCR27T4IGXTdf # plKfFo3qHJIJRG71betYfDDo+WmNI3MLEm9Hqa45EfgqsZuwGsOO61mWAK3ODE2y # 0DGmCFwqevzieh1XTKhlGOl5QGIllm7HxzdqgyEIjkHq3dlXPx13SYcqFgZepjhq # IhKjURmDfrYwggSjMIIDi6ADAgECAhAOz/Q4yP6/NW4E2GqYGxpQMA0GCSqGSIb3 # DQEBBQUAMF4xCzAJBgNVBAYTAlVTMR0wGwYDVQQKExRTeW1hbnRlYyBDb3Jwb3Jh # dGlvbjEwMC4GA1UEAxMnU3ltYW50ZWMgVGltZSBTdGFtcGluZyBTZXJ2aWNlcyBD # QSAtIEcyMB4XDTEyMTAxODAwMDAwMFoXDTIwMTIyOTIzNTk1OVowYjELMAkGA1UE # BhMCVVMxHTAbBgNVBAoTFFN5bWFudGVjIENvcnBvcmF0aW9uMTQwMgYDVQQDEytT # eW1hbnRlYyBUaW1lIFN0YW1waW5nIFNlcnZpY2VzIFNpZ25lciAtIEc0MIIBIjAN # BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAomMLOUS4uyOnREm7Dv+h8GEKU5Ow # mNutLA9KxW7/hjxTVQ8VzgQ/K/2plpbZvmF5C1vJTIZ25eBDSyKV7sIrQ8Gf2Gi0 # jkBP7oU4uRHFI/JkWPAVMm9OV6GuiKQC1yoezUvh3WPVF4kyW7BemVqonShQDhfu # ltthO0VRHc8SVguSR/yrrvZmPUescHLnkudfzRC5xINklBm9JYDh6NIipdC6Anqh # d5NbZcPuF3S8QYYq3AhMjJKMkS2ed0QfaNaodHfbDlsyi1aLM73ZY8hJnTrFxeoz # C9Lxoxv0i77Zs1eLO94Ep3oisiSuLsdwxb5OgyYI+wu9qU+ZCOEQKHKqzQIDAQAB # o4IBVzCCAVMwDAYDVR0TAQH/BAIwADAWBgNVHSUBAf8EDDAKBggrBgEFBQcDCDAO # BgNVHQ8BAf8EBAMCB4AwcwYIKwYBBQUHAQEEZzBlMCoGCCsGAQUFBzABhh5odHRw # Oi8vdHMtb2NzcC53cy5zeW1hbnRlYy5jb20wNwYIKwYBBQUHMAKGK2h0dHA6Ly90 # cy1haWEud3Muc3ltYW50ZWMuY29tL3Rzcy1jYS1nMi5jZXIwPAYDVR0fBDUwMzAx # oC+gLYYraHR0cDovL3RzLWNybC53cy5zeW1hbnRlYy5jb20vdHNzLWNhLWcyLmNy # bDAoBgNVHREEITAfpB0wGzEZMBcGA1UEAxMQVGltZVN0YW1wLTIwNDgtMjAdBgNV # HQ4EFgQURsZpow5KFB7VTNpSYxc/Xja8DeYwHwYDVR0jBBgwFoAUX5r1blzMzHSa # 1N197z/b7EyALt0wDQYJKoZIhvcNAQEFBQADggEBAHg7tJEqAEzwj2IwN3ijhCcH # bxiy3iXcoNSUA6qGTiWfmkADHN3O43nLIWgG2rYytG2/9CwmYzPkSWRtDebDZw73 # BaQ1bHyJFsbpst+y6d0gxnEPzZV03LZc3r03H0N45ni1zSgEIKOq8UvEiCmRDoDR # EfzdXHZuT14ORUZBbg2w6jiasTraCXEQ/Bx5tIB7rGn0/Zy2DBYr8X9bCT2bW+IW # yhOBbQAuOA2oKY8s4bL0WqkBrxWcLC9JG9siu8P+eJRRw4axgohd8D20UaF5Mysu # e7ncIAkTcetqGVvP6KUwVyyJST+5z3/Jvz4iaGNTmr1pdKzFHTx/kuDDvBzYBHUw # ggWtMIIElaADAgECAhAEP0tn9l4Sf9gdog2gb/SWMA0GCSqGSIb3DQEBBQUAMGUx # CzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 # dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0IEVWIENvZGUgU2lnbmlu # ZyBDQTAeFw0yMDAzMDYwMDAwMDBaFw0yMzAzMTUxMjAwMDBaMIHOMRMwEQYLKwYB # BAGCNzwCAQMTAkNIMRowGAYLKwYBBAGCNzwCAQITCVNvbG90aHVybjEdMBsGA1UE # DwwUUHJpdmF0ZSBPcmdhbml6YXRpb24xGDAWBgNVBAUTD0NIRS0zMTQuNjM5LjUy # MzELMAkGA1UEBhMCQ0gxEjAQBgNVBAgTCVNvbG90aHVybjERMA8GA1UEBwwIRMOk # bmlrZW4xFjAUBgNVBAoTDWJhc2VWSVNJT04gQUcxFjAUBgNVBAMTDWJhc2VWSVNJ # T04gQUcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCn0xZCT8yT681H # ZVY8gtUlURKywy8Nfq8uiv/jJJU+/Tf4HHXXJzHo96ZFo/WOWMD3WMWRYRnpj95P # ZbfLaF+ki/PURRhp9/oT/p5O3zTv4Jqnig7AOeIL5dt9W5Uij9rDOEZhmFpVT08K # CKhMNMMu7MhBs+uHBlyQ70j5H2IjBjePtEDYcakbv1RNDK5hU+k2UqKZEQSaqt2+ # riewxS2R4RUvZJ5nRraf4pNYqDdem2H0vJ17zHsG+ZB0YFLk/P3i6r4tJEAksYAU # kuJsFDt0Yz9xM2qmG2Rr4iw7AUTfE5Gx0NNWD/fMWFP/2sD3VkHA8Mz8PAokDfFz # 21OqYrXPAgMBAAGjggHtMIIB6TAfBgNVHSMEGDAWgBStaQZw/IAbFrOpGJRrlAKG # XvcnjDAdBgNVHQ4EFgQURdlk/2RkqKDvZs8sol0UhzmJTCowNwYDVR0RBDAwLqAs # BggrBgEFBQcIA6AgMB4MHENILVNPTE9USFVSTi1DSEUtMzE0LjYzOS41MjMwDgYD # VR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMDMHMGA1UdHwRsMGowM6Ax # oC+GLWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9FVkNvZGVTaWduaW5nLWcxLmNy # bDAzoDGgL4YtaHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0VWQ29kZVNpZ25pbmct # ZzEuY3JsMEsGA1UdIAREMEIwNwYJYIZIAYb9bAMCMCowKAYIKwYBBQUHAgEWHGh0 # dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwBwYFZ4EMAQMweQYIKwYBBQUHAQEE # bTBrMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQwYIKwYB # BQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEVWQ29k # ZVNpZ25pbmdDQS5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQUFAAOCAQEA # GYerL9YA8gW4cx7nWEaDFpN2XnaY4+90Nl8gaj6aeQj6kwIfjWLWAzByDdVNvxSk # rwXdfo3dkG5DNNI3wPR2SE2iyImDF6zXTThccBqkwE1x1Tb5qfhaA48jf18f8Jbv # VgvtbZWXph1b+ALyD2911b34Qt6cYmolg19vkmWXZUADRjA11S3VHhhH4GLKeHoE # 23jSSs69tQPNC1jdS+Rx6yO/Ya14UrDwOrJo1qSn2xTilf9s77mSxRJCpL8Cd1PU # HPvugUFHLw9nqOQAMUb7cHdDUREs7Brvfcyo0qRx7lyKjIM1d0wGtiBz+8kQJcSC # dK9S8HGSD3y4R1N++Y8gYTCCBrUwggWdoAMCAQICEA3Q4zdKyVvb+mtDSypI7AYw # DQYJKoZIhvcNAQEFBQAwbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0 # IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNl # cnQgSGlnaCBBc3N1cmFuY2UgRVYgUm9vdCBDQTAeFw0xMjA0MTgxMjAwMDBaFw0y # NzA0MTgxMjAwMDBaMGUxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJ # bmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAiBgNVBAMTG0RpZ2lDZXJ0 # IEVWIENvZGUgU2lnbmluZyBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC # ggEBALkGdBxdtCCqqSGoKkJGqyUgFyXLIo+QoqAxa4MFda+yDnwSSXtqhmSED4Pc # ZLmxbhYFPhyVuefniG24YoGQedTd9eKW+cO1iCNXShrPcSnpCACPtZjjpzL9rC64 # 9JNT9Ao5Q5Gv1Wvo1J9GvY49q+L5K9TqAEBmJLfof7REdY14mq4xwTfPTh9b+EVK # 1z/CyZIGZL7eBoqv0OiKsfAsiABvC9yFp0zLBr/WLioybilxr44i8w/Q2JhILagI # y7aLI8Jj4LZz6299Jk+L9zQ9N4YMt3gn9MKG20NrWvg9PfTosGJWxufteKH7/Xpy # TzJlxHzDxHegBDIy7Y8/r4bdftECAwEAAaOCA1gwggNUMBIGA1UdEwEB/wQIMAYB # Af8CAQAwDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMDMH8GCCsG # AQUFBwEBBHMwcTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # MEkGCCsGAQUFBzAChj1odHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3J0MIGPBgNVHR8EgYcwgYQwQKA+oDyG # Omh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEhpZ2hBc3N1cmFuY2VF # VlJvb3RDQS5jcmwwQKA+oDyGOmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdp # Q2VydEhpZ2hBc3N1cmFuY2VFVlJvb3RDQS5jcmwwggHEBgNVHSAEggG7MIIBtzCC # AbMGCWCGSAGG/WwDAjCCAaQwOgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cuZGlnaWNl # cnQuY29tL3NzbC1jcHMtcmVwb3NpdG9yeS5odG0wggFkBggrBgEFBQcCAjCCAVYe # ggFSAEEAbgB5ACAAdQBzAGUAIABvAGYAIAB0AGgAaQBzACAAQwBlAHIAdABpAGYA # aQBjAGEAdABlACAAYwBvAG4AcwB0AGkAdAB1AHQAZQBzACAAYQBjAGMAZQBwAHQA # YQBuAGMAZQAgAG8AZgAgAHQAaABlACAARABpAGcAaQBDAGUAcgB0ACAAQwBQAC8A # QwBQAFMAIABhAG4AZAAgAHQAaABlACAAUgBlAGwAeQBpAG4AZwAgAFAAYQByAHQA # eQAgAEEAZwByAGUAZQBtAGUAbgB0ACAAdwBoAGkAYwBoACAAbABpAG0AaQB0ACAA # bABpAGEAYgBpAGwAaQB0AHkAIABhAG4AZAAgAGEAcgBlACAAaQBuAGMAbwByAHAA # bwByAGEAdABlAGQAIABoAGUAcgBlAGkAbgAgAGIAeQAgAHIAZQBmAGUAcgBlAG4A # YwBlAC4wHQYDVR0OBBYEFK1pBnD8gBsWs6kYlGuUAoZe9yeMMB8GA1UdIwQYMBaA # FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQCeW5Y6LhKI # rKsBbaSfdeQBh6OlMte8uql+o9YUF/fCE2t8c48rauUPJllosI4lm2zv+myTkgjB # Tc9FnpxG1h50oZsUo/oBL0qxAeFyQEgRE2i5Np2RS9fCORIQwcTcu2IUFCphXU84 # fGYfxhv/rb5Pf5Rbc0MAD01zt1HPDvZ3wFvNNIzZYxOqDmER1vKOJ/y0e7i5ESCR # hnjqDtQo/yrVJDjoN7LslrufvEoWUOFev1F9I6Ayx8GUnnrJwCaizCWHoBJ+dJ8t # jbHI54S+udHp3rtqTohzceEiOMskh+lzflGy/5jrTn4v4MoO+rNe0boFQqhIn4P2 # P8TKqN9ooFBhMYIEKTCCBCUCAQEweTBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMM # RGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQD # ExtEaWdpQ2VydCBFViBDb2RlIFNpZ25pbmcgQ0ECEAQ/S2f2XhJ/2B2iDaBv9JYw # CQYFKw4DAhoFAKB4MBgGCisGAQQBgjcCAQwxCjAIoAKAAKECgAAwGQYJKoZIhvcN # AQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUw # IwYJKoZIhvcNAQkEMRYEFKZSr/K7in+uwOQe49Js9FRKi/uFMA0GCSqGSIb3DQEB # AQUABIIBABqzV3Fr/2UL9ApBf2TvNRXIOsdKVatYJcy7m3xlZJTEwL90vTgsSgsc # XLZS7nj8MTwfXuqn5jjiKaF1a6qh2Q4SKjwT/L0d6PwTM3Z1ImIsbZHMijckA92E # e3nkaLc+UFCKr0MTQA0P1Lh4hU2doUQE9rfCuW/TyLpilJE2/x9E6oqqm7gZ+7gv # niVFYYtc2QkB3qGqpzYJdwhFuqGZlIY/ePUEhOSI2aZUwhoHvxnV0prKmfDgg7xm # 06A7BKMHH6DoGhEmeIPQIozg+H0HPhN7q+RsLm91BfCFBgdP2H1XR9ZIVobEXFls # z+1lPS1rPFfjlzVAqOPm46KfQG+S4gyhggILMIICBwYJKoZIhvcNAQkGMYIB+DCC # AfQCAQEwcjBeMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9y # YXRpb24xMDAuBgNVBAMTJ1N5bWFudGVjIFRpbWUgU3RhbXBpbmcgU2VydmljZXMg # Q0EgLSBHMgIQDs/0OMj+vzVuBNhqmBsaUDAJBgUrDgMCGgUAoF0wGAYJKoZIhvcN # AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMjAwNjE1MDY0OTEyWjAj # BgkqhkiG9w0BCQQxFgQUk28yyRcyoUOMIWcto/hb50jvOPkwDQYJKoZIhvcNAQEB # BQAEggEAXJlErSShuJMXXp/ul9MRfdcfQr9LWBh/FCC9GJS7HCjYvE4HoHjxxO8G # //tcfl/cJqKZXhHaZ+EtJ3KDpQfWMdRsxo4w8Y6dR4AKI+B3a765alp/Ngy4CJOP # bYVsd3FQ5AQqY5cQY7dkGb8gY8Wvgf9oCao/GyqFL6QD2nDGjuh5tLJziXahVXKG # CBIaetwWzdNK+qLA96xdPDi6GcSzrGY9vo8EICXhN7fqBydNYGyXK1J4b7FjzJBy # 7rtNh7Zsn9Zx/KY6VVrvzqXcUU5pXAjsNTFr6aUAJsRub9uzUidDyDR0+lDKM5P+ # i9sEQrtjNRiooVdU29BrxXJTMAY3pg== # SIG # End signature block |