Az.psm1
# # Script module for module 'Az' that is executed when 'Az' is imported in a PowerShell session. # # Generated by: Microsoft Corporation # # Generated on: 11/29/2018 20:15:49 # $PSDefaultParameterValues.Clear() Set-StrictMode -Version Latest function Test-DotNet { try { if ((Get-PSDrive 'HKLM' -ErrorAction Ignore) -and (-not (Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\' -ErrorAction Stop | Get-ItemPropertyValue -ErrorAction Stop -Name Release | Where { $_ -ge 461808 }))) { throw ".NET Framework versions lower than 4.7.2 are not supported in Az. Please upgrade to .NET Framework 4.7.2 or higher." } } catch [System.Management.Automation.DriveNotFoundException] { Write-Verbose ".NET Framework version check failed." } } if ($true -and ($PSEdition -eq 'Desktop')) { if ($PSVersionTable.PSVersion -lt [Version]'5.1') { throw "PowerShell versions lower than 5.1 are not supported in Az. Please upgrade to PowerShell 5.1 or higher." } Test-DotNet } if (Test-Path -Path "$PSScriptRoot\StartupScripts" -ErrorAction Ignore) { Get-ChildItem "$PSScriptRoot\StartupScripts" -ErrorAction Stop | ForEach-Object { . $_.FullName } } if (Get-Module AzureRM.profile -ErrorAction Ignore) { Write-Warning "AzureRM.Profile already loaded. Az and AzureRM module cannot be run side-by-side, please run 'Uninstall-AzureRm' to remove all AzureRm modules from your machine. More information can be found here: https://aka.ms/azps-migration-guide" throw "AzureRM.Profile already loaded. Az and AzureRM module cannot be run side-by-side, please run 'Uninstall-AzureRm' to remove all AzureRm modules from your machine. More information can be found here: https://aka.ms/azps-migration-guide" } $preloadPath = (Join-Path $PSScriptRoot -ChildPath "PreloadAssemblies") if($PSEdition -eq 'Desktop' -and (Test-Path $preloadPath -ErrorAction Ignore)) { try { Get-ChildItem -ErrorAction Stop -Path $preloadPath -Filter "*.dll" | ForEach-Object { Add-Type -Path $_.FullName -ErrorAction Ignore | Out-Null } } catch {} } $netCorePath = (Join-Path $PSScriptRoot -ChildPath "NetCoreAssemblies") if($PSEdition -eq 'Core' -and (Test-Path $netCorePath -ErrorAction Ignore)) { try { $loadedAssemblies = ([System.AppDomain]::CurrentDomain.GetAssemblies() | %{New-Object -TypeName System.Reflection.AssemblyName -ArgumentList $_.FullName} ) Get-ChildItem -ErrorAction Stop -Path $netCorePath -Filter "*.dll" | ForEach-Object { $assemblyName = ([System.Reflection.AssemblyName]::GetAssemblyName($_.FullName)) $matches = ($loadedAssemblies | Where-Object {$_.Name -eq $assemblyName.Name}) if (-not $matches) { Add-Type -Path $_.FullName -ErrorAction Ignore | Out-Null } } } catch {} } $module = Get-Module Az.Profile if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Profile version 0.7.0. An earlier version of Az.Profile is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Profile -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Aks if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Aks version 0.7.0. An earlier version of Az.Aks is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Aks -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.AnalysisServices if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.AnalysisServices version 0.7.0. An earlier version of Az.AnalysisServices is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.AnalysisServices -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ApiManagement if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ApiManagement version 0.7.0. An earlier version of Az.ApiManagement is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ApiManagement -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ApplicationInsights if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ApplicationInsights version 0.7.0. An earlier version of Az.ApplicationInsights is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ApplicationInsights -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Automation if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Automation version 0.7.0. An earlier version of Az.Automation is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Automation -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Batch if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Batch version 0.7.0. An earlier version of Az.Batch is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Batch -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Billing if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Billing version 0.7.0. An earlier version of Az.Billing is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Billing -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Cdn if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Cdn version 0.7.0. An earlier version of Az.Cdn is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Cdn -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.CognitiveServices if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.CognitiveServices version 0.7.0. An earlier version of Az.CognitiveServices is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.CognitiveServices -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Compute if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Compute version 0.7.0. An earlier version of Az.Compute is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Compute -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Consumption if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Consumption version 0.7.0. An earlier version of Az.Consumption is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Consumption -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ContainerInstance if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ContainerInstance version 0.7.0. An earlier version of Az.ContainerInstance is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ContainerInstance -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ContainerRegistry if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ContainerRegistry version 0.7.0. An earlier version of Az.ContainerRegistry is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ContainerRegistry -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.DataLakeAnalytics if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.DataLakeAnalytics version 0.7.0. An earlier version of Az.DataLakeAnalytics is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.DataLakeAnalytics -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.DataLakeStore if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.DataLakeStore version 0.7.0. An earlier version of Az.DataLakeStore is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.DataLakeStore -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.DevTestLabs if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.DevTestLabs version 0.7.0. An earlier version of Az.DevTestLabs is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.DevTestLabs -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Dns if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Dns version 0.7.0. An earlier version of Az.Dns is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Dns -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.EventGrid if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.EventGrid version 0.7.0. An earlier version of Az.EventGrid is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.EventGrid -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.EventHub if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.EventHub version 0.7.0. An earlier version of Az.EventHub is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.EventHub -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Insights if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Insights version 0.7.0. An earlier version of Az.Insights is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Insights -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.IotHub if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.IotHub version 0.7.0. An earlier version of Az.IotHub is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.IotHub -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.KeyVault if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.KeyVault version 0.7.0. An earlier version of Az.KeyVault is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.KeyVault -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.LogicApp if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.LogicApp version 0.7.0. An earlier version of Az.LogicApp is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.LogicApp -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.MachineLearning if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.MachineLearning version 0.7.0. An earlier version of Az.MachineLearning is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.MachineLearning -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.MachineLearningCompute if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.MachineLearningCompute version 0.7.0. An earlier version of Az.MachineLearningCompute is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.MachineLearningCompute -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.MarketplaceOrdering if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.MarketplaceOrdering version 0.7.0. An earlier version of Az.MarketplaceOrdering is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.MarketplaceOrdering -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Media if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Media version 0.7.0. An earlier version of Az.Media is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Media -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Network if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Network version 0.7.0. An earlier version of Az.Network is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Network -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.NotificationHubs if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.NotificationHubs version 0.7.0. An earlier version of Az.NotificationHubs is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.NotificationHubs -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.PolicyInsights if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.PolicyInsights version 0.7.0. An earlier version of Az.PolicyInsights is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.PolicyInsights -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.OperationalInsights if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.OperationalInsights version 0.7.0. An earlier version of Az.OperationalInsights is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.OperationalInsights -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.PowerBIEmbedded if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.PowerBIEmbedded version 0.7.0. An earlier version of Az.PowerBIEmbedded is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.PowerBIEmbedded -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.RecoveryServices if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.RecoveryServices version 0.7.0. An earlier version of Az.RecoveryServices is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.RecoveryServices -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.RedisCache if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.RedisCache version 0.7.0. An earlier version of Az.RedisCache is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.RedisCache -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Relay if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Relay version 0.7.0. An earlier version of Az.Relay is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Relay -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Resources if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Resources version 0.7.0. An earlier version of Az.Resources is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Resources -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ServiceBus if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ServiceBus version 0.7.0. An earlier version of Az.ServiceBus is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ServiceBus -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.ServiceFabric if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.ServiceFabric version 0.7.0. An earlier version of Az.ServiceFabric is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.ServiceFabric -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.SignalR if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.SignalR version 0.7.0. An earlier version of Az.SignalR is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.SignalR -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Sql if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Sql version 0.7.0. An earlier version of Az.Sql is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Sql -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Storage if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Storage version 0.7.0. An earlier version of Az.Storage is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Storage -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.StreamAnalytics if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.StreamAnalytics version 0.7.0. An earlier version of Az.StreamAnalytics is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.StreamAnalytics -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Tags if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Tags version 0.7.0. An earlier version of Az.Tags is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Tags -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.TrafficManager if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.TrafficManager version 0.7.0. An earlier version of Az.TrafficManager is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.TrafficManager -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.UsageAggregates if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.UsageAggregates version 0.7.0. An earlier version of Az.UsageAggregates is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.UsageAggregates -MinimumVersion 0.7.0 -Scope Global } $module = Get-Module Az.Websites if ($module -ne $null -and $module.Version.ToString().CompareTo("0.7.0") -lt 0) { Write-Error "This module requires Az.Websites version 0.7.0. An earlier version of Az.Websites is imported in the current PowerShell session. Please open a new session before importing this module. This error could indicate that multiple incompatible versions of the Azure PowerShell cmdlets are installed on your system. Please see https://aka.ms/azps-version-error for troubleshooting information." -ErrorAction Stop } elseif ($module -eq $null) { Import-Module Az.Websites -MinimumVersion 0.7.0 -Scope Global } $FilteredCommands = @() if ($Env:ACC_CLOUD -eq $null) { $FilteredCommands | ForEach-Object { $existingDefault = $false foreach ($key in $global:PSDefaultParameterValues.Keys) { if ($_ -like "$key") { $existingDefault = $true } } if (!$existingDefault) { $global:PSDefaultParameterValues.Add($_, { if ((Get-Command Get-AzContext -ErrorAction Ignore) -eq $null) { $context = Get-AzureRmContext } else { $context = Get-AzContext } if (($context -ne $null) -and $context.ExtendedProperties.ContainsKey("Default Resource Group")) { $context.ExtendedProperties["Default Resource Group"] } }) } } } # SIG # Begin signature block # MIIkaAYJKoZIhvcNAQcCoIIkWTCCJFUCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDKLy/Ut5gslxOD # VRy3ICK/EJUwIamLClE3VRXNRqzqAaCCDYEwggX/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/BvW1taslScxMNelDNMYIWPTCCFjkCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAQNeJRyZH6MeuAAAAAABAzAN # BglghkgBZQMEAgEFAKCBzDAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoShB94a9 # op2sUXLJoIFuizYCEH84tMYBwZGKjdMYu9AwYAYKKwYBBAGCNwIBDDFSMFCgNoA0 # AE0AaQBjAHIAbwBzAG8AZgB0ACAAQQB6AHUAcgBlACAAUABvAHcAZQByAFMAaABl # AGwAbKEWgBRodHRwOi8vQ29kZVNpZ25JbmZvIDANBgkqhkiG9w0BAQEFAASCAQBy # YU10ewCgFHiBpiyBxQQkLKrG1zeOKk9o6kp/yJLPWO0dgKO/Ri2zKmp9JVyc0jEw # xOMU7/Cx8/YMYBabrp3fbKlNwJWx1f0XwzewlztuTD5yLQ8yuN5b/Ml1uFsduK35 # 3Ojlt7rayX5sTi5Wp11iv0vAGm4eCpFccdA9BCEXQ9Do/Bb2OAJY1gBpMaXzjkbO # e28P0mH7w2SEpk6MRdnXvPlg/qVoYokdbTIUJJoGhn4u8Xab1A3EsK7R/zQELad6 # jgyxI+p9Ssk/lnSZGix/zpU8AIWpSfYuZIy1MH5zmW8AgQiny3sbFriZHzIWpsHK # dDfT6LJFUhd64O+M9DFLoYITqTCCE6UGCisGAQQBgjcDAwExghOVMIITkQYJKoZI # hvcNAQcCoIITgjCCE34CAQMxDzANBglghkgBZQMEAgEFADCCAVMGCyqGSIb3DQEJ # EAEEoIIBQgSCAT4wggE6AgEBBgorBgEEAYRZCgMBMDEwDQYJYIZIAWUDBAIBBQAE # IJoYPCD5auedIYbfA6KP6qCMUcwXHj7gJ1ZHKEpcx4EMAgZb/HAOe8AYEjIwMTgx # MTI5MjAxNjM5LjUxWjAHAgEBgAIB9KCB0KSBzTCByjELMAkGA1UEBhMCVVMxEzAR # BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p # Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg # T3BlcmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046N0FCNS0yREYyLURB # M0YxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2Wggg8WMIIG # cTCCBFmgAwIBAgIKYQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UE # BhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAc # BgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0 # IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1 # WhcNMjUwNzAxMjE0NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu # Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv # cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCC # ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9p # lGt0VBDVpQoAgoX77XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEw # WbEwRA/xYIiEVEMM1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeG # MoQedGFnkV+BVLHPk0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJ # UGKxXf13Hz3wV3WsvYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw # 2k4GkbaICDXoeByw6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0C # AwEAAaOCAeYwggHiMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ # 80N7fEYbxTNoWoVtVTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8E # BAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2U # kFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5j # b20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmww # WgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29m # dC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYD # VR0gAQH/BIGVMIGSMIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6 # Ly93d3cubWljcm9zb2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYI # KwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0 # AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9 # naOhIW+z66bM9TG+zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtR # gkQS+7lTjMz0YBKKdsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzy # mXlKkVIArzgPF/UveYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCf # Mkon/VWvL/625Y4zu2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3D # nKOiPPp/fZZqkHimbdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs # 9/S/fmNZJQ96LjlXdqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110 # mCIIYdqwUB5vvfHhAN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL # 2IK0cs0d9LiFAR6A+xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffI # rE7aKLixqduWsqdCosnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxE # PJdQcdeh0sVV42neV8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc # 1bN+NR4Iuto229Nfj950iEkSMIIE8TCCA9mgAwIBAgITMwAAAOk70bdbjku57AAA # AAAA6TANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2Fz # aGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENv # cnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAx # MDAeFw0xODA4MjMyMDI3MTZaFw0xOTExMjMyMDI3MTZaMIHKMQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1l # cmljYSBPcGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjo3QUI1LTJE # RjItREEzRjElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZTCC # ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIRsuE5EtCtYIXk4l1CKhUhs # jyywW8YPB3vuA/TVw6YpvjCTndLB2edT19K9tLbmUAR6KYOUIIa9Z0H8tj0bTgJF # j37ctCAaXp9gcmmeQzpaVbyPlpGqVP+ge8wbe/kgM+t0IwMSCkJLZgA4fRdi48Hz # xukXJ+YT9ur8MxZHhuMLBcdztpdjnJ/aaWbjlu85RaNmIY6+XBAHTlk6w2o0pdyb # BQY5mAg02XHCYFxK3767QuXwWJWuulGidbIIu3WfcQ2hzZXiudhwbdBSnsa5r0ET # 1DeVRswj62R737qahvs1vDJQqDI3S0+2O+efD7eWbKFbIEUeWXiQkyzr9b5xyLEC # AwEAAaOCARswggEXMB0GA1UdDgQWBBSPBiE/dcg20mGeqwoxKBB33C0x3DAfBgNV # HSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBHhkVo # dHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNUaW1T # dGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAC # hj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0YVBD # QV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsGAQUF # BwMIMA0GCSqGSIb3DQEBCwUAA4IBAQCefzkR1AIK0nsxO3W0Vw1jzlklk0b5hGzn # Qe/WhZN4pgetSo1swFPbzGI8XtYP5DaiyB5tRfM55I+FtnOjnlKUK+vT/yu+ZL4l # WYk8HliIAii9xhvE5f/pR8zokorqpDj2b4fyyONexP3p1Zu4hA0Zd2NP04szCZlT # neF2XCOW4zWK9+rhS3mkauQ8b2YFjmt3pe2AmiWFgXMxlQLK7AL206YQYrUyMvNO # v/gy9MzLT5IEFWAyz00Gw8NrKuYyg90Kl1oKYFGSMjKg6Hn8o4I6pNk2zfxflFVV # NQjjjW8nd0oYAIITBgo+aXKDplc+ABw92RvOi6++sg81DQwI025VoYIDqDCCApAC # AQEwgfqhgdCkgc0wgcoxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u # MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp # b24xJTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJjAkBgNV # BAsTHVRoYWxlcyBUU1MgRVNOOjdBQjUtMkRGMi1EQTNGMSUwIwYDVQQDExxNaWNy # b3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiUKAQEwCQYFKw4DAhoFAAMVAJ6RGyV/ # F2FkeVjeFRxMuu+2kSiUoIHaMIHXpIHUMIHRMQswCQYDVQQGEwJVUzETMBEGA1UE # CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z # b2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmljYSBPcGVy # YXRpb25zMScwJQYDVQQLEx5uQ2lwaGVyIE5UUyBFU046MjY2NS00QzNGLUM1REUx # KzApBgNVBAMTIk1pY3Jvc29mdCBUaW1lIFNvdXJjZSBNYXN0ZXIgQ2xvY2swDQYJ # KoZIhvcNAQEFBQACBQDfqrdDMCIYDzIwMTgxMTI5MTkwNjQzWhgPMjAxODExMzAx # OTA2NDNaMHcwPQYKKwYBBAGEWQoEATEvMC0wCgIFAN+qt0MCAQAwCgIBAAICDAsC # Af8wBwIBAAICGVowCgIFAN+sCMMCAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYB # BAGEWQoDAaAKMAgCAQACAxbjYKEKMAgCAQACAwehIDANBgkqhkiG9w0BAQUFAAOC # AQEAfoJihvOwftfilUm53HKu3sfJWjEj8k9iwV9LNHPvGxXJGEURX8R+tngvHy+V # /D21N+mmGM3k0+ulNm8NAtO3SzkAE65buq114ZFKoX85gH6pjt2dg6z8u1bUHKPn # 6XyljxV7AELWoXfwbZKyRU3W6+TB99+RQfjdmJzayaBalx76kiK6UN4wJ+i/YQga # Q5Bvwe5M1m98YnmRe9rtjpd0PCxvmE/8gsTpqsDd/p8DOBYqGEWaWPUrC9lAwKkK # sPhtl2B1iTYjrNz2mB/6SKGHJuGucBh0x9vDJRiUKy9ylpeGj/3XykoCEpZ1gmVd # 9x5SvP4EYcPhnehea30m2LByODGCAvUwggLxAgEBMIGTMHwxCzAJBgNVBAYTAlVT # MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK # ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1l # LVN0YW1wIFBDQSAyMDEwAhMzAAAA6TvRt1uOS7nsAAAAAADpMA0GCWCGSAFlAwQC # AQUAoIIBMjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkE # MSIEIAombbPWhbKwS3bRow31bpt3gc4aofayPSC0zaTKQh/jMIHiBgsqhkiG9w0B # CRACDDGB0jCBzzCBzDCBsQQUnpEbJX8XYWR5WN4VHEy677aRKJQwgZgwgYCkfjB8 # MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk # bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1N # aWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAOk70bdbjku57AAAAAAA # 6TAWBBSbOrrwr9fbLX5kEz+/+Kp4u8WO7TANBgkqhkiG9w0BAQsFAASCAQAjZTAO # R821l1LH8xEtpgaark/HjSbORv2nTcCQEUs9nqYLJ6scTtEQvEcjBY8p7HdNYV1Y # ri8WXUghbMyaqc8oxAYkHvVqA+jto+TyNbvdt3GzIeACDxN+isgxTspWI6N2eQTU # KiBnU2l07AFLot49YVJodY7xmiJ5/Rg4F4xFjyinXCEPGTCN17Xxw5taWIjD9fhU # SD3UoSBZiexvDCopWsbpBHX7UPkJWgV98h6Mgne1guMtrtezDoOkeNz8k4VZX45e # dsTx2wiNAzgXV3uNLztRAKWbnZ/xXreXe3eLJ6Q765k9S3fFTB+J0jamHqjuH5+A # uEVOp3WzaF5UWJb1 # SIG # End signature block |