Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
-
You can also just download the packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
1,286
Downloads of v 1.0.0-beta-7:
511
Last Update:
15 Jan 2018
Package Maintainer(s):
Software Author(s):
- Joel "Jaykul" Bennett
Tags:
jupyter kernel powershell notebook- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Jupyter-PowerShell
This is a prerelease version of Jupyter-PowerShell.
- 1
- 2
- 3
1.0.0-beta-7 | Updated: 15 Jan 2018
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,286
Downloads of v 1.0.0-beta-7:
511
Maintainer(s):
Software Author(s):
- Joel "Jaykul" Bennett
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
- 1
- 2
- 3
Jupyter-PowerShell
1.0.0-beta-7
This is a prerelease version of Jupyter-PowerShell.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Failed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Jupyter-PowerShell, run the following command from the command line or from PowerShell:
To upgrade Jupyter-PowerShell, run the following command from the command line or from PowerShell:
To uninstall Jupyter-PowerShell, run the following command from the command line or from PowerShell:
Deployment Method:
📝 NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download jupyter-powershell --internalize --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade jupyter-powershell -y --source="'INTERNAL REPO URL'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade jupyter-powershell -y --source="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install jupyter-powershell
win_chocolatey:
name: jupyter-powershell
version: '1.0.0-beta-7'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jupyter-powershell' do
action :install
source 'INTERNAL REPO URL'
version '1.0.0-beta-7'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jupyter-powershell
{
Name = "jupyter-powershell"
Version = "1.0.0-beta-7"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jupyter-powershell':
ensure => '1.0.0-beta-7',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
A PowerShell Kernel for Jupyter (and nteract, etc.)
md5: 26A2C4E54D682CC21D206FAC2BE47705 | sha1: 560564A5393273B234C062E23EDEB9727B4C6332 | sha256: 088D1DE315E8DD54074DB0DB79809D3C13CDF8EFAF9430419671279E2C0997FD | sha512: B71F0A7A072EBB8207420FDFDB8E64FA44633E1D19850A2A5816C77673710127ADE5EC384B598330B0D09E53D21E2379C3CE20EC417B52B3D6A1AAD1103B21DD
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "f97fd0923826968dc197e1d534cc4772765395de"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {
"Jupyter/1.0.0-beta-7": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0",
"Microsoft.Extensions.Logging.Console": "2.0.0",
"Microsoft.Extensions.Logging.Debug": "2.0.0",
"NetMQ": "4.0.0.1",
"Newtonsoft.Json": "10.0.3",
"System.Net.Primitives": "4.3.0"
},
"runtime": {
"Jupyter.dll": {}
}
},
"AsyncIO/0.1.26": {
"dependencies": {
"System.Net.NameResolution": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/AsyncIO.dll": {}
}
},
"Microsoft.CSharp/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0"
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging/2.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
"Microsoft.Extensions.Logging.Abstractions": "2.0.0",
"Microsoft.Extensions.Options": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging.Console/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0",
"Microsoft.Extensions.Logging": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
}
},
"Microsoft.Extensions.Logging.Debug/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
"Microsoft.Extensions.Options/2.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
"Microsoft.Extensions.Primitives": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
}
},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.Win32.Primitives/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"NetMQ/4.0.0.1": {
"dependencies": {
"AsyncIO": "0.1.26",
"System.Net.NetworkInformation": "4.1.0",
"System.Runtime.Loader": "4.0.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.3.0",
"System.Threading.Thread": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/NetMQ.dll": {}
}
},
"Newtonsoft.Json/10.0.3": {
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
}
},
"runtime.native.System/4.0.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Security/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Collections.Concurrent/4.0.12": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Collections.NonGeneric/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections.Specialized/4.3.0": {
"dependencies": {
"System.Collections.NonGeneric": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.ComponentModel/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.ComponentModel.Primitives/4.3.0": {
"dependencies": {
"System.ComponentModel": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.TypeConverter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel": "4.3.0",
"System.ComponentModel.Primitives": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Dynamic.Runtime/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.Compression/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.0.0",
"runtime.native.System.IO.Compression": "4.1.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Linq/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Linq.Expressions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Linq.Queryable/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Net.Http/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NameResolution/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.0.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.1.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.0.0",
"System.Threading": "4.3.0",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Thread": "4.0.0",
"System.Threading.ThreadPool": "4.0.10",
"runtime.native.System": "4.0.0"
},
"runtimeTargets": {
"runtime/linux/lib/_._": {
"rid": "linux",
"assetType": "runtime"
},
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Security/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.ThreadPool": "4.0.10",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Security": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Sockets/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Net.WebSockets/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Net.WebSockets.Client/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ObjectModel/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Private.DataContractSerialization/4.1.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"System.Private.ServiceModel/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Security": "4.0.0",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Security.Principal.Windows": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.0.11"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "win7",
"assetType": "runtime"
}
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Reflection.Emit/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.TypeExtensions/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Runtime.Loader/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Numerics/4.0.1": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"dependencies": {
"System.IO": "4.3.0",
"System.Private.DataContractSerialization": "4.1.1",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Security.Claims/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Security.Principal": "4.0.1"
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Csp/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Primitives/4.0.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Csp": "4.0.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Principal/4.0.1": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Security.Principal.Windows/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.ServiceModel.Primitives.dll": {}
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.RegularExpressions/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Overlapped/4.0.1": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks.Extensions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Thread/4.0.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading.ThreadPool/4.0.10": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Threading.Timer/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Xml.ReaderWriter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Extensions": "4.3.0"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlSerializer/4.0.11": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
}
}
}
},
"libraries": {
"Jupyter/1.0.0-beta-7": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"AsyncIO/0.1.26": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mV6fvJg4K/kN6xzQ1sJJNzk7L8W0hKYxm2enGgi0cUs81v5S5JWfJF+M+KoyfmhUNNhy1nDcS4ycru8pBOFGyw==",
"path": "asyncio/0.1.26",
"hashPath": "asyncio.0.1.26.nupkg.sha512"
},
"Microsoft.CSharp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"path": "microsoft.csharp/4.3.0",
"hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==",
"path": "microsoft.extensions.configuration.abstractions/2.0.0",
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VP10syWV/vxYYMKgZ2eDESmUsz3gPxvBn5J6tkVN8lI4M+dF43RN8fWsEPbcAneDmZrHl3Pv23z05nmyGkJlpg==",
"path": "microsoft.extensions.logging/2.0.0",
"hashPath": "microsoft.extensions.logging.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
"path": "microsoft.extensions.logging.abstractions/2.0.0",
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NBjNp899FW7byDsex2ch/CkwNd2GbuHQIXCbvUVqOzSbnIsYrxOaR//BY2h2apJhnqm10IPLGkcjXxUyfAcIKA==",
"path": "microsoft.extensions.logging.console/2.0.0",
"hashPath": "microsoft.extensions.logging.console.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-29Zn5m9yb4NEP+qbeLl+7F2lDskDfrs8NbrM8eJ+k/pYE8JksRUEFxHp1bcpGSfGP9w0pMQMOKrVcwD3u5sPog==",
"path": "microsoft.extensions.logging.debug/2.0.0",
"hashPath": "microsoft.extensions.logging.debug.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Options/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sAKBgjl2gWsECBLLR9K54T7/uZaP2n9GhMYHay/oOLfvpvX0+iNAlQ2NJgVE352C9Fs5CDV3VbNTK8T2aNKQFA==",
"path": "microsoft.extensions.options/2.0.0",
"hashPath": "microsoft.extensions.options.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
"path": "microsoft.extensions.primitives/2.0.0",
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
"path": "microsoft.win32.primitives/4.0.1",
"hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
},
"NetMQ/4.0.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yGAYGVzgtKfN5tJn/iZa1XLmXog44Qo2jrJqWBT7I7SlYFvPYzIzoXeV/yMkwuq1eyWSou0lucuCcAJp6uxZOw==",
"path": "netmq/4.0.0.1",
"hashPath": "netmq.4.0.0.1.nupkg.sha512"
},
"Newtonsoft.Json/10.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
"path": "newtonsoft.json/10.0.3",
"hashPath": "newtonsoft.json.10.0.3.nupkg.sha512"
},
"runtime.native.System/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
"path": "runtime.native.system/4.0.0",
"hashPath": "runtime.native.system.4.0.0.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
"path": "runtime.native.system.io.compression/4.1.0",
"hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
"path": "runtime.native.system.net.http/4.0.1",
"hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512"
},
"runtime.native.System.Net.Security/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
"path": "runtime.native.system.net.security/4.0.1",
"hashPath": "runtime.native.system.net.security.4.0.1.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
"path": "runtime.native.system.security.cryptography/4.0.0",
"hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
"path": "system.collections.concurrent/4.0.12",
"hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
},
"System.Collections.NonGeneric/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"path": "system.collections.nongeneric/4.3.0",
"hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
},
"System.Collections.Specialized/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"path": "system.collections.specialized/4.3.0",
"hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
},
"System.ComponentModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"path": "system.componentmodel/4.3.0",
"hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
"path": "system.componentmodel.eventbasedasync/4.0.11",
"hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
},
"System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"path": "system.componentmodel.primitives/4.3.0",
"hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
},
"System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"path": "system.componentmodel.typeconverter/4.3.0",
"hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
"path": "system.diagnostics.diagnosticsource/4.0.0",
"hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
"path": "system.diagnostics.tracing/4.1.0",
"hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
},
"System.Dynamic.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"path": "system.dynamic.runtime/4.3.0",
"hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
"path": "system.globalization.calendars/4.0.1",
"hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
"path": "system.io.compression/4.1.0",
"hashPath": "system.io.compression.4.1.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
"path": "system.linq.queryable/4.0.1",
"hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
},
"System.Net.Http/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
"path": "system.net.http/4.1.0",
"hashPath": "system.net.http.4.1.0.nupkg.sha512"
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
"path": "system.net.nameresolution/4.0.0",
"hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"path": "system.net.networkinformation/4.1.0",
"hashPath": "system.net.networkinformation.4.1.0.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Security/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
"path": "system.net.security/4.0.0",
"hashPath": "system.net.security.4.0.0.nupkg.sha512"
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
"path": "system.net.sockets/4.1.0",
"hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
"path": "system.net.webheadercollection/4.0.1",
"hashPath": "system.net.webheadercollection.4.0.1.nupkg.sha512"
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
"path": "system.net.websockets/4.0.0",
"hashPath": "system.net.websockets.4.0.0.nupkg.sha512"
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==",
"path": "system.net.websockets.client/4.0.0",
"hashPath": "system.net.websockets.client.4.0.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
"path": "system.private.datacontractserialization/4.1.1",
"hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==",
"path": "system.private.servicemodel/4.1.0",
"hashPath": "system.private.servicemodel.4.1.0.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
"path": "system.reflection.dispatchproxy/4.0.1",
"hashPath": "system.reflection.dispatchproxy.4.0.1.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
"path": "system.runtime.compilerservices.unsafe/4.4.0",
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
"path": "system.runtime.interopservices.runtimeinformation/4.0.0",
"hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
},
"System.Runtime.Loader/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
"path": "system.runtime.loader/4.0.0",
"hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
"path": "system.runtime.numerics/4.0.1",
"hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"path": "system.runtime.serialization.formatters/4.3.0",
"hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
"path": "system.runtime.serialization.xml/4.1.1",
"hashPath": "system.runtime.serialization.xml.4.1.1.nupkg.sha512"
},
"System.Security.Claims/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
"path": "system.security.claims/4.0.1",
"hashPath": "system.security.claims.4.0.1.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
"path": "system.security.cryptography.algorithms/4.2.0",
"hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
"path": "system.security.cryptography.cng/4.2.0",
"hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Csp/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
"path": "system.security.cryptography.csp/4.0.0",
"hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
"path": "system.security.cryptography.encoding/4.0.0",
"hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
"path": "system.security.cryptography.openssl/4.0.0",
"hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
"path": "system.security.cryptography.primitives/4.0.0",
"hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
"path": "system.security.cryptography.x509certificates/4.1.0",
"hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
},
"System.Security.Principal/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
"path": "system.security.principal/4.0.1",
"hashPath": "system.security.principal.4.0.1.nupkg.sha512"
},
"System.Security.Principal.Windows/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
"path": "system.security.principal.windows/4.0.0",
"hashPath": "system.security.principal.windows.4.0.0.nupkg.sha512"
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==",
"path": "system.servicemodel.primitives/4.1.0",
"hashPath": "system.servicemodel.primitives.4.1.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
"path": "system.threading.overlapped/4.0.1",
"hashPath": "system.threading.overlapped.4.0.1.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Threading.Thread/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
"path": "system.threading.thread/4.0.0",
"hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
},
"System.Threading.ThreadPool/4.0.10": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
"path": "system.threading.threadpool/4.0.10",
"hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
"path": "system.threading.timer/4.0.1",
"hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlSerializer/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
"path": "system.xml.xmlserializer/4.0.11",
"hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
}
}
}
md5: 1EF6085DE346F4732DE1CB8D7B22857E | sha1: C253CB59DF40A11E8B71D618FEA855C0681968A1 | sha256: 738A732A3D89BDF399E048AB6528A74CA7D1F386A821F9D8F53E0D5019091911 | sha512: 8B3250BF0E08D968FF523634788BBE1EF7D946253CF26DC8E73B708A35E537F2A1D35FDA9C3044250A8EB148156C23FAF750DE24F9CEAC3FA114781E65452F1C
md5: 8B5474881EF32F1D70B6A42497F513BE | sha1: 610F1A0EE21A40A56B4E641E92C2FC0EE6EBFD8E | sha256: BDE7EED1EF279A80071DA35170802AA817A469A2F82E1245B1EACE88933230D4 | sha512: AC471829370621C4BB64436832EE6002679176D5105DE900E4F853519EDC2FD86D67382D56AFAFC41F126F30871A1ABFC8E2C1A814C1C81EB71090112CFC3BE9
md5: 327FF665223528B40A61A52FF62E4FBB | sha1: FAC4C274A5C2111CBB22C0611BBB7F2013B161DC | sha256: 3D002DE8B49FE8A536CEC73C42046609B48826075DECBB037C5E4271A4E87D0E | sha512: 984775308BEA5F182AB822A2D1AD8D321389BFB707A2CF3317B5E5A97FC16AF3A1C1EB01B2492FF178389CCC5D8F1C078258B755471FACFBE0A40E01410E1263
md5: 9DACBFC6987E9A10E428DC9977571A38 | sha1: F33C9355F73E466F0078448E612217CEF10BCAAA | sha256: 75619A03F90575D94D5AF3E8754FD97329F28FDAA940F7858BFD791CDEA49E65 | sha512: BE8D74F6109C127BD2BD836AE553FD917D04B505FCD9B39B756E32912BD85435A77D89686B45DBF5699966643536557DE5ED7837328037B10BD2F6D68899F99D
md5: 86654A0EEC8C3110DFB2532487338FB5 | sha1: B9A4C30528C33D5FBD131D4E7BC8731F1A00F9C2 | sha256: 735B3EFBB06CC23F3595555F98BFF52921C0670A572986C0FAA39E59C8DEB166 | sha512: B9C754C873A2DB52EFF0974EB5B2A3FAB7E452FF97C167E2CD779523C3928F93F6973618D5D3669A00EFD9A860B6258B4F30A7B2A02EF821EB488A65A9282765
md5: 75132F2D19DDF50622E33D4CA210710C | sha1: 6720D2F8057289CCE4AF444E8E63429E3C477F99 | sha256: 58C5DAD39F6BEBD4FC289FBC9573F0C3B3402DDB09906F037E8FA7CE96070300 | sha512: A7E00C154B11145DB0EBFD4426A7413CDADE91D0710E79B37B8D105A3F706D7DE75EA1F8724303E2EE4C316D431F2E3134516158C65B02449165D9A882D8073A
md5: 6F3CCA084046A16C91F64953BD6AE66C | sha1: 70ED8EE6630E547125267DFB19FD2B14A0875EA6 | sha256: E51F1960C60E65C1E28869F5A296896803F24346580D49BDCADFE63BA46499AE | sha512: B7D3CB5798E8069FF72B451A8E03E3F31EA67455DAB9C14369E4F616B8DD5CD53242994A66CB58C7FD2D478380EEB79360F421816F6D2C1AA1808D4AC19C1A5D
md5: 60C04F79259CC1A589B4ADEC35E51104 | sha1: F9A627228B6730D7716682CF196D24EAAFBB31D3 | sha256: 4794DBDCBEFBEDA2398CC8AFDDEADD67D5D73CCBD6277BEE16C5CCCE2CC6F97A | sha512: 8BDCF79F1E3C9F880CFF5ED27900FE826F6E682A6B7D4BB96B70BFCC7620654A5D24D7B0E748AAE84EDBB55F2ABB3B2947D0774A67C6EE749D2758AB96581731
md5: CA92158A2CA30F559C987042B70C1B62 | sha1: AEF549795C022258A0108B2666863043BE72A01E | sha256: 5F126C92C5B135B63BE00C4F9F12F275E5D8A20F84BACB91BF8AEF9547D5CF8B | sha512: 3577E4303F331700C9E225040B10F853BFD553AC405E128A9C88E42F8F097B976B2EF6AC4887F7DB5E71D6AEA849A4A6CDFFAE9E568CC9CFA9D308B49040E2C0
md5: D921DE2A9BD56E88A8739C13B62838A5 | sha1: 62437B4EB1830437E72BD870EE85DFF344D4F5AF | sha256: 9A062D1ECB59AF4296CEEE724BB91DDE2C37B5988E045753F3B87C54EAA56647 | sha512: BCCEB2EC4D8999E011686F02F863AA9760453AB21BCF0425710A5229BFCA70396B15C5807FFE8B95A3EE65C2CB97ED6E6F9F1C43360339B54B776F5EFBC1862F
md5: F6BFB173119F48EED8B3616A3FD5464F | sha1: BA181221ADD6B9E0C0A72E96C3F5A6A852C6920F | sha256: B863F1B8FD50BE74C9504765F3E744E72C463372282B48B979D644BB232B3DD0 | sha512: 4E2A89999B945033284B23FE47729E67C6AF4B70E0C805C60AEFE89C82FD6E195F0E364A39E4CDAC660ED5BE13706D6B43832D70176DDBDABF2EA4CF617366F3
md5: 92B40AD6AEDFB662579AB43F6120931A | sha1: 1BC6E351FB37D921780739B090D6A843E330D569 | sha256: E12369D576D9658BF1904B3EFD66301396B3E59BC606669469F30CB8A2BF325D | sha512: B5CF3242459A69E50E60A34DE99A214880A9F9CC2BA02A42BE00E35A9CFEE871E1C9B619A371040675BD6D52D4B4A8489F003C6ECDBF774CFAB70119A853044C
md5: 187767C79FC406ED191B2B43D9C251A8 | sha1: FA1C4398F2AAC28F7A68796741BF8C139EFA15C9 | sha256: 5B1C77B11B714EB6FE34A8B630B9BD647A668AE6B4D0A7E0229CBF3F2461C722 | sha512: B2AA4311078D308B3214A6DC1AA4466437C057DAD098DA8C069881D923A8A43E4201074A79DE5694505C8A765C7BEECE08CC15B70EAFF1DA64B5521320B78EB9
md5: DDEBDDF19ECF76882309E8F8F1A1C75B | sha1: 3E3DDF9AE18D41CF2BC44CD4B19539816B205FF6 | sha256: FD4FEE1BB2E7B92F48959BA57EABE1B4C2F1BD4411404637FB43E214F27C2809 | sha512: F4CD08E54595AE140610498B55FD125BD08B42ED7D4572A86E7C70F7231E788B719ECF6A8CF0490C3DAD2FC6456440546B027991710E2AB91ED7DE90452258AE
md5: 0CD6938593B1785B4AC087F7FE5C47E9 | sha1: 212628D9551D605CFDD47F1A48690EC85DDDBBFE | sha256: DC29C10F3DECDD8A11A9B849BCC0FF60F4097A23E33420CCD7583451F7321D33 | sha512: DE6B527F2F96D87C8476814FF59B272E486E0A5A9694E90876CDAF743E35D8A620A90F1F63060847B7EB29E42906A39D59302352184067A1AB1845F52D4A1A53
md5: B5C71BED0A0CC2DB2AA02445A4AFA774 | sha1: B6606F6BEB39A2F1645E20996307C21DB1C569FA | sha256: E0E19377694A527C7BF905CF574E96FB6FD1F5676771D5F7F9FE2D8510EBFD60 | sha512: 643C86FA72975FE9E5A8DF23A72432544046C8964B2D561EDB517010ECA897A3A48EDFAE7C727F8F534A2F7DAC7DF3C963EBD7049C218A349805FDBE069C86CF
md5: C0E88B1F0F64E1FF0EA6CB67F162C66D | sha1: 8432AB2F75F164DEBEDC88D14A00352684F0AD6D | sha256: BDC04A44CFD70E7D904BD0B67E0596E7C5F4D999287A6D64C6523CA5213ED773 | sha512: E6EE72F07D207925C00E5370255CBB7283DC0E2141BA8C51E752039C757F236958421ABCD7FFC28D4F78E3A536A4037619F30474F87CA6DDBEF6E76BF82FF7B9
md5: E05CC4140E97600835F84CB9EE59C01B | sha1: 9824D7C1C5E63B380673B113AF44CC22A054999E | sha256: 1002C2BEB142FCF9B69DC0474C083C139EE7A71FF8289B9114E34861E7A81322 | sha512: 6A248A11B8BCF99C41C5107A8ACD6504523693A36BF2157809849CF965FDD4A2097B6DD0465950337D44F1990607E93B3E399E949A5FF72ECB8D3A5B3338D496
md5: E3176B8D0FE9873F4990521E0F8B5A61 | sha1: B9668C26C39DCBE0D2D6D3DF52F47B1657BC1B3B | sha256: 8147B8BF4728421C4B7EEF66A63CA27C50F0698C666CBF97E42945FD125553F8 | sha512: CC3FFA08332818724C8D4D2EC92E0A718EB1613A0703D89AAF917698E9F129D29DFAB9CECF883A5C23C920F70858DEDD08D0F79764E463C757C80D61AE1A2799
md5: 92D9DBBE10F8F3770BA97ACC3683325D | sha1: A2BDCEF88F3CF1FBCB2E3953C07A65CEACFB2B53 | sha256: 0268D88516035EB67851E15FEA5BD2787100E55F4ED6A9C8B4349FE933C39329 | sha512: D92AB8640BD4D39455393BF44AE672454381CE5E606ACF12D0387130724EF8B997CDB9D53424712827E8650A8AF8E2F5B9C6EA95A6EBB4ABA32CF3ECAD813E18
{
"PowerShell": {
"JsonOutput": false
},
"Logger": {
"ConsoleOutput": true,
"DebuggerOutput": false
},
"Debug": {
"BreakOnStart": true
}
}
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "3d0d6e3e9e207290b5fca5e05a415d855cb8b43c"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {
"PowerShell-Kernel/1.0.0-beta-7": {
"dependencies": {
"Jupyter-Kernel": "1.0.0-beta-7",
"Microsoft.Extensions.Configuration": "2.0.0",
"Microsoft.Extensions.Configuration.Binder": "2.0.0",
"Microsoft.Extensions.Configuration.Json": "2.0.0",
"Microsoft.Extensions.Logging": "2.0.0",
"Microsoft.Extensions.Logging.Console": "2.0.0",
"Microsoft.Extensions.Logging.Debug": "2.0.0",
"System.Management.Automation": "6.0.0",
"runtime.native.System": "4.3.0"
},
"runtime": {
"PowerShell-Kernel.dll": {}
}
},
"AsyncIO/0.1.26": {
"dependencies": {
"System.Net.NameResolution": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/AsyncIO.dll": {}
}
},
"Microsoft.CSharp/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0"
}
},
"Microsoft.Extensions.Configuration/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0",
"Microsoft.Extensions.FileProviders.Physical": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Json/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "2.0.0",
"Newtonsoft.Json": "10.0.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.0.0": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.0.0",
"Microsoft.Extensions.FileSystemGlobbing": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
"Microsoft.Extensions.Logging/2.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
"Microsoft.Extensions.Logging.Abstractions": "2.0.0",
"Microsoft.Extensions.Options": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging.Console/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0",
"Microsoft.Extensions.Logging": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
}
},
"Microsoft.Extensions.Logging.Debug/2.0.0": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
"Microsoft.Extensions.Options/2.0.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
"Microsoft.Extensions.Primitives": "2.0.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.0.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
}
},
"Microsoft.Management.Infrastructure/1.0.0-alpha08": {
"dependencies": {
"System.Runtime.CompilerServices.VisualC": "4.3.0",
"System.Runtime.Serialization.Xml": "4.3.0",
"System.Security.SecureString": "4.3.0",
"System.Threading.ThreadPool": "4.3.0"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win-arm",
"assetType": "runtime"
},
"runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win-arm",
"assetType": "runtime"
},
"runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win-arm64",
"assetType": "runtime"
},
"runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win-arm64",
"assetType": "runtime"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win10-x64",
"assetType": "runtime"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x64",
"assetType": "runtime"
},
"runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win10-x86",
"assetType": "runtime"
},
"runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x86",
"assetType": "runtime"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win7-x64",
"assetType": "runtime"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x64",
"assetType": "runtime"
},
"runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win7-x86",
"assetType": "runtime"
},
"runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x86",
"assetType": "runtime"
},
"runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win8-x64",
"assetType": "runtime"
},
"runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win8-x64",
"assetType": "runtime"
},
"runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win8-x86",
"assetType": "runtime"
},
"runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win8-x86",
"assetType": "runtime"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win81-x64",
"assetType": "runtime"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x64",
"assetType": "runtime"
},
"runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win81-x86",
"assetType": "runtime"
},
"runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x86",
"assetType": "runtime"
},
"runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win-arm",
"assetType": "native"
},
"runtimes/win-arm/native/mi.dll": {
"rid": "win-arm",
"assetType": "native"
},
"runtimes/win-arm/native/miutils.dll": {
"rid": "win-arm",
"assetType": "native"
},
"runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win-arm64",
"assetType": "native"
},
"runtimes/win-arm64/native/mi.dll": {
"rid": "win-arm64",
"assetType": "native"
},
"runtimes/win-arm64/native/miutils.dll": {
"rid": "win-arm64",
"assetType": "native"
},
"runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtimes/win10-x64/native/mi.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtimes/win10-x64/native/miutils.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win10-x86",
"assetType": "native"
},
"runtimes/win10-x86/native/mi.dll": {
"rid": "win10-x86",
"assetType": "native"
},
"runtimes/win10-x86/native/miutils.dll": {
"rid": "win10-x86",
"assetType": "native"
},
"runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win7-x64",
"assetType": "native"
},
"runtimes/win7-x64/native/mi.dll": {
"rid": "win7-x64",
"assetType": "native"
},
"runtimes/win7-x64/native/miutils.dll": {
"rid": "win7-x64",
"assetType": "native"
},
"runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win7-x86",
"assetType": "native"
},
"runtimes/win7-x86/native/mi.dll": {
"rid": "win7-x86",
"assetType": "native"
},
"runtimes/win7-x86/native/miutils.dll": {
"rid": "win7-x86",
"assetType": "native"
},
"runtimes/win8-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win8-x64",
"assetType": "native"
},
"runtimes/win8-x64/native/mi.dll": {
"rid": "win8-x64",
"assetType": "native"
},
"runtimes/win8-x64/native/miutils.dll": {
"rid": "win8-x64",
"assetType": "native"
},
"runtimes/win8-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win8-x86",
"assetType": "native"
},
"runtimes/win8-x86/native/mi.dll": {
"rid": "win8-x86",
"assetType": "native"
},
"runtimes/win8-x86/native/miutils.dll": {
"rid": "win8-x86",
"assetType": "native"
},
"runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win81-x64",
"assetType": "native"
},
"runtimes/win81-x64/native/mi.dll": {
"rid": "win81-x64",
"assetType": "native"
},
"runtimes/win81-x64/native/miutils.dll": {
"rid": "win81-x64",
"assetType": "native"
},
"runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win81-x86",
"assetType": "native"
},
"runtimes/win81-x86/native/mi.dll": {
"rid": "win81-x86",
"assetType": "native"
},
"runtimes/win81-x86/native/miutils.dll": {
"rid": "win81-x86",
"assetType": "native"
}
}
},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.PowerShell.CoreCLR.Eventing/6.0.0": {
"dependencies": {
"System.Security.Principal.Windows": "4.4.0"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {}
}
},
"Microsoft.Win32.Primitives/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"Microsoft.Win32.Registry/4.4.0": {
"dependencies": {
"System.Security.AccessControl": "4.4.0",
"System.Security.Principal.Windows": "4.4.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"Microsoft.Win32.Registry.AccessControl/4.4.0": {
"dependencies": {
"Microsoft.Win32.Registry": "4.4.0",
"System.Security.AccessControl": "4.4.0",
"System.Security.Principal.Windows": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"NetMQ/4.0.0.1": {
"dependencies": {
"AsyncIO": "0.1.26",
"System.Net.NetworkInformation": "4.1.0",
"System.Runtime.Loader": "4.0.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.3.0",
"System.Threading.Thread": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/NetMQ.dll": {}
}
},
"Newtonsoft.Json/10.0.3": {
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
}
},
"PowerShell.Core.Instrumentation/6.0.0-beta.10": {
"runtimeTargets": {
"runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
"rid": "win-x64",
"assetType": "native"
},
"runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
"rid": "win-x86",
"assetType": "native"
}
}
},
"runtime.native.System/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Security/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Collections.Concurrent/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Collections.NonGeneric/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections.Specialized/4.3.0": {
"dependencies": {
"System.Collections.NonGeneric": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.ComponentModel/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.ComponentModel.Primitives/4.3.0": {
"dependencies": {
"System.ComponentModel": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.TypeConverter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel": "4.3.0",
"System.ComponentModel.Primitives": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Tools/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Dynamic.Runtime/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.Compression/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.IO.Compression": "4.1.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem.AccessControl/4.4.0": {
"dependencies": {
"System.Security.AccessControl": "4.4.0",
"System.Security.Principal.Windows": "4.4.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Linq/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Linq.Expressions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Linq.Queryable/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Management.Automation/6.0.0": {
"dependencies": {
"Microsoft.Management.Infrastructure": "1.0.0-alpha08",
"Microsoft.PowerShell.CoreCLR.Eventing": "6.0.0",
"Microsoft.Win32.Registry.AccessControl": "4.4.0",
"Newtonsoft.Json": "10.0.3",
"PowerShell.Core.Instrumentation": "6.0.0-beta.10",
"System.IO.FileSystem.AccessControl": "4.4.0",
"System.Security.AccessControl": "4.4.0",
"System.Security.Cryptography.Pkcs": "4.4.0",
"System.Security.Permissions": "4.4.0",
"System.Text.Encoding.CodePages": "4.4.0"
},
"runtime": {
"lib/netcoreapp2.0/System.Management.Automation.dll": {}
}
},
"System.Net.Http/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NameResolution/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.4.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.1.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.4.0",
"System.Threading": "4.3.0",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Thread": "4.0.0",
"System.Threading.ThreadPool": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/linux/lib/_._": {
"rid": "linux",
"assetType": "runtime"
},
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Security/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.ThreadPool": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Security": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Sockets/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Net.WebHeaderCollection/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Net.WebSockets/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Net.WebSockets.Client/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ObjectModel/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Private.DataContractSerialization/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.3.0"
}
},
"System.Private.ServiceModel/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Security": "4.0.0",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.DispatchProxy": "4.0.1",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.3.0",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Security.Principal.Windows": "4.4.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.3.0"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "win7",
"assetType": "runtime"
}
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Reflection.Emit/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.TypeExtensions/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
}
},
"System.Runtime.CompilerServices.VisualC/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Runtime.Loader/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Numerics/4.0.1": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Serialization.Xml/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Private.DataContractSerialization": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Security.AccessControl/4.4.0": {
"dependencies": {
"System.Security.Principal.Windows": "4.4.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Claims/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Security.Principal": "4.0.1"
}
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Csp/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Pkcs/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Primitives/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.0.1",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Csp": "4.0.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Permissions/4.4.0": {
"dependencies": {
"System.Security.AccessControl": "4.4.0"
},
"runtime": {
"lib/netstandard2.0/System.Security.Permissions.dll": {}
}
},
"System.Security.Principal/4.0.1": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Security.Principal.Windows/4.4.0": {
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.SecureString/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.ServiceModel.Primitives.dll": {}
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.4.0": {
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.RegularExpressions/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Overlapped/4.0.1": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks.Extensions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Thread/4.0.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading.ThreadPool/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Threading.Timer/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Xml.ReaderWriter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Extensions": "4.3.0"
}
},
"System.Xml.XDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlSerializer/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
}
},
"Jupyter-Kernel/1.0.0-beta-7": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0",
"Microsoft.Extensions.Logging.Console": "2.0.0",
"Microsoft.Extensions.Logging.Debug": "2.0.0",
"NetMQ": "4.0.0.1",
"Newtonsoft.Json": "10.0.3",
"System.Net.Primitives": "4.3.0"
},
"runtime": {
"Jupyter.dll": {}
}
}
}
},
"libraries": {
"PowerShell-Kernel/1.0.0-beta-7": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"AsyncIO/0.1.26": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mV6fvJg4K/kN6xzQ1sJJNzk7L8W0hKYxm2enGgi0cUs81v5S5JWfJF+M+KoyfmhUNNhy1nDcS4ycru8pBOFGyw==",
"path": "asyncio/0.1.26",
"hashPath": "asyncio.0.1.26.nupkg.sha512"
},
"Microsoft.CSharp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"path": "microsoft.csharp/4.3.0",
"hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==",
"path": "microsoft.extensions.configuration/2.0.0",
"hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==",
"path": "microsoft.extensions.configuration.abstractions/2.0.0",
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IznHHzGUtrdpuQqIUdmzF6TYPcsYHONhHh3o9dGp39sX/9Zfmt476UnhvU0UhXgJnXXAikt/MpN6AuSLCCMdEQ==",
"path": "microsoft.extensions.configuration.binder/2.0.0",
"hashPath": "microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ebFbu+vsz4rzeAICWavk9a0FutWVs7aNZap5k/IVxVhu2CnnhOp/H/gNtpzplrqjYDaNYdmv9a/DoUvH2ynVEQ==",
"path": "microsoft.extensions.configuration.fileextensions/2.0.0",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-thPz4SckRGNqeLbdvJ619YxRFSkWuL1K5QqTMb3TVdEwjQj4O39yfUtjtI/XlWJiY7JKK4MUKAiQZVYc8ohKKg==",
"path": "microsoft.extensions.configuration.json/2.0.0",
"hashPath": "microsoft.extensions.configuration.json.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z0AK+hmLO33WAXQ5P1uPzhH7z5yjDHX/XnUefXxE//SyvCb9x4cVjND24dT5566t/yzGp8/WLD7EG9KQKZZklQ==",
"path": "microsoft.extensions.fileproviders.abstractions/2.0.0",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DKO2j2socZbHNCCVEWsLVpB3AQIIzKYFNyITVeWdA1jQ829GJIQf4MUD04+1c+Q2kbK03pIKQZmEy4CGIfgDZw==",
"path": "microsoft.extensions.fileproviders.physical/2.0.0",
"hashPath": "microsoft.extensions.fileproviders.physical.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UC87vRDUB7/vSaNY/FVhbdAyRkfFBTkYmcUoglxk6TyTojhSqYaG5pZsoP4e1ZuXktFXJXJBTvK8U/QwCo0z3g==",
"path": "microsoft.extensions.filesystemglobbing/2.0.0",
"hashPath": "microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VP10syWV/vxYYMKgZ2eDESmUsz3gPxvBn5J6tkVN8lI4M+dF43RN8fWsEPbcAneDmZrHl3Pv23z05nmyGkJlpg==",
"path": "microsoft.extensions.logging/2.0.0",
"hashPath": "microsoft.extensions.logging.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
"path": "microsoft.extensions.logging.abstractions/2.0.0",
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NBjNp899FW7byDsex2ch/CkwNd2GbuHQIXCbvUVqOzSbnIsYrxOaR//BY2h2apJhnqm10IPLGkcjXxUyfAcIKA==",
"path": "microsoft.extensions.logging.console/2.0.0",
"hashPath": "microsoft.extensions.logging.console.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-29Zn5m9yb4NEP+qbeLl+7F2lDskDfrs8NbrM8eJ+k/pYE8JksRUEFxHp1bcpGSfGP9w0pMQMOKrVcwD3u5sPog==",
"path": "microsoft.extensions.logging.debug/2.0.0",
"hashPath": "microsoft.extensions.logging.debug.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Options/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sAKBgjl2gWsECBLLR9K54T7/uZaP2n9GhMYHay/oOLfvpvX0+iNAlQ2NJgVE352C9Fs5CDV3VbNTK8T2aNKQFA==",
"path": "microsoft.extensions.options/2.0.0",
"hashPath": "microsoft.extensions.options.2.0.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
"path": "microsoft.extensions.primitives/2.0.0",
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
},
"Microsoft.Management.Infrastructure/1.0.0-alpha08": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6SePRVlP70L1w2JzAj6WyHPOOyBLk/i/lAP0R+OXEFI/q4HlICx/8PEZrC+CNG555HgqxsTt8IsFp2reAU/t6A==",
"path": "microsoft.management.infrastructure/1.0.0-alpha08",
"hashPath": "microsoft.management.infrastructure.1.0.0-alpha08.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.PowerShell.CoreCLR.Eventing/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VNtKY0DEP22VD/ynClJb36/5nrO46WhT/j7thgMd036dnmTfLd8KzFHIk+u4Ta2WphzpfVlDgLEFOfQDIBNoKQ==",
"path": "microsoft.powershell.coreclr.eventing/6.0.0",
"hashPath": "microsoft.powershell.coreclr.eventing.6.0.0.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
"path": "microsoft.win32.primitives/4.0.1",
"hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
"path": "microsoft.win32.registry/4.4.0",
"hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
},
"Microsoft.Win32.Registry.AccessControl/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2ngH4HhJnmVUcfruotPnS88G3ULwKv5ZQTTJSxSywOv46bFhQVbYk9nYLPtcfc9dT9r1rpdG3Zq+8GL3M4mlzQ==",
"path": "microsoft.win32.registry.accesscontrol/4.4.0",
"hashPath": "microsoft.win32.registry.accesscontrol.4.4.0.nupkg.sha512"
},
"NetMQ/4.0.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yGAYGVzgtKfN5tJn/iZa1XLmXog44Qo2jrJqWBT7I7SlYFvPYzIzoXeV/yMkwuq1eyWSou0lucuCcAJp6uxZOw==",
"path": "netmq/4.0.0.1",
"hashPath": "netmq.4.0.0.1.nupkg.sha512"
},
"Newtonsoft.Json/10.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
"path": "newtonsoft.json/10.0.3",
"hashPath": "newtonsoft.json.10.0.3.nupkg.sha512"
},
"PowerShell.Core.Instrumentation/6.0.0-beta.10": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IjshCs0XCNFmevzUnybObof5pkugWnAGEv/FN6lrhnKtogM/kZ9/1eQ6WsL4Hq1JZaccFMe5iOtJ4vGSC0EduQ==",
"path": "powershell.core.instrumentation/6.0.0-beta.10",
"hashPath": "powershell.core.instrumentation.6.0.0-beta.10.nupkg.sha512"
},
"runtime.native.System/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"path": "runtime.native.system/4.3.0",
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
"path": "runtime.native.system.io.compression/4.1.0",
"hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
"path": "runtime.native.system.net.http/4.0.1",
"hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512"
},
"runtime.native.System.Net.Security/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
"path": "runtime.native.system.net.security/4.0.1",
"hashPath": "runtime.native.system.net.security.4.0.1.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
"path": "runtime.native.system.security.cryptography/4.0.0",
"hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"path": "system.collections.concurrent/4.3.0",
"hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
},
"System.Collections.NonGeneric/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"path": "system.collections.nongeneric/4.3.0",
"hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
},
"System.Collections.Specialized/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"path": "system.collections.specialized/4.3.0",
"hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
},
"System.ComponentModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"path": "system.componentmodel/4.3.0",
"hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
"path": "system.componentmodel.eventbasedasync/4.0.11",
"hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
},
"System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"path": "system.componentmodel.primitives/4.3.0",
"hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
},
"System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"path": "system.componentmodel.typeconverter/4.3.0",
"hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
"path": "system.diagnostics.diagnosticsource/4.0.0",
"hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512"
},
"System.Diagnostics.Tools/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"path": "system.diagnostics.tools/4.3.0",
"hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"path": "system.diagnostics.tracing/4.3.0",
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
"System.Dynamic.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"path": "system.dynamic.runtime/4.3.0",
"hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
"path": "system.globalization.calendars/4.0.1",
"hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
"path": "system.io.compression/4.1.0",
"hashPath": "system.io.compression.4.1.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.AccessControl/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WJ7Mgu/BcLHQ5c8J6OAeixa8Yz7KiETbP4kUVmWsjJQgfqI2Si1U6/x1rrYTNLpNVhRmSmRddY0d8yFtJizA8w==",
"path": "system.io.filesystem.accesscontrol/4.4.0",
"hashPath": "system.io.filesystem.accesscontrol.4.4.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
"path": "system.linq.queryable/4.0.1",
"hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
},
"System.Management.Automation/6.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Bkro7D0dvBz8BXNVfHQhG/cSOHPMyhhpxhRr7IAIfpzoOUgpEnCe5m7hZFNF/c9HFngGqOOJ1Vb68c/YqMf64Q==",
"path": "system.management.automation/6.0.0",
"hashPath": "system.management.automation.6.0.0.nupkg.sha512"
},
"System.Net.Http/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
"path": "system.net.http/4.1.0",
"hashPath": "system.net.http.4.1.0.nupkg.sha512"
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
"path": "system.net.nameresolution/4.0.0",
"hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"path": "system.net.networkinformation/4.1.0",
"hashPath": "system.net.networkinformation.4.1.0.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Security/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
"path": "system.net.security/4.0.0",
"hashPath": "system.net.security.4.0.0.nupkg.sha512"
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
"path": "system.net.sockets/4.1.0",
"hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
"path": "system.net.webheadercollection/4.0.1",
"hashPath": "system.net.webheadercollection.4.0.1.nupkg.sha512"
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
"path": "system.net.websockets/4.0.0",
"hashPath": "system.net.websockets.4.0.0.nupkg.sha512"
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==",
"path": "system.net.websockets.client/4.0.0",
"hashPath": "system.net.websockets.client.4.0.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
"path": "system.private.datacontractserialization/4.3.0",
"hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==",
"path": "system.private.servicemodel/4.1.0",
"hashPath": "system.private.servicemodel.4.1.0.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
"path": "system.reflection.dispatchproxy/4.0.1",
"hashPath": "system.reflection.dispatchproxy.4.0.1.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
"path": "system.runtime.compilerservices.unsafe/4.4.0",
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.VisualC/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/dcn1oXqK/p/VnTYWNSf4OXlFIfzCRE/kqWz4+/r5B2S4zlKifB1FqklEEYs5zmE1JE3syvrJ5U4syOwsDQZbA==",
"path": "system.runtime.compilerservices.visualc/4.3.0",
"hashPath": "system.runtime.compilerservices.visualc.4.3.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
"path": "system.runtime.interopservices.runtimeinformation/4.0.0",
"hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
},
"System.Runtime.Loader/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
"path": "system.runtime.loader/4.0.0",
"hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
"path": "system.runtime.numerics/4.0.1",
"hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"path": "system.runtime.serialization.formatters/4.3.0",
"hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Xml/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==",
"path": "system.runtime.serialization.xml/4.3.0",
"hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512"
},
"System.Security.AccessControl/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
"path": "system.security.accesscontrol/4.4.0",
"hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
},
"System.Security.Claims/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
"path": "system.security.claims/4.0.1",
"hashPath": "system.security.claims.4.0.1.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
"path": "system.security.cryptography.algorithms/4.2.0",
"hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
"path": "system.security.cryptography.cng/4.2.0",
"hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Csp/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
"path": "system.security.cryptography.csp/4.0.0",
"hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
"path": "system.security.cryptography.encoding/4.0.0",
"hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
"path": "system.security.cryptography.openssl/4.0.0",
"hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Pkcs/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pC4ieF0mAVufKNfFYXvtpAkIUBgyAZgLrzDw/bwWDfdqN8H/8m3IqiiMr7cmoWYDFsWwxVTbYDhDzPpiHcxvaA==",
"path": "system.security.cryptography.pkcs/4.4.0",
"hashPath": "system.security.cryptography.pkcs.4.4.0.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"path": "system.security.cryptography.primitives/4.3.0",
"hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
"path": "system.security.cryptography.x509certificates/4.1.0",
"hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
},
"System.Security.Permissions/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ArK+Kh7BSqWhspqO3qe8R25MeUzBm3ZdWbYiN6Q0kLO3nR4dLeZzS03C0QUI/470w7pGRm7lUZ9sjfDQKJjRcQ==",
"path": "system.security.permissions/4.4.0",
"hashPath": "system.security.permissions.4.4.0.nupkg.sha512"
},
"System.Security.Principal/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
"path": "system.security.principal/4.0.1",
"hashPath": "system.security.principal.4.0.1.nupkg.sha512"
},
"System.Security.Principal.Windows/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
"path": "system.security.principal.windows/4.4.0",
"hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512"
},
"System.Security.SecureString/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
"path": "system.security.securestring/4.3.0",
"hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==",
"path": "system.servicemodel.primitives/4.1.0",
"hashPath": "system.servicemodel.primitives.4.1.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
"path": "system.text.encoding.codepages/4.4.0",
"hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
"path": "system.threading.overlapped/4.0.1",
"hashPath": "system.threading.overlapped.4.0.1.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Threading.Thread/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
"path": "system.threading.thread/4.0.0",
"hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
},
"System.Threading.ThreadPool/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"path": "system.threading.threadpool/4.3.0",
"hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
"path": "system.threading.timer/4.0.1",
"hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"path": "system.xml.xdocument/4.3.0",
"hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlSerializer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
"path": "system.xml.xmlserializer/4.3.0",
"hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
},
"Jupyter-Kernel/1.0.0-beta-7": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
md5: 0FA105E27AB32FC6BC21F1E93E66176D | sha1: 486B494CE1C8D40B2A80016A0FE90C4DB85A23A4 | sha256: 5886D55753FB6509BF005FB7C82A7EF967AC173A625811DDD1CA2FE6DD8F23DF | sha512: 4FF313DCCA494101323695D19029D8ECBA43C11C9307BB34A205A493D4ADD24FD85660362567FC025DCB0272D4FBB729C55B032D83C99A41BD5CCBEB5E1F0D2A
{
"runtimeOptions": {
"tfm": "netcoreapp2.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.0.0"
}
}
}
md5: F0137BDC270F8EDF05290CB71F19C78A | sha1: E414C248FAA036F57ACCCD767B2579100553EE8A | sha256: BD51E4FEEC590D4F70036650A42C0F7BB26E9735888977A12CEA0293BFEAB858 | sha512: 76981C1D7FA8609A9B590B28AD9D38D60D7C8FA3550533F76CDCAA9B4FC258C67A88F832DFACA780C9288017731AF871297BBE61E8E6BF936EA54251121A0A93
md5: 98851FEF8D22B3AB476D8BEEFA7D2E19 | sha1: 44D182AF8C702844E57803F2F69911D844D203AE | sha256: 70DE95DEAE3F404C4EE1DE6C2FA2BEA3FACC38D66F81E4854964C59B369979DD | sha512: 2763824C89C4D62F5E172552DE143603D1F51A7E532E8E365E631717A9ECE011FC50E61608DA1B166E995F8F7332B3407FDAC06C598E192DF68EF1FAE0D2A76A
md5: 335A40EA64BA15D7268AFA722424A79A | sha1: C11938770AE3439E43A782AD140D60DCAF8F73AB | sha256: 72F548C63FBB0BB7BE2D8F13AD091752B8C9989B318EADB1291F0EDE222C6422 | sha512: 79D359A4A919CFAA7E140F2AC76BF32EDF0C3C045603A7611C6D6FCF696A067C80763FAC93F061068BD2B971232B217F9301D743F86E0EA4C225A928E8BCC5A9
md5: ACBEC60BBA894AD1443C180BC722F69B | sha1: 151C2F1C0A455B36D9B5F60E1613662FFFCCD498 | sha256: BE364AF11689EB5E062C6CCC4C1A811E6A3DC850158E8C5444FEE373519D985F | sha512: 52D71690142384984B960924899F90FD043F8C464F0114EEE15974DFB1ED0A0828FAB2416AE4AC1CF725C7C2988F6669A1916059A24A573D5242918CB81B73E1
md5: 49837D3FC85A9FABAD46C8CBF7EC3E45 | sha1: 420E9F572E72151B0868F838D413A3303229241A | sha256: 9B2D22D73DF8305DE1B21B598CF8CA568D70EE082BB1BAB067CC150596A347C3 | sha512: D9A3B75D0D4C72DFA24013BF73145E7C3BB27613E85D224AF78FE23054266ED700710CC11AA511AEC36201F0587ECC5F2366C4C86EB65ECE1005F8BAD4CADEDC
md5: 0482C54729A296D93DA3EA28852A508C | sha1: 1568F981D666F56BA93477432601980138D7CC2F | sha256: 1D472C70CD86CF7E65B517059BAC290777CF7AEC364B92DE24E755C0ABC57031 | sha512: 7699DC052EA3D9C97F089C9E2B1E6461859C9E1B0D64C4C323E52B5207A0DCB2E14FF53200007BFF4FCF8963754C44D8827453374F33FE02F8AF0532CE72BC90
md5: D788AB9C9DCCF6DA19DD78AF1775C095 | sha1: C58AEFD00B484DA65B75E2BA2725C7E703E427D4 | sha256: AA597068558D2F52A0EB8FCF4EF13ACADB949611849FA3FF77E2B1F0CE69FEC5 | sha512: 3E064787E3E35C304829B0CADC20C48C08665BEA5925B1E00EAAC5FCF241406D8ACD6761AB37EEDB852FFF90BD115833645A6F6DB5C49F6B525C35BA7E8C5219
md5: D8DF10CF1CB4C61758CBDA9D538AA355 | sha1: 47E1CF40EF15CFAC2D5606492A17D48E77C8DBEE | sha256: B0A10DF95DD838B3118F4F609A2BB2924C7CAE609A82252524DCC1CD3963B07D | sha512: FC854E7556953C249F3CA770CC596A75FDBB8A159B943BECC3BADE200547F35A82302082F18E8503AADB6EF8BB943EF4D7EDFCC3D7CCB36E75FC122E423A19CC
md5: D802300274E98F23D6E2789D4929AA7F | sha1: 2BC4C4F373776D18A5F1A6A0DF9E5A71CE5A0500 | sha256: 4B35A07584FAC9FE460B67895F9C4875E52735A744BE32837F19A829813FB103 | sha512: CA76AC64EF58F1AF826560DAC944949C37C9E003E1524918093E0DF07F20A68687FE7F108A6683F953FA577A72BC09DCC034FAB0280A25B8BF9397438FE29EA5
md5: F4EE37995E47C74F35C034893B783014 | sha1: D81C1F03D1C97F25DC88F7B764FD46C147F80410 | sha256: 017642FC057D787383588F2AAE4E726845970F3D13B222CD3D3E7C4EAA2A497C | sha512: D73519E93A77A6ADF08CFBCF3C25DC54AAA638CB3E6C16DF65B5C9F9D5D2925585F59FE7F92CEF010969FF1BC4923D4B80DCC615CF2E3DD1AA422EA45D2D24E9
md5: 5A68EC0134A078741D5D9260B67B2876 | sha1: E3597DCA47FDB1844F6DDCAD9C160072F7D0A332 | sha256: C58A80536D0D45A6BCC93ED7ED52D43E403F22EAF8835791BEE6EC0C9CF9589E | sha512: A3C5F2611EB637D9E04BF802F206B0043BBA09463D20280FD418FC7BCB032DC817443098DE936EE4C6DFEBB6724B877210FEF7344C7B45A6EF9CEBCB23222489
md5: 533466F3D31DBB1A068B584E83766C1C | sha1: 9A99D355711FC41ECDF7A5AA8BC27186A7B98CEF | sha256: ECE1A0ABDFDC4EEA3E9E1752C2C77A79BBE40014A1F670630DC5CF10A02CE87E | sha512: 87EEC8B2C41FEBD4FA1D633EAF3573728DB2EA0B6A5388FDEC7D699012C26BF6D80BBCE5969D4415A6FEB3828DB2616A26CA9D62D2D38D5D9E9F1D85CFDF4B17
md5: 43B3755217859CA7D6EED57426A8238F | sha1: 68E6F48E8036033FAA047258E691E526DD305E40 | sha256: 46640E5DC2CDE15508482F7FC790213FF8081C303C497BDD4D9980DF651BA2A3 | sha512: 97D13531C670AAC61E42210033B5B457F8B00B2F92CC0586B143F43E04443A16F67E8AA7B8E940EBE290A49158CC233C7A8D46B452964649FEA6BF3D00F67CA7
md5: 290B06FE156A4A717BFE20447B86AD78 | sha1: 7A87E4C2495FBE5CB02F86FFC051B665C0DE3B1B | sha256: 37635C0B680E4B885E3B4D61AF164DAFA5A0BA76F6418135F0F23F59C2FA63FB | sha512: 42232805585439B4A9AFDA2E9209AC996D4ADAEC6E1DEC0D335307A3ED6488D4638DB1268CA5899D3273227E5DA094C009D10A670D0C46D72D3473F28F8D1340
md5: 95251DA0BB3C8F368F9F17E15B4AD489 | sha1: 7F32A0C29ED51014465DC8AF0922A0FC8C75F691 | sha256: AC6000E83FB9C4B16A25ADFE83C23A2E1A0B6E4F16C7BEAB1033ED9345C5F313 | sha512: 2E1A3511DB456FB2C030D774DCAD7DA57F193A17EDE5E9712F0A744DF330EDFC2477BB4A41A9981858E3811A1F30A6C3456657F1CDE03CBFDAA5C6CCB0B62C7B
md5: 8000FFCC22FE0B7CA78163A8FDA9EC19 | sha1: 51D99EFDF90570AB1CD10E9599B61BC97BDD680E | sha256: 963E7CF70E9353AD82AC2BA79D0023B8142375E53211ECD7694F0AA67236AA39 | sha512: 9C472A8F8308E7E42754FDFD8FFB460FC104A2F3382DB4C7E6C41DE45307401A5B74586442DEEF9B1BF67A9B356C115FB08E5A9AEA1972D9BFBCD65A9F83127F
md5: 02DFD4D94284655CAFD0EDFBD9E18602 | sha1: CFEB5703AE69963EF34B336ACE4F36DB5682D1D2 | sha256: C7ECC7353DAE3B2C147E6A4FB36D146CD18067C38D89C855FC7C814CBFEE3656 | sha512: CE197001F10704B82E2C922BE710033C25D064855681898A6F41FA4C03A516441C59715F3189082A563B72B067C787E875BD91D095DBAAEE4D0530B347B56520
md5: 51CEA8628CCCD2A9B6356F62B4726D36 | sha1: BE72CFB71A74ED512F905780D06F4C3A5B6E8A4D | sha256: DCB8A0CFB716D5BC68D0A61B344F10C15C657DA5694815F058CEDAE29F9459AC | sha512: 29F302EBB4653119165FACB0E57A6816B7F6E576F94BB9DAF857251AF04416EB48D4285C7BAC30542D0E374D86262A3454053A421B04D1C3CE6D77BD8A39F34F
md5: 290A4D725A61B2EF737787A8D73CFB06 | sha1: C1F752B6F5F52385681F7C76603CC1611783ED85 | sha256: E7A97D645550B02F5B773501C8541265BE368B88C9BCDEA07D8BAFE2CE7DDB17 | sha512: 3C5EF4ABD7814A682F1FCFAB3D6050F84C19A03C47B8D6F60E90205C0E1F8B860936CA8DB0507603036C07E1078FE6B7AA54E54458FDCDF56FA78C09F2C6C425
md5: 61323E4A09C17E5B5DCE768BE5F544EE | sha1: BA1DBA6838AB80CC6E5EF97ACDCED2DA133FBBF3 | sha256: C0657165B7014F0189E486814DD70228496B01989D9389DC452969C6E535DFA2 | sha512: 21AF08B60BABBFD3297C51FA16AB998E45F7D75BFD2DD7938043AE248C85282BF50B846468AB145F8AEA3F1A98249EE9B91F605A5E6A394003B425EC1D61C840
md5: 2CB367176ED1732EE4B2811464E8451E | sha1: 7BD4DE69966B6566086423F08A71C00A4EEF465F | sha256: 75AE079C455A8180D9E5A4775F304726F7B6BB1E43A579F6F542F0219DF179F2 | sha512: B6FA2F891DD656BC3BC0A2EEF6E752D20CE51E3EE9C1BE47FB2949C046B84BB8D553F8FDB6BD048E6DE0748064CB49BCEB8D721A1F951439C181896003B897AB
md5: F075F77B9ACBE90DF82FAF41DA7EFE14 | sha1: A85B5C784880C4589B17BE0121449370C86AD9BE | sha256: 378B2244424F298F644DB0B0F70DE5FED9132E374F83C4E5DADDEE1D30750311 | sha512: 13A24A8CB2A96E616322F5B70869A9931C00232152A74AD6770BE88E33B873DFAEAFD46EA0BAA675A0E260539EFC7BBED188C1813193322743A88E7B8A3ABACB
md5: 6C6F41DD045C7C2BF4B9EC4430790ABB | sha1: 96500978711571A593A3E3CA522254F40CEED38F | sha256: 5770735E96C8D405DA2D77E073BA034AF1472C1462837985E2AF8E3FA10E9F6B | sha512: 5B32412A2CA609AF643F44898D0374D69C89BBBA199DBDDD9543C484C6DD5591BF9D5E3CEBF2A69D29963E0EE46C5940BF42EAFF118D82F13C4D8D6CE4839826
md5: DEFECC3072DB3C0094280BC0C8867A5D | sha1: 26D5F01791895C8AC1BFF7BD1E7F07A7DE3E9425 | sha256: A8CE9786B14DADA9E38CED680B9B82C255435C17B6EAFFBD06C6040453C3955D | sha512: 7E26C3797688940373BCCAAAC24B0D8BF9E313B6A9A67C41EF4856AC242EED7FC8EA1409C8B841BC5A6501538083493BD3C0EDE8208A535CE4C5358473EE6622
md5: 91B086700979D84E5077F2616EFDAE34 | sha1: 7F8C4532D532A72F594BA2BE345FCD0B2F2DF929 | sha256: A5A3B0451922A629D8F4ABD36505AD3F7AA637622322667699FC0C952ECFC75A | sha512: 449BE5F9E9FF97DBFFAB09906D0BA716ADFE39A1D6268A112898E583C0E056745DA43E6F48377E4C2350221B9D23329C843D27A3A7A0311579A7938F6F7E930C
md5: 7A5B7CE5449011BBBA49A96EA4B7CD28 | sha1: E3C2973F80D9EB98ADA9B92D5A7F58758C65E942 | sha256: 30FA6EA392E92A5F4E6CD27C2A18AB366BCF3ADB732AAA1FEECC5E7640C58C4B | sha512: 16444A7199BE4BF1D4CDCA757B387DACCDE5CF51EA5160ADA2F02D38A669DD6142DED32B2A9248E1770274632EF31B93B84C096CF89F57BB77ECF38576E95706
md5: C68EB09EE386639F4900ADE6EA3297EE | sha1: 42473991239ECBB4286A55B6D1FD562FEE9D49C2 | sha256: 38957E7A619FF11B0F1FBE61D857ACC3F31497BE9BF7CF1CDD007CF2A497BC8B | sha512: E5EAE2963E054E13DA7503F6C78FAD0B324720BA9721317D2E2109A8DAC33FE38D3DA137F7506A222BFB04FDD6FE18A0F7DA5F62B1ED7E9208212608A535A684
md5: 1F6E2F71F5048A21D9111F51CF238824 | sha1: AE8D78C413E54FE57E4CC83F81B756961D3F02C1 | sha256: BDEADEC402B1DBFBDC43E8E0A500C5D5CB624E5A2CC3AC45AE5439CDE74D7426 | sha512: 1FBC94DA04CE00105DA3E9398D492BADA04DC6C72599618921C2685D1961589786BE4D1CC09083DD583A77F923727CA5AB886EC985D9DBC856D948164C3E9E9E
md5: 67BB6CBFD75732D66957644D47AEAB0F | sha1: D05C69F4E57E74AA9CB603F0B88624F9F421DB87 | sha256: 05B8B87300FCF0603AD650EFEB214B6DD5D591C7E222F4D7D18DA8E984CECC45 | sha512: C3E9B81CEEFED635C88831445A63C5323DF51DB896A4A0778390E3C1B3246DC40F0078FD13DBE9A9F20E628B75BEDF2D97F7A5B5BAAB326BBFBF2699EB56E93D
md5: 01EB21778E6A9C89C80C2FBC577FFDEF | sha1: A7D1F40C0B9A6F506292DE9CBC03A55F4C44CE83 | sha256: 4530E89F74D7C83E7E00766348DB4D9C969B31F097E85CE23AEC980A1EF4903B | sha512: 57F1C403709F0607E8B9F0A94462E77A7C9BBDBA5C857DF62894BC3C4EBC3F66D3A7EF7F6546203D0C30674CB41AD935A08D8E1000C696C965547105BEBEB64F
md5: 89AA41678E0941A1596C8A71A5DD0D6B | sha1: CFB348E986F649E5484B9656E273220122D0CA47 | sha256: 587CBDAB86762C79F4A8191A2C896C3E886FCDDE878546B192A26A5E2C9A8BC6 | sha512: 4E68D05C9BC43B403AD00CC719642257484FD88E88D2C656DD0E5D18687365B4DCF6BD52A669CCCDBAB1081D141C86CA3C5DC8B26F83EC657628A7D9B2B2B1EA
md5: E6885DEBFF9FBF1D2C1AD585D5F6CE20 | sha1: B3017E514738FC01F68C4E958E869406D3DAD518 | sha256: C233268974DFC1B351A0B8BD43AC63D97821DB7458DE6843C9E68652B28CB9D2 | sha512: 623350A6F65ABB94EEDF892014B984E5DDB5558511CAF4D420B63B681531F2FE3377B094429B8B322CB0FE02143160910133FFEE7BD07F0CBBD3A000E8212099
md5: B9C0EAA89A0D37472644AED9C396C2B4 | sha1: E69E19D273488AE4B7A45248559D05933673020C | sha256: A5B736E2D45D2E7011B15F98666024871E25A7C7E27D36E16438AC2FE6D6DA90 | sha512: 7A3F5A49337C0C5961E789A8B27D4187F2E6782FF77D77D52C3A0DA9FC3B42D84250B98199900DD56EEF5CD5966E60A0706BFD515C0C68276D0A6FC36A750EF3
md5: C6326FDF24B9281219611CF806DD1C6D | sha1: 18B7FF1B2F713BD7DD99F356818D7F26CD3BDAD9 | sha256: 175923EC5C4C3380C0B086E4DFBA0CEF5BE83EAFE6FC54B2CAD74F4BB4F37997 | sha512: 2EFD137951F095DC4366D7DD32D40CE008669760A2F7D66066CBBEBE4EDA493596049E59F53939E6D0CC0A685A0D666844FAE3260A5B916607FB7ED7393673BB
md5: CD25896ED704154A495B787C39DD3D5E | sha1: AFD59E4ABB963AFA9CA294182885F2A48D9F326A | sha256: CE6F56ECA8263B76F777C58FED84E00CF1AD793E4D5FED0E8F493E72B88B9E16 | sha512: 148D07D3B23D6F6AB804F69F305DC1E12025036FD0A4DD8143E6EC6841DC5390F7FF2FCF9EE4B6BA42A26F3C51D9AFFE5B48E492AB87FBEECF37FBB443153FD1
md5: AE1ECE463F7B91ED05DF1E3B5837BDFF | sha1: AC6047AF6A74B54BB5C2B62C70C83C618503C961 | sha256: FFC5F420D176F7135124A6E7A4462B5DCA987ACF80C36FF0A6F2E3879731F0EE | sha512: 82B1E955E4C3B845CE7BE37678FC32C2922ACD88BBA31D995D34652469D3E8A8C586D8D87494EDAFC68B53E99FD412B22A0C0DEC13D753F6540A4A9884609543
md5: 7EAD4D438604BAC1E84AC98F672E0361 | sha1: 8818D31A5CA660EC534A4B100A9495CA51AE8758 | sha256: E2C33877D6078C9B1BFCC2EF427AAC6C5AC84FBBF4EE8F769A04C29E7C3B9FFC | sha512: E4B4953555F6D4EE5CA720E9EC2FDF5637AECE3698A4B79A8D3DB6F5E6B148CBC6FCB723CB0D56288A01E3C36D3548E1EC7E97CCF1BB1743D390967F62E0970B
md5: 32BB5BCA903E32EE0CE044D1E84AA40F | sha1: B410576D5202AF955A6260E0BCAE42EADCD4B11E | sha256: 87CA3F0F769B40EB6BFC15DC99E5198656EA5BCD32D57A515A44FCB59129A32B | sha512: 524E373093D92CAE8DAB7CFE5C92B7A11A7515A257CA9C53595526477ECA38034A539567D02624B9105CC398A6483A10700048A529D3B5E3B0EE01F28AFC79B8
md5: 2465953D54076504A945202CFAB77885 | sha1: 6047F894AA62FC74AE58435202633CBB7B995564 | sha256: F04C71225466470FBCC38D0D532CA7D61B7FCCBEDEA0A0CCAB5101138303F09D | sha512: DE6AA3CF5FE9D33725240EBBA241EB9FD6A09789ECDF2C4163598658768541D83485A42CD40EF1F2948F54C458F4FD3D4FC97F09400BBC36E866FACB26486627
md5: E4B4B2CDF3D9B51DEA54BCF6956C3075 | sha1: 74ECDC521685826A3AD06FB934D465CE5D37959F | sha256: DFE1351FF6343BC2E8C0C13223D4BED1566D21D8DAB3998E31243ED34FD559AA | sha512: 49B598B021E677613EFF2A3A3492CB0369D823963C49C29596906E60B5E4B831F3CC6B02B56DE377E0F9FE391089696D8DE1928276A6D51AA5B8E77C44E0F7C8
md5: A8965018A95D55CDFE9EF23AC6E4D820 | sha1: 146A45855CB21FF0325B95F052A9EB284131C5EF | sha256: C3AC8B1BBF5B04574CF1FB7774D9F1DF60A96E218FB5A6AB58D0B2F9452F8397 | sha512: 9F8E6084D2566C8C68BD812D0C0647FC72D4684BF1BD7D06BB8DE9F0B28939C9C46BD4E083249915B377AB6A4682C89DC0BDF9E3794FBC70E570A7CB1D615276
md5: 2D4A6457F8083B309D12C20CEF10ADA5 | sha1: 5375EA64DEC0BE1860F78675D5C614E0FD86E035 | sha256: 5B54E7D4A9FE21E616834CD25D60E18C3E2AAB8D4CB239988A2423D6FA027B0F | sha512: 124127F00C2DBC6A6DA467BDF060A946EF9C4E349A2A12A9E81E0DAD258CCE8407E76759DCB6663B8C7151631936E3E040A641F2FCF99B04353D218CB8349A96
md5: 9A16194D8A8DFFF94E92034367D6144D | sha1: CCD8ECB27B429D0344C710447A36326632C1F810 | sha256: AA322248CEC81CF5FACBE7E359EA2B8E19FF22CB5ADAD7C67E9458591906D7B9 | sha512: 5394403A5642A87F5145F35A916B3CB1F355F8F0EB60D5427CDCB39030D6FFEADF25BD16840B6BEC2166A2429F9B1E1583681464A02E81EC9279C57D11001DF2
md5: 22121D0944D6C39BC76CCE2994B29429 | sha1: AD7F78ED7C7FD59793FCB1B0FFC4B5A8455142BB | sha256: 7CF662238F5526745F3B0A7191D04A91D1B94A25B94B3E4B53DAF090F490705A | sha512: B96DBD2F7F553344125E98C0ECA876F4560F2000CA8AE5152836E5E9A3792EDA45934F75D9AF8EC9A67389D17532B6AF3CB0E54F70D2D35F8C29E7C259A63C59
md5: 37BFB0B9A5FF4763080A3B2D1931E9C2 | sha1: 92F9279745ED827C9A93655D1810730796E5C887 | sha256: 4E62F338AB6E46103DF1F4300F18DE5FA8471C08AE738A84E600F2D85B2EAA57 | sha512: A291A622D1CF555129417C4A9DFAF9401DA86F8F0744CBFF0337ED928CEA4589A35F3AF0476357D255A9A8466F3E7927D7F2A5E7B90438BD480CDBA1E58ADEED
md5: 08F1956D8A3FCB71E9EEAFD54E2502C6 | sha1: C2204278E870BC16B26BB74DF0486E3FD3EEA04C | sha256: 338C6C908AD8EFE73BEB89D25B4CDCAFECD3E91037491D9E7DB129BCA19E0140 | sha512: E0767BBBECF3A31B1A9C3D222E7A5293E4C2BA746A3322DA1D83A7694618DF8236EA6440354E9732704C65AE31FCF6532BD97903D7B17EB913C0CE85BE921E73
md5: 54E3AD56A48324C34CB487B89154C87C | sha1: 0623E50023072665383AA0FAEBCE38E5F2B0864C | sha256: 9F7DD11083E023465EF1A21D796832FBAFF73C7F2C3E1F182DEB92A02C21D893 | sha512: 0ABEB0F111E20D446D9B5E63DA072A09DA7D22DE6576D12534C158ABC37F48AAB41D6DB1988FBEB728F980A51CAB4B0A207F0A9E430AFE9C6FF760B87FCDB55C
md5: 0FBDAE8CC35FAB1E2E6649CB96FE066E | sha1: 822D907B2651B1804441CA3BAFF05AF6B4E3A535 | sha256: 5FEF6867166DD83AEF2AB4A7DE2B84EE112CAAC34C9AD15D7A5F26184A226099 | sha512: BFA95FEF0E47F9F7EA7AAED1A4731AB857890F80A25F0B8CE9CECFF67F2F685AC13A9C1BFFC05211CF1E89DFEAEE5BF89696C0090FF0678F0952FF5F06E0D08F
md5: 6E2A24ED62680564A11640C3FBB976CA | sha1: 7260304BD1E8CAFDB7EB659B23C480685F4EDED9 | sha256: D1F7E0CBFB79FB8EB465B5772F1DBAB965DBA19BC97AEA6E45C12659C71616A4 | sha512: E4FC4CD609E1F84C503F4DAF07668929055A884BE0DF6E325E08BB5B7596E7DC9B1D9A9EDA8B32764D352E886B88C64DA4FD13E735E40E877AD04E7ACBAD2BBE
md5: 9C0CB9FDEF7DAE8661A96D7D831C5348 | sha1: 8BB87647566B51B6573CF24C00ACB4079939C4F8 | sha256: 4E0D80A48594271FF90B8E0C54482ECA29A90F9A099228B64524F994B991D6BE | sha512: 00BB80CE1D73C2A5971BF35388251FD6EAEC307ACC09BBE2710BAB0D0589637246C5315F21D390ECFE52F35AF6B571BB975674E9F1E04AA376224B584B676077
md5: 1B3A371B37384BDBBCA4A74478CEC90D | sha1: 98AC35928629ADCAE161EAF325736631422F25D1 | sha256: DA027CCECFEAA6E5AEAAA0539FAAC988C0CF0F564EB0CE52D6262886CEF9C7D2 | sha512: 7A16B23DD07FEEF69CD8B7DE4B7D8F9128D48837CAB485CEA243F222B0B29611DB6E8F4012B06E3BD6D31F64EB659FE4BF111A4A02AB14F03BCF435DDC68E34F
md5: 9CFEE3E941E4F352D8669F4033AC95CD | sha1: 75EA2BCC97D93FF9D3C761EFEBD27EBCA2A2E28F | sha256: 426A746F85E536E52B51C97EB4C3E77437397EF016E07AB0046BBCC198422195 | sha512: 268BAADB9FDF9A0ACBCF00863757EAED808E1520691666EAB07D99E3BC0B4784D591EEA2D2CC70380C82D82ABC9EE1AA7BC320ED3E6EDED3AE0CA8C8D2AB7351
md5: B5B6697C34A88AFDC5798E25D7052BC8 | sha1: 5E7D412EE7F6087B0BC2F7C43F4D06ED677FD05E | sha256: DC4E2D3538DC1D7313605EBE447E5FBE860973FA2201E6CE46EDE3D5D7D59B2C | sha512: 8D7C9CA66FC065D6E4B0BAD027C3ADE5DCEF41DA0E04C606636CEEC83AF2267472A3ACDED99AB112B618DC15D705E5C810EC713233BA7006EA82955F77F46D0F
md5: 9CF917BFA2F8A9032120240DD59F7416 | sha1: 04921ED3D58EFF0DE9501B040A4208B5287BDB2F | sha256: B0B60A1F346D0BC914665CB97BCD9A0B7855C3704682ED6AF58AE21881DAF47F | sha512: 4107E44EA2905940CBCB4F5C17DF738DBAE50673ADA018EC9920F3E73B5A03BC18948BCE560A18D987E33A2B68C73B392E2C222B6F71A26CF5823DAC5D0CCFE4
md5: E5FB823CF614D3F3FBF525EF2AE6DFA6 | sha1: 2794415CB71FD64F50ED258A92FE1544A36690DD | sha256: 88EFC0700CBB7E95D4148ECAAF60EA0DB2FB9E2AFA3F7ECAC4DB22B960F8803C | sha512: 09D5ACA864B5ABC34D82A33CC73129DF0343669DEA7906F2A3073D0821A3DE3C29B4AA2FB1D3ADD6FE5DC4973B36D7ED073974D73F74B2597E7186EC563013B2
md5: C09881BFD1432E61C18CFAE05790F847 | sha1: 054C0992D2558D673C2DD624EDFC924B517ED223 | sha256: 76FF5B2A04EFA7740B061C3536AFACE71C3781EEB34655FAD06FDF142D03C63B | sha512: A96737F127C8A4A33C95F91A67265B6BF1934C897AAC777D71B662D5A413863552F8A6806E22FBB0ABA005E6225F2C226D884A9025787AFA89CAD2406FB5A0C8
md5: 7F09570C45A8FADBF9455D23E233B2D3 | sha1: 95E0BE78468270B11B643482B2A55FA582D8C290 | sha256: 6F7239B552C5B8DBC91A5CAA025BA7C38FD1845A9CCE28EDD9193780DAC1CDD0 | sha512: EB771D42DFB0AD695444F59C2DE112DDD589CF013377DEDF456FDF043F87A50DE5A9F8431CC8988991CD71F96A7B8F3D3ABA1760F6769C224ECB5E3618270C6B
md5: 08C9BFEA3F9C86687079E07AAF4B5EF4 | sha1: 32C633C44AD26554586E0A113BD49CA6D922525C | sha256: E8C6FEE600BB5778C02DB8F412D2F2149809B9CAFB0914BC4AAC6A51187E4DF5 | sha512: 6044F1DB84C66FC60818B623225D07A1E29B796F498D4A6A1578ACF8E63702EEF67517FCEDB1C06EB090BFDC0C047CDECDAB664C61523D7378DCF5CCAADF2706
md5: 9E458AA0D8099798E7B0486328285F79 | sha1: 93843D2935FF91822F7BFEAAFCDE215B5EF3D026 | sha256: 9FA052A3D309F02B02DCB8423A2BCCE8F525D14F2D67F85E29837FA863A7B769 | sha512: 75B1C88943BFC33D0C2BAE42E49C22CFC3909A0867DBBC6A1A8D37A4C610F873BDA3701E9FC7E92070E876A72C2FBB4C9B60CD1295465F2CB004B9F3733D71B5
md5: B807268F69BAE7E7600CF1AF580F94C7 | sha1: 19DFBC45AF5A595E502BDB41A236C24D0AB43A84 | sha256: EE4C613103DC4A273FE8214F453D43B6798025C9B728B75714597E392072F90C | sha512: EE6EA25ECEC562F37E2E7275F3DD6C85DB61069377CD29C5794ED20B93CB87ED779135454EA98A3CB9FCD556A3A122543FABEAF5701EE8628BD4ADF16E6D1A52
md5: 457118C8AB56D3E31C28EF97AF2BA81A | sha1: CAF661A9861E7F074FF98360E0557ADA0E0696F1 | sha256: 9B97A0904DDA270A8021E6E90AA8B083D8C3AFD0165B85DF21C0A090B8A0985C | sha512: 5643CAAD9BD5515A27778A10500359DC7D5FF45D056B349740BA9DA36C6E707E4445E8E6339098E685BB794989200B8A9936BC2D372CB5A209B2D6A0A5CE6366
md5: B66C288C0BC898F853F7F47826817716 | sha1: 718327D66D1F9B624CCF5191148262701C95EA2A | sha256: B114155303650648105CEA43B7B0E27A3094404AA700949332811480DEB126C8 | sha512: 535C0C3E97E90BAEF18417B2183EE30C95137FF5EE9FE7126A6CCA5D071DB84621477249F88052B442A58582E8DE41BB44383C84CB9BDA70EC1AFBD7BB4D34BC
md5: 916B855DEB5B1BA72A983D1D44619D03 | sha1: 5FD2DD4F82D4D9920FA80C9966AB511222739BE9 | sha256: DD0434E6F3BA0A978D0DB820AE7A1CC2EC413B0946F0CF33ADF1B013936869FA | sha512: CFF6FBBC45B26CB5E139F25109D3859B77C59D9827D827034E12DB95A13C89A84CFAAC4611E3DC2E3590CC25149D9513BCF983B4F083388C0677B4532C89DDF6
md5: 1D2E6F359994CEF7E9DE252CF0190200 | sha1: 6A19ADF3F0517BE0D5B59AF5D3C1F5D84936434D | sha256: 685815F697453A3F87C05C5840F5DF70CAF04F3854D20BB2B7ED5A601E025564 | sha512: B7C0731D276CEF505058BD5632492D094A9ED6DB1AE00CEB6F8CEC5DEB1C103DA3FF1593B9E442C33CB99265C0C71D4E8A20D6D3D8987EB0116918CB9A0314BD
md5: 68B1D7C652A6BFF4877702295924282F | sha1: 212993E657A71D97AE877DA7E14DFAE9CF8575C8 | sha256: 104C64F8427AE85BD98BCDC862998E7B85FEE009AF91E43190E53DDD49EB9840 | sha512: 045E325564F9850D993508D88A30AD5E921D86B7ABBD45A1AC03BA44EF2A05AE51277ED49366EF3B6DCEB7B4FEF18BB0C3A89E23BC34AC6DAD2ABD278610A967
md5: B2792F73E2AE56711D8A9609150B680B | sha1: F4E8ECCCCC92F11A5A46A1D603882397403B536E | sha256: CE336909941800B36C92EA665444E4FCD41CA84D2B270B2FD4025C96C13187B3 | sha512: A55A854311ED136D359631F7B1726101C84BD07B52FE3065410E4CEF1905276BF888BB810CDEFFCA13B4214F161C30B878646FBC990246CDA0DBF1F4A249C7A3
md5: 1151FC5E77BAAEEEA6BE0EA96B70C68D | sha1: A14EAB406532E0B6818FFA03B8134C4C9A013845 | sha256: 968AF8E2FC8E9385FB7311D5E9DB42A80D7E47E3A88B2A40700CB06C4548455B | sha512: 303BD6452E608953BB5676B46C5AC10CB575FBBE10AFC3712144E63FAE32E5AA42546C07F4178AA1257105CD8251495CC344D3556853E574D9760B0635264552
md5: BF5E1F009062C62776B9C1BFA1AAFE96 | sha1: 911E8119087C6E97DDCF28D0D906659C41FA01D8 | sha256: 4359A7B69ADB1AEE50BFD983C5B51CA7E7E381D4D643C7FCCF315C7F5AC25C0D | sha512: 35DDC5DBB508D650A9BE3C010D75A84B1BE1A9989D5B427246148551E4AA513453DA83CF4F548627110AD1280DE460F7B98431C76A8022943D043072B423FFAE
md5: 8B5474881EF32F1D70B6A42497F513BE | sha1: 610F1A0EE21A40A56B4E641E92C2FC0EE6EBFD8E | sha256: BDE7EED1EF279A80071DA35170802AA817A469A2F82E1245B1EACE88933230D4 | sha512: AC471829370621C4BB64436832EE6002679176D5105DE900E4F853519EDC2FD86D67382D56AFAFC41F126F30871A1ABFC8E2C1A814C1C81EB71090112CFC3BE9
md5: 327FF665223528B40A61A52FF62E4FBB | sha1: FAC4C274A5C2111CBB22C0611BBB7F2013B161DC | sha256: 3D002DE8B49FE8A536CEC73C42046609B48826075DECBB037C5E4271A4E87D0E | sha512: 984775308BEA5F182AB822A2D1AD8D321389BFB707A2CF3317B5E5A97FC16AF3A1C1EB01B2492FF178389CCC5D8F1C078258B755471FACFBE0A40E01410E1263
md5: 9DACBFC6987E9A10E428DC9977571A38 | sha1: F33C9355F73E466F0078448E612217CEF10BCAAA | sha256: 75619A03F90575D94D5AF3E8754FD97329F28FDAA940F7858BFD791CDEA49E65 | sha512: BE8D74F6109C127BD2BD836AE553FD917D04B505FCD9B39B756E32912BD85435A77D89686B45DBF5699966643536557DE5ED7837328037B10BD2F6D68899F99D
md5: 86654A0EEC8C3110DFB2532487338FB5 | sha1: B9A4C30528C33D5FBD131D4E7BC8731F1A00F9C2 | sha256: 735B3EFBB06CC23F3595555F98BFF52921C0670A572986C0FAA39E59C8DEB166 | sha512: B9C754C873A2DB52EFF0974EB5B2A3FAB7E452FF97C167E2CD779523C3928F93F6973618D5D3669A00EFD9A860B6258B4F30A7B2A02EF821EB488A65A9282765
md5: 75132F2D19DDF50622E33D4CA210710C | sha1: 6720D2F8057289CCE4AF444E8E63429E3C477F99 | sha256: 58C5DAD39F6BEBD4FC289FBC9573F0C3B3402DDB09906F037E8FA7CE96070300 | sha512: A7E00C154B11145DB0EBFD4426A7413CDADE91D0710E79B37B8D105A3F706D7DE75EA1F8724303E2EE4C316D431F2E3134516158C65B02449165D9A882D8073A
md5: 6F3CCA084046A16C91F64953BD6AE66C | sha1: 70ED8EE6630E547125267DFB19FD2B14A0875EA6 | sha256: E51F1960C60E65C1E28869F5A296896803F24346580D49BDCADFE63BA46499AE | sha512: B7D3CB5798E8069FF72B451A8E03E3F31EA67455DAB9C14369E4F616B8DD5CD53242994A66CB58C7FD2D478380EEB79360F421816F6D2C1AA1808D4AC19C1A5D
md5: 60C04F79259CC1A589B4ADEC35E51104 | sha1: F9A627228B6730D7716682CF196D24EAAFBB31D3 | sha256: 4794DBDCBEFBEDA2398CC8AFDDEADD67D5D73CCBD6277BEE16C5CCCE2CC6F97A | sha512: 8BDCF79F1E3C9F880CFF5ED27900FE826F6E682A6B7D4BB96B70BFCC7620654A5D24D7B0E748AAE84EDBB55F2ABB3B2947D0774A67C6EE749D2758AB96581731
md5: CA92158A2CA30F559C987042B70C1B62 | sha1: AEF549795C022258A0108B2666863043BE72A01E | sha256: 5F126C92C5B135B63BE00C4F9F12F275E5D8A20F84BACB91BF8AEF9547D5CF8B | sha512: 3577E4303F331700C9E225040B10F853BFD553AC405E128A9C88E42F8F097B976B2EF6AC4887F7DB5E71D6AEA849A4A6CDFFAE9E568CC9CFA9D308B49040E2C0
md5: D921DE2A9BD56E88A8739C13B62838A5 | sha1: 62437B4EB1830437E72BD870EE85DFF344D4F5AF | sha256: 9A062D1ECB59AF4296CEEE724BB91DDE2C37B5988E045753F3B87C54EAA56647 | sha512: BCCEB2EC4D8999E011686F02F863AA9760453AB21BCF0425710A5229BFCA70396B15C5807FFE8B95A3EE65C2CB97ED6E6F9F1C43360339B54B776F5EFBC1862F
md5: F6BFB173119F48EED8B3616A3FD5464F | sha1: BA181221ADD6B9E0C0A72E96C3F5A6A852C6920F | sha256: B863F1B8FD50BE74C9504765F3E744E72C463372282B48B979D644BB232B3DD0 | sha512: 4E2A89999B945033284B23FE47729E67C6AF4B70E0C805C60AEFE89C82FD6E195F0E364A39E4CDAC660ED5BE13706D6B43832D70176DDBDABF2EA4CF617366F3
md5: 92B40AD6AEDFB662579AB43F6120931A | sha1: 1BC6E351FB37D921780739B090D6A843E330D569 | sha256: E12369D576D9658BF1904B3EFD66301396B3E59BC606669469F30CB8A2BF325D | sha512: B5CF3242459A69E50E60A34DE99A214880A9F9CC2BA02A42BE00E35A9CFEE871E1C9B619A371040675BD6D52D4B4A8489F003C6ECDBF774CFAB70119A853044C
md5: 187767C79FC406ED191B2B43D9C251A8 | sha1: FA1C4398F2AAC28F7A68796741BF8C139EFA15C9 | sha256: 5B1C77B11B714EB6FE34A8B630B9BD647A668AE6B4D0A7E0229CBF3F2461C722 | sha512: B2AA4311078D308B3214A6DC1AA4466437C057DAD098DA8C069881D923A8A43E4201074A79DE5694505C8A765C7BEECE08CC15B70EAFF1DA64B5521320B78EB9
md5: DDEBDDF19ECF76882309E8F8F1A1C75B | sha1: 3E3DDF9AE18D41CF2BC44CD4B19539816B205FF6 | sha256: FD4FEE1BB2E7B92F48959BA57EABE1B4C2F1BD4411404637FB43E214F27C2809 | sha512: F4CD08E54595AE140610498B55FD125BD08B42ED7D4572A86E7C70F7231E788B719ECF6A8CF0490C3DAD2FC6456440546B027991710E2AB91ED7DE90452258AE
md5: 0CD6938593B1785B4AC087F7FE5C47E9 | sha1: 212628D9551D605CFDD47F1A48690EC85DDDBBFE | sha256: DC29C10F3DECDD8A11A9B849BCC0FF60F4097A23E33420CCD7583451F7321D33 | sha512: DE6B527F2F96D87C8476814FF59B272E486E0A5A9694E90876CDAF743E35D8A620A90F1F63060847B7EB29E42906A39D59302352184067A1AB1845F52D4A1A53
md5: B5C71BED0A0CC2DB2AA02445A4AFA774 | sha1: B6606F6BEB39A2F1645E20996307C21DB1C569FA | sha256: E0E19377694A527C7BF905CF574E96FB6FD1F5676771D5F7F9FE2D8510EBFD60 | sha512: 643C86FA72975FE9E5A8DF23A72432544046C8964B2D561EDB517010ECA897A3A48EDFAE7C727F8F534A2F7DAC7DF3C963EBD7049C218A349805FDBE069C86CF
md5: 411307CB017D8FDBA40E5B40CF5E872A | sha1: FCD7981808BCF8DEED636829B27E53AEB8816D88 | sha256: 77A419FB740D2C65239957DF1F85041B13A24B5FE5D6FD71AB379E88979A58DC | sha512: 5C6AD12E2B2E8DE46ACD54FAF28AD1382216266634DB954BC134449866B1EEF9344AF8F233E52F03602C6A16DF36894A0D280BD8B69776A1F58088C0ED0AA9C3
md5: 87F6469AA94C993D51805A8551DA058F | sha1: A65717FA29AEE272D7BC39287665C583C90BFF3B | sha256: 413B6CF1A6A5B2188F67EBA5024D638FD0266DDC9E5931B85BD36AF06C227811 | sha512: 7674294FF64C8A17F24DF00145073A2F330ABD6EB1D73381BD802BF8150B563AD735A980F68AE50D54582F9E32B48031370E8551C00228116324260FB3443F7B
md5: AF1FCD291F64BBB4105BD1A7EA463730 | sha1: AAC1962DCFA24F6544D03E6AA60BE20DA08F937A | sha256: 8370307DECC248C4B96BC06B4E7379E542AC954434E876EE04BE6BB461E74DBC | sha512: C949D710EDFEBB79B9B7934C8C70A03BB791640F30DF7DB732E7C29AE9FBC0E3B4F35B7CB272C83D4AF0C39804E56A693C3B18AC921474DE3E724BFAF70995D4
md5: FE6D1F18928585B57991E558FE8A4E98 | sha1: 079DE8098D3356D9C5E9E511A3EAA5BCEA916CAD | sha256: E906B2D4C613D3AC32375825DF501A73CEF7305AB477714FAF387644CF76FAAB | sha512: FFB399612F21FDE3D5FABBD7AE7219F104D768300E099A633CA6C8C69C8D64996BFCD2A8309EB7F9849352361AB5EB38191C53A3E147570EA3B2DDD95DB2C31C
md5: C7AF267406FE127230247A42390BD660 | sha1: E1B27D7511B67A649C44097DC3D012A050FD297B | sha256: C0A22F070079CE8A4C3DFFF9215C2227D345D4545AD14D6EC353BE74ACC0907F | sha512: 60360B7284E302BAC9B35B92064808E9D2B558FCBD7AEB2A7E03D7F95C90FD3A46934A5EFA21ACF31D12DFBC97F304862C56A2215153A9ECFB238EF8AB6C256B
md5: E0D142B1301D8AFEC3D64FAE587B1383 | sha1: 59C72AF9D50F784874B92E6AC3ED567B875EA62D | sha256: CE9B347A4CF35C4ED96E1343F3CE84CE6514BE680347E59DE0F5A29F6EE6FBA1 | sha512: D50B803CDF4A400FEDAD355EF6B09352F8642B11104EA24A5F47F708DC2FA758A5165980EF8F10F50CD3C3EA6E1D97BBBB822C26AEE3ECDA5220A654A89E3560
md5: A1180CC66D8184B3F713EFEA2569DD0B | sha1: 973FBBBC1C32A5EBB3B69BAA5F8134786E22BA37 | sha256: 6504456B966FD4702BB8103234865051AAFCC23CCC9D8A248DEDE3D7A409DE14 | sha512: BDBDBB1AC79044D8791001E514B59C0CCB709C54E51693469D4BF0F724008629C21DCB5B6F03935A99FDD3B26936B668556BED05299569C3BA06B899AB38CAA1
md5: F33CBE589B769956284868104686CC2D | sha1: 2FB0BE100DE03680FC4309C9FA5A29E69397A980 | sha256: 973FD70CE48E5AC433A101B42871680C51E2FEBA2AEEC3D400DEA4115AF3A278 | sha512: FFD65F6487BC71C967ABCF90A666080C67B8DB010D5282D2060C9D87A9828519A14F5D3A6FE76D81E1D3251C2104A2E9E6186AF0EFFD5F331B1342682811EBF4
{
"PowerShell": {
"JsonOutput": false
},
"Logger": {
"ConsoleOutput": true,
"DebuggerOutput": false
},
"Debug": {
"BreakOnStart": true
}
}
md5: A7CD3B65BDB7774437272616A2B43842 | sha1: B123B2470790D487480EDF6CD4A91CD430AC232D | sha256: 20CE76060F82B973B2F5BDDD6778E8B69A40C17A4B84990211EC342CCDDB2ED0 | sha512: AF2650A6C6D252C740D18374A1F256C604F1255D76C9159BF97B92A1D0D6B596BB462D743E9C45EC87B3BDDEF3B5137B3674CB121A1133311FA557E7F017E2CE
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Tools" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Principal" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Dynamic.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Timer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.SecureString" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Globalization" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
md5: FD7B4A2EC52A80C0A56D3DCCE67C9A7B | sha1: 1D05AB1F8DC61A88B490A7E4DC94DCCC794271A6 | sha256: DC0B40AD0C2D2C76E2C07BC97E0D5775AD14A571A3B9F43588C8DD656CDC8185 | sha512: 2AF031985639884DCB3FAC11F988D564714CE6BFE9AEF3340928A12F6C4B3841CAEF343BD3750797BCCF1707B08E203C4F78400D7A926CCA96BF7F2DA4ACE2E2
md5: 3B4F37EBA10264633F5C648B09190F8C | sha1: F5A688EB390240663834E91ED53EAA32B39EF149 | sha256: 5A2375D13EDDE67B828002CE3AD4228834E21A4441DC1A4B8D36582A30456B29 | sha512: 0481B31E75A19757BAF52C9755D7100D37582E6ACC5951058F8300277D9448CB9347BB53567D7F8634E6DAEDCCA483A343B2F159FEB47433F8C7052BF6A99A7C
md5: 74A36649E14029AAFB416A898246ED10 | sha1: 517A3D12293CD063355BF4C0054776AA4710C049 | sha256: 58A098C528DED6BF8E26F4C9B62D0E202B706C8B6AD399AA4ED0E621443EDA3E | sha512: 02D35434DBF9E7D3EC9077B22C14845D920D97ABD2BAAE6FD550EF052D85C39B320504E0A0E052558B0FB575A1EE237D9AC4402E802F803A682626C56F21E5DA
md5: 90220F86D4C6A1191D5EE7E05156135D | sha1: 65268C45A3437CE6280F688711E5AF635F6B8BF1 | sha256: 9DDBFD237D25C610408B3B0A0D569F587C9EA8EE42F5DA35F878EB7FF6A260F8 | sha512: BB0F1DC6F60F178CAF1F06B3C05879CB47E00BC02ECB9D8D76952C06F79EF67C311DF52AED3063CBD4642EF2B34924339CD4E0C2CF5D448DA64D54E48B660248
md5: 633056851A5A9A26E611CFC7A39DBB7E | sha1: A813799931ACB6D6188175E12CF0EF547C0EE0DA | sha256: 011026C75667CE018AF721C7F713766741408E6667C10AB21804E8C27EAB4D94 | sha512: C3C18CD16200A7753FDA7F603A893EE9E5F93FDF638AA8EC846D33C46E83FB6772397BE94CDE14FF45CAF25061C28F1E1730DF1825014427C51A8593D919C165
md5: 9E026D74CF08CDFC6F6ACCDC271027EA | sha1: E8F0F3D77797E7D6D072C7B547DB725F52AB4801 | sha256: 6B33F28A55619378892DBC2866BCD1AA91407362F78CCBAD13D3AC35581D219C | sha512: 4C972A79070C6543C3093B45A5C06A88D3774E7D3505006143D469F06E6A9EE6A2699FF9FE4D916A45F57212D019CC041058401D66EAB68A55155D8C78A34ABC
md5: 9A5BE015D0FE480984D9757D9CA4CDCD | sha1: EDD285BEE0EB6DB100BEC9D3B53F0A003A9D6EC8 | sha256: 08BC8B16308A2A84EE9CCF74BAAF28F6C2916E2A4A8043F42251D1EA109245B5 | sha512: 4ACB36BB05A90AAF7061AB6858C844F1DB3CC4CA712038FB6F50FFF1C0043D0AED67A9B35E7446E5A0C2A363017D7250CE17DE2EE1E997DF991A0D8D7CCD59F8
md5: 9D8D73D87FDCA370BCC0F549BA865120 | sha1: F3018055DA8A2BC1599F5E3182440F354E59B9DC | sha256: 9C1C61C4C55126C79F1C1461D92B516BFAD0828DC37E008A61417338809DC0E0 | sha512: 2D4241FA0975F6E5146D0F3AF5904F1E27217D8E883D73B6B3FD27A820E00560EAE7B3927A3D0E7BA57F755FA2323CB60B277721EC3EF0366D0C5B0F7EF70A47
md5: 200268DD11D58FA47356D7B2CF6AFE3A | sha1: A68244DEA2950F1A81C6291C83AF83663810C4CD | sha256: 63EF906DF4236C2CF9606FDEFC017D5C39C71AF3696F67CFBCC91125E04C04A6 | sha512: A3CE2B0B658389823C080A37A801963C1EFEE74687F92D2155404E7A2E3FCA4208B78C97A6DBCBFF7528B085712D5773CC58ABEB17D2857954BE5394EB74CA37
md5: C9C44D9B9E98D04187B1F310560C316E | sha1: 89941FF045C6B770D768302D33380A52E5CA415F | sha256: 668BB3698DD65A8A7C13F90B9EEAD476FEEB1D5158085AED350A8A4572782B17 | sha512: DB991C085AA70B9765E83B653741B07B9A86090D8D6E4769256DE630D470DFCF552924DE84F7513B5ABC40C8648624E6B85E311A2DCE414FD633B9BDD527F226
md5: E27635DC11F4F3C5052958996113504D | sha1: 8A3E7D402A69B3C433CDEFFBBFE20D8EEC01184E | sha256: D90EBA0300A98E873A412CDD729FEA5F743B068D02FF48A6B0844DDD7986A2E4 | sha512: 87A8E7F80FC596286B9768409A90C30C2A090B03FF956402DCCF9885879E781F5E906FA53D071C339805320E3155010D7CC2EEA03132F21DD78A12BC9B93B93E
md5: CD7759328A0DFE8320D3A6EC0BB6C114 | sha1: 148D1A7D451FEA5D1E6DC28E8A9B8C7336714F9B | sha256: E940000548A2C697CFA39DC813F28F4BE2273DCD15603472E618A58BFF7FF799 | sha512: 9B70FAC50AA4B2949BB09CAADCAB73B114702CF6EC1618359DACEDD444450267584B32EDBB6AF1AB718BC6BD10DE5FE190F9A0919EB0C973B19AED8A69AD0E2C
md5: 9B15E9F89287AE1640B19D4F10B1F72B | sha1: 35DC45E1F929BC600260A58FD6E13759A89ED8FF | sha256: A4BE1D8B821E285732C67B497D5B21E7E73517A84514CE1923F308DAF543AE3B | sha512: 857E7F054CF91D5B02CACEAFB5DF88FE47715F2A3D529A0FDE7DDDD4D4EB8E59AE5D09DC64F7ECBE0081940A9F2B46BBF74196064ECC7327FF9210764AB3EAF9
md5: 481950F629624E2F37E4A5FAC83023ED | sha1: EEB73419B334DBE8C50364612F15B4CA172232C0 | sha256: F2D4B4B02C1A4F19B1A19095E7F3BA176CAAAB3A0F48311EFC8323DFF2342946 | sha512: 3048D3B6F5F426962E0D7FE4E0F08C1BC47D58BA62A4BAD3274B1302ACCDAFC5F16331167B8753F27BF29C4395A511642A2780360C36F8C6C39EB21E2C1096A9
md5: 41FD9B468891AD9921115C41FB9CF31E | sha1: EE6380F3C2FC8212C68B4AD48754D5932EB63910 | sha256: 9D781684C2F03CA87A58417CAE1FAC7E781D813F4F5251A7A6E4761BAAF3E1B3 | sha512: 479A597AA316608AF40834BACFF4998D992FA11CB2820836BCD1F9F2382D24CFBDF5EDA8E2EFB8A2001F10F31A198E46164362568E124A0184A2C26CBFDADA69
md5: 221A30BF95C70EF027B7067C8CC6094C | sha1: 67A292FC42645BFE543EE41980FD0EDA6D3E153B | sha256: 11F79A51681E9CE3FC4914076003C7ECB72C478BBC65AEADB2556EEEF5906C5A | sha512: 2547581B70B27A78B788D51CD25543752CF8E0D17D73757725ED29FC22F4A5E5A35898702F8C903F2743FE39ACF29D2F2DE928D25CC4C79DC8ADA0FD58D6755C
md5: F5BE288B129DC7ADEDE937450FA0FD42 | sha1: 5B4FD36F7E26824A3B153A09B3D4EA52F4CC6F72 | sha256: 199BEBE5B7733691439FDFC7EF614981EEE60E2FBB698385C21C160EDC9181D7 | sha512: 62605212BD3EA2FAF96C38006EAE59202DD17A6ABDE7652008E19124C22E095AFE7157D4054751CE3BA5CD1CF83045F4745C6AE8A50558EA1BB6CD78A6B1E3FE
md5: 75F44C6CDDCBEC81F6653990EBB451EB | sha1: BD6CF98E524FDC62F27DAC03E913EC327CD65D71 | sha256: F81834AAF38EDD5A4E86017D1F8F43D4F53F441B6B03E34FB4E255A9B718C54F | sha512: F625BE99A74A65E0D28B3A60100C2033EF71C00241766069BDFBE01A3A89BB017BB2E5C1B05722FAB5A3D560A4350469E83CA24739E3334014A68AC4FA51758B
md5: 8A92A9D3D1F440E0391B086738D030D8 | sha1: C0744FE0A1821823472B1E0D714C99AD7D07AA22 | sha256: 0E2A940D6AD54B29EBD6551FB4AD6E01F46EC0F01FE3431E1BEA6B96B5FE2B6E | sha512: E5FD7BD74E723DDD968CCB8004C3E79B2C2C855BE16E90DC248315F44526B9A7EA914FE5F9F418382F061CE421F78253C49A77706CCE70DBB30BC417408AECCA
md5: 03182F1C5496DA0863FD476A214A5AD7 | sha1: 2278827CAD6FBF1F6D73C340019102BEBA6AEED7 | sha256: 549E09412497BE4FCA644465DF29B26F861EF04075FF55470A5E3D165DD4F2DD | sha512: BA975DD7214FC0279CA1647F22FF87D9E1F4239107536FD0AE8F30F8783B7CD5C48D0C123812EE9915ABE7B10AC0A94EC9A2FF08B6AF9BB33F76C5344D104BAA
md5: 2EEC0A7AB979867BC65F6490214FCB2E | sha1: 2F045B6FE9C35E89B4550C0A3D504E2FCA2C7041 | sha256: F09E38F93D020CD740287E4C3C4F53774DE88384F2BD8C12A8DA2580BD6D4847 | sha512: BCE9F4953AA292D2CD1062318EBCE9601185674F8152130231AE6D81EA6DF88F2E81794CFF36B957EB93E99F6D7D118EABAACE8232BC16E7B4D78CDAC1071FC3
md5: 358374013EECF23E20493D74F869AF35 | sha1: F515BB270490837C3A01B659522039541E817CAD | sha256: 9385627EC8A49102BA1906AE6C24E69F99F4BA016A3FE9DBC9F088DE83F58D9C | sha512: 91FC2D683E2523A15B6BC9A73703D95EF160D9E8863A02EAC9492C5979FA9CE90A3D3074111C2DEF6F09CA7ADC8B2885347452606EBA879AF5F91B55C3D3D97B
md5: 411D55F2D4A9AEDC2B85C3EDCB3B0A32 | sha1: B2EB9F0A171AAD956FB31E6F5A5EC058D5DF8CD5 | sha256: 60902E11F840B6AD9DFAE845384AF61A2B99C70CF90B3FF31C0DEE843EDF8F32 | sha512: CCA5F2356E11F9597EAA4114DB9E1C4C42C907F614FD7D4F8E41FC62173897A417E785C395C93B87ACA0F876B79285B3B34EB44AA4D1812369840C4F30EFB330
md5: 9708BBE258766A1C992F2282CBE5438D | sha1: 709182B737794D6FD7DBA2B308C1F00262FE4312 | sha256: 49697CF0DA6321E79AF75E7D3D6E5AF4FEDF75FBCCA050F60E594F09873106BE | sha512: 704D07B2E8A8E5F4988764D37A2C05D5E6C97682EFD84C1FFD67FDF4A59E9F3DADB639287AA8488FF28A2F6DD4D9860E9C7E159866DF25CBB24CB277C60BB650
md5: 2AC2A7243368FF03A54B63CFC988E2F5 | sha1: 2BB9EAC60A1A2C9C8B0441EEE1A812A5D9E9D420 | sha256: 1348C3233A84420ED344463B4EE21391FC50CAE24BA1F4BC50169CD4329EAF74 | sha512: 6DCF7FF3E3DDC398728D6FA25E1A8E2DE2680520835DD1A0D665397AF6E4BA32DB791033C3999CE940974C97FCB1FDDD77C9C9127D3DDAA9D6636C32B8799FBB
md5: AC213EFC0D897125D0C05ABEEF1573E8 | sha1: 6C8AEE813B25A42DAFD5395354118064E810C2B3 | sha256: 975E2CBD253FBA465BE58CE8732C2E006D14B5D6B732E9B1C81242CD0B95A681 | sha512: 74E3F2CED203600E0C27355595548AE473CDC396AD87C6987159D968A55B1B273DDF276F975B54802B767549F7B017988BF5B7E3D60FBC983C8E9639AF42403F
md5: E72E67E78726015210D68CCF251BB219 | sha1: 7CBC738381EB86571CD1C3B2468ED260DD4BB3A1 | sha256: 21EF03F27355F311D2FEACFD16646EBDC92DE45FEDA9DF8A96AB2CFE29EADBB4 | sha512: BB75F1644AC744AB485DE55D4F8C9B0E4F9676991DDCB4E79E3668360EDCF3B5B897163F9926724CDBCE4D4B2136093AEB6A2B162D5B8B2486A52F48BB557D6C
md5: 1220080D67E5ED5AE0822640E92F1C5B | sha1: AEEACC328F5AE8D4553BEA0D0AA0E0F70BFBC2C5 | sha256: 93162E6D54DBA47639C12DC001D1E7EEDC05240816D8376D308C0EA6352B6C8D | sha512: 6A007C7C0B992D2315E092DE69E5024C0E935AEFEEF2A977F559517B0BC25962BBBE4E840884FF5A74215B079A767B2031C82545C4064FD8001A73E544390680
md5: FC9F694924B557D02BEECA1ECD329642 | sha1: E8F032E70691199B5872DC4C42CFB8E4FE55EE6A | sha256: 5D77FB8C7E6FF85042B98BA501F421F7460D5D228203D1D8A12517DDA710AA2C | sha512: B5F968563E5CF46C588C2D3AADCCA54E6F3CD18C9771185EB130FC10DCE2D266FA46134CFE331489063CCA603B750742F9D9FB3E93CC5181BC9000FE33E35A0C
md5: A712B91F5739DACD3B433BA3C54B7355 | sha1: A4AE887860F0FE423CA7523D4BB61D119268D507 | sha256: 7711FD38415BBF43D83690F246B5DF6E80AC1A6DC93BEEF1681EAA4CEA5D90D3 | sha512: 2D8F9DFE66F0435F36164FF1979BD3775EC9EAAB0D7316BC11FB9E2AC0F3E107FE5D22A81D786E1365FD0184D8E22A0AF5BE8142731068AAC943B2FF53A6138B
md5: 3111B880677C87CB4C6B1BC0BC4627DC | sha1: ADB644729AA8FA5A2E78DB29FD0B7ABBA5BD7BFB | sha256: C3D051B9E8A02ED7F507B6BDAC1B6A9917C71A5E1A945565C9A5B1713D9D9E21 | sha512: 179C97B018998E41A8D3242545580204B8FA7538852E46C5FBD91EAC46A4F9B8506B308F6E6ACC6A70603AE2550B76F78BD3CF76B3C397820FD38139A5B91008
md5: DA9643A8A2C67619FA66500A0AFF5D05 | sha1: 3A97EA4F4748B9F0E0068167C49CF5448A2E910E | sha256: C4EA42C50D35720707E5BFE243907F12ACF0BB3E1B3470A8A12F10337C71AE28 | sha512: 4D2E76AFEB59FC7F87D56767CDCD8385FEFA6ABEBAEBAB2A352B13E8BDA32B5298A9D65E245E576F152F19F4939CAE14819C203E211C2332086B1E70699A5B4E
md5: 644B49060628667B7935A7EDA2D85FE9 | sha1: 46DD11F2D2F84AAFBD828BE8D94E9CEC7E9994D9 | sha256: 2BA3189FB54AD4E9B9D43176D30201F565E6C91CA0B1ACFB5E9636001D0100FE | sha512: 093CE99EBA379F92448029161DB30DD124A3386C6C684A0A14F98D931E0BF3095E90C1F84300BD041FA8E8AD9F78C738C46F9EB5EA822D3574DD9C933A7F02C7
md5: E787F6F7E231A23CB77EBFB9DE2ADAA5 | sha1: D712B8CEC757D85DA99F5E2EAE2D0085EDDD5F06 | sha256: 2BCB3276C61FAFA7338F00E62A4DACEEF084EA0C68BF38510193090C62DFA088 | sha512: 4D34F8AD7E22E6EFFAC8AC0AEF753617969F20A708DC8F428111DB8B7E0FE6C28D5B2D98E28A09C7A1B4F2CE37B1ED901A53E96747BB739543AE28123E340D6A
md5: D1F57CF1FA5C1B16D60220CF25AF22F1 | sha1: 432EBDE29552D1422180C10BFD64CFEB784A1FE7 | sha256: 3CD8DABDC6B418B96701691317A34D157C2EE96F3008F4AD82DD7EAFF59AFB1E | sha512: D332DAB2F209890389A26ED148A30BCD9016FF1A44FD1C15CF0BA0106ECEAFB6F2C232048606D55794B2C9BE53950B23E9A8B9CE518CB77FE33BE061FCEB1EE3
md5: C0158D39DDD3E0368B60AD2A26ED1FC9 | sha1: E9A79224D7AA4213FE0B3A686DD96100A5A5D4EC | sha256: 2D917DDD67A53B1DC242FB89A5C7E249ADE8623AF91F00C9F7C6FEC3777E4C79 | sha512: E8DD287EA38B80125E9AD4A8F857E4C7A4DC017E94B2F2F2933B123D618E1872271C67E7543AEA3B51A22BD16D5A3FEFEF7912416959445F6B96E0323D19B2B1
md5: 847B2D499B7C36E42C29501D067151DB | sha1: F4D42D704E068B9A96D81E7EF01947B55CAC6EE0 | sha256: F547D2D8FE46DD907F7A54DD3387639F245509660710EB34992B1B5E0CBF2CCE | sha512: B2B4610C09DE1F68F96B847410CFE1F781C5A43312E469F18E3852339A889AB6A83872E792CE2B87F833209C3C9AEFC7EABBF45A6551EDD37B36F6551EEC91AE
md5: 72211D1B02EF8B3635EDFA40625645FA | sha1: E4524B66E84E352A3374C35E528169EBACB53D65 | sha256: 6F4A57AAE4138F474AE808F735CE534619EEE901B1C2E85562415F23438BE86D | sha512: 5D7CE498033B9FDF6375762B0CBD3922AA025EF8ADD93BE7F909A74C0F4C38F9FD6FC7282D71D6F8817830434B5E9D46E9D510ADF584CE17AD431F405AB61A5D
md5: 2F68C2E34F24CABD4AC5A245C0935C8F | sha1: 5BF3B6D02A621E546EA23239EC2898A67264AC28 | sha256: 1C785F07CA8430E40839AFDD83E498BE22715E042ADF967466B7A461DD7B6DFF | sha512: 514AE4FEC07C326A35F2A25035DD0C7BD4D0E31835AD1EB4F31C8125FBA7BAE386EE7D923E7C9C93B85BBD132787B27159FF35A7AC57E9FFF25F9563E2376698
md5: DB95FDF42B935D1B5F8750A38F18EAB2 | sha1: BA1F907C735CBFC4204F5A2B68A42E4C6CDE66DE | sha256: BC6B47320E7968FC63DF13CBFC1612A8BBAB29BCC07E6C1B1E442A797D7D59D5 | sha512: C4ED794346036C4A0FF4D9694E1116FAA6C73F59C8D1157B85C44AB7520DC7C10BEA17D5ACEF7C8BDD33B81B6E182AE57F2696B659BF3CFCCC71E43C93E407F0
md5: 58F4C15FDE3C0E339B02F1BF85DB82A4 | sha1: B7839D97FA82FBDEEA1BCC31EDEBB88963D48AF5 | sha256: D4176DC3718220F6F3BA5BBE0DB0D52664AFF3F669E53A6DB87DD2F43CC3D37B | sha512: 61FE90A178BDB8D4142306D0E701080BB83CA4EE9D5ACE58E1BA0D9A2998F9FDD233BB4E6E075256B7F842414FB097D26327A185F1892933FCB8A0AC8779E808
md5: E93C38F4B99A9D1F7065A72A55D4AFD2 | sha1: 6002E568074117CD8D32B2C5BF7AD9685103F7E8 | sha256: BAABC0EA475B1565BA66C8DD6208640A81F036A586C6E905D1F62B9589B0EBF4 | sha512: 8BB4CB3CB10E04A453F6139EBC6C0D4D039783FFE665B01097271CCAAEF0750E1EB88C2535EA25C70A424395EB05B0F3C37BD2DD066EA989183A38C258C97D94
md5: 2185610453B3BEAC241554B89B574D4D | sha1: 9EB9D0F92ED74E8C7AFDF82D692EAADA2C722C98 | sha256: 5E6FEFC1BFBF9649A14E152C6A7940FB25884FDE637A5340202BEF80C80F1EED | sha512: 26E63BFC334BF9B4D336C834C5302F1D3867997BBC33FF44DE41A810BD7D903DEF588E919D52E51ED19535C354D0F7D9561DBDB84B6F97A52C4D127368D4CF31
md5: BE6D3FCF69F64F05240A6D7097C3C73B | sha1: 6CBEF69B06132CACD43B123C2082C1D41BDF0DD8 | sha256: 92EC8ED4AD2121EF913C1E905F7F16535CF6201E470031EDDE521B8D1CB07E84 | sha512: 702756E09C8D1DAA47390C71612CA041F4ED1B9DCD70B5E5F838C98F01F662AF9AFD07E65864BF496982D5811C8F0C4B74C0582918F10959D8B57E2DC3E51837
md5: F9430CF55D76B546DE7695F9034F0DB9 | sha1: 273428615583DE6816DFEBF289D7ED8D6ACD9E2C | sha256: F6B6B833926830AC338D529EF0BB3C5AFDC75A4A3E602DE4570A8474707D1B75 | sha512: E68DD62D08523CBC5E66A76FC3C815C455470C87D296518C4CE0A319B2AAA328B4E1BA76778C7148411B0DB4F0740B714148A44304E49153BEF83AF74A71F93E
md5: 07BE4BE2210E339B7D80AC32B50AF238 | sha1: 0F638BCEA68CE8464AF241B34E1F10E1EB8907CA | sha256: 2AF199F787F53C8F33AA7328F3DE345B34B63901DD67026D412D528DCFCE0B7C | sha512: 86781E57460F418EA0AE946426F83F89D1DD54294A04674319AC5E2E906258FC0DC796FEA32FA6C2C8048B0368F4771373125BF4EC16381157EDF84876CF5952
md5: 156EF39F72244D41F95BEEFA70EBDA89 | sha1: F0CEDC19B01D7551CF57DE8C72586ABB53C3AE89 | sha256: 0D3CFEBBD0070A475A84F87E9C7DBABE2670024985E222842F860F7D5251145B | sha512: EC960E05AECCBFED525CF112BED42B4365EA13763BB18696D1672D8FFC6EF20D58E2B9179B95B0A3E66B050D5B4F8BF32484677503241BD1A9B2EA9C4B25B3C9
md5: DF758D854A13C0A32DBB05010603C7FA | sha1: 382A6F92AC187BDD1BDC05B26D64B041C178E470 | sha256: 4C0C256D59FC44B52B5A0B09D20F1AB5F60B7F72370F26A6832456ACBE9B0ACB | sha512: A45CA615D22052F627B551BD60A4A729FB40F9CB4774E9D5EC4E4DC2C9824EBCB33B5038F684C9732B5345B0F93121EA52B27CE6BD6F8DE4387BB68666A4CE44
md5: 1970ECEC00A4ADFD654BC4C7F9A455E2 | sha1: B816D88A61ED5C2300C33F146D3C85452B4D29F3 | sha256: D17F4D8E0857902682FBA4BAF1004B4549F8F829DC7A8C427639B5C8F4658140 | sha512: F6B1029DC99EAE2E6F9200E160F8993F99611F99B84887D492075A014A249236D88E7AE33F13F43443AF60EBFF3AAE368FFA0FD3FD843F15FDEADA9CC6E5A501
md5: D28477BCF7351E638A5F2A21FA4A326B | sha1: E21CFA61D9581B57D6FA3C5DB6CCA326EBDF9801 | sha256: 055E7DBBBD52EDA210978F24BBE14DBE2B124F7EA73B2EF743F023A413657427 | sha512: 90B54250C1E90FB7C39CD965AAB82ED4277F4B886A41E4E48A2A121F9C2DC40FB1FE9E32A321A594D43CE7A3C5F60956CF852417F98F30309B65FC3998648E39
md5: A883AF6114F4E451542BF8698DC45250 | sha1: 164AAF967471E0AD6F3D2BDED950B49EE911643C | sha256: 8BD5352288D461BD8D22E9FFEB76E54506EE6D4471078F26A0B3887D21BDB9A3 | sha512: B13002D251429DB1CD735C2FADBF8AD0EE6B399E6F102307BE83639A092143037880F837D986A57E6CC7E8D80A110B05D734F99B67A4A57B472AD7E5A09E6C56
md5: 3A43C1AE3DB40F2D8104503BEED0E5B8 | sha1: E5AD76731A402678AD944BF3F655224326D7DFFC | sha256: C65066CBF456CF6709F21EFAC83A4C24A8EA2F7029AB048244BF766D0009FD5A | sha512: CEB18D7B97085E9ADAB1312D9E3632CF2A97E88248434CF30A89D55DAE6A107745FA5639CC286EA70A7969058A355137C0B4F95FACD410A8185EE932A56C3994
md5: 4B8635C1C203CD417CD23BEACCD8C2F3 | sha1: FC35ADFDE297C75740A742A223398C1430A84CEE | sha256: F8A937E0D8EEEF770D930A76AA5494BA4F926EE513616FB2C0BD370FB06E5B2D | sha512: 914AC1A64E82017D5A0C9C927BAE886B6134E9FDA03107738DEADD96206FEB6BC8EBDEE4FA3F8358EBD8FC408047DBEBD8309D080D54FB9D39C8CF0286310532
md5: F4BE9C1828F40649580C17A1AF8F4830 | sha1: DD6ACF4B0920C1D043F0B3700EF888E6E35D3516 | sha256: B94C6C749E9CBE3DB30F5F950619523F0644496AE796BA8DCCB22570563C6C3D | sha512: D13AFD0B70FEE321177D6C48250DB410E7E8E360BCE0180FAFC4886FD1B2B32EBE031F7E7097CC719163E3837B44D75C6E4B0AD0A7A354F351ED3218B71D4661
md5: 664CEE7C370C40E2DE252344E7189A1D | sha1: E68F3038BF56DC7A071904666C4AD7149A58B910 | sha256: 5D1825EDBA67C6A8CD811928FB62E4A0C409893EDE3CD557F2EC86C9B15196CE | sha512: 5FD9A5E2284A404428ED2201F7779606982A6B9D9BBECE9F2C799A7FE2833CD07A9C8BC314AA83625FCA69050A45678411938013D7674EC44E0DF566ACCA63FC
md5: 7F115F376489B10DFB49E8DB681DBDB4 | sha1: F15BB50401D7562DDEB79B99EAECDD0FE425B576 | sha256: A15FC05EC75CA7FB4FB99857DF8C6617FDF53E86D33FBFA4A3A3E9E1682CAFC5 | sha512: 9D6C1B573B9705EAA17E4171E75772B9EAB12D7786DDE235EB0E4BE49837631E862D41B7BDD85768BA4304F4AC7C26AC8FCBAA74D1AA7AF9547F2DD2A8068B88
md5: 4A337B63825E71DC06CA90AB31A7A1E7 | sha1: F560C4F2E74529DC6722C2FC69992AE77CBE118D | sha256: 8452DB52FA53DCD77B7572211A3C44A1EDE44D051EF8BE03A93B0E40E2C5560B | sha512: D34AB071DE8F784DDC67AB8BD6E2D1FEB061AE6618483CAB297D5BDD8D362D3A7C8224FCF51EB55F90269BB4F317CB08C58679FC050E8BB1AAE6B8C66E2020FC
md5: 9D1B177FF84CF3EE29EBB25DD87DA938 | sha1: 73984E8C9E322DD0445ECB29BB96E183F05B9749 | sha256: 751063046944E3D9BE485B6594599F5FC0C4B51CD6359FD2DC9FFA18F58F1F17 | sha512: 83C697B40C38DA3301ADBCAFCBF45517A3DA11AD70125C2C285E33A786F70A634B922E7EF9E9E727AD27D1069363B57964EE3FFCA55625274B83C20EECAB22F7
md5: 3B4E2DFA1261F3796403D1F9B6C94BA9 | sha1: 6C2C0A3974FB3938F64F71298F0C7908938E463D | sha256: CDEE2A7D5E0EC303B239BF6014D998322ACC66748CE550E96AC463CAFFD040B2 | sha512: D3C455FDC12DD72A710F4756EAE4F753C2A6D2F4825DB752665C7C95335DEFF2049EBADBF866CE6BA49D9B819541A9CB2B2B2106CC5515085FA9CDAF17607C94
md5: 457118C8AB56D3E31C28EF97AF2BA81A | sha1: CAF661A9861E7F074FF98360E0557ADA0E0696F1 | sha256: 9B97A0904DDA270A8021E6E90AA8B083D8C3AFD0165B85DF21C0A090B8A0985C | sha512: 5643CAAD9BD5515A27778A10500359DC7D5FF45D056B349740BA9DA36C6E707E4445E8E6339098E685BB794989200B8A9936BC2D372CB5A209B2D6A0A5CE6366
md5: 10D5CB5B030C4DAFED19ABFBC55DC3F5 | sha1: 3186BC7B616A1B0E06C7BB346CBDB3B900997ED9 | sha256: 468D8B6327DE071103207B468D86F2E6214E5AD148B9626884D12C5E500C62BD | sha512: AE20473679B986030E167BD91DB494042EAB8DA95365788753C8674B577B65EC09AE10FE8CE6D4C0AB3694DA620F27A839171470F6447FD9CE402D2E03C8D25C
md5: 2A9F006AFA7BB14530BA0515759C63A8 | sha1: 833EE1AE9A65A12CAAEEFC831D55D304FF1B6F22 | sha256: 20DD2F3A51C3A8BD93B791FF092B23A38082CDBD8FD4E052692C06DDEF35657E | sha512: BC73EF3F61E56F4978CF7779A9CB82345E9288F356F50C483FDA2BFAC3C8C38A104D032606E104F643017A54E5F0B9881E5035D5FCFEA0422E4916A5120552C2
md5: 6496EBA4A87065A6F5E104820E9C4FF1 | sha1: 2891D905C747D3EA991469CFEEB01581D87448BC | sha256: 4993F09F1CB2AB392F33BBFDBBEDE950C39292E5C60823C1B8F5645AE5E33C81 | sha512: E1B0F4CF67ED3A0E82F4A28BF3CF374E847E1BE59106E6B64A1B965F9F0D8B73C106C044048A4D1402006E9C9E8D8EF99ABA3769A1D648D055A0BA960A759499
md5: 021CFBBC8D9F0CE5BB3BC4171F2F49AF | sha1: 5D3679971716AAC182C7F57B76F11ECCEDCA7B34 | sha256: 20601995C27E50FD18A4051442FCCA518FFE60E674D6FDA4B7D9062CE854AEEC | sha512: 5DA24C581A33D8CD13343A38013ABDB1A6D2FABC99187B2D717D946856107F2C81DF53EADA22C339F483749B18A20E9B5FC77C643FE30F25D5FE21FF16AE50D1
md5: 617F81A87B2EB2F3F09D68D3CD3A0396 | sha1: 8BCCD08FA06C90AE811CBF98CCD53FB8C600DA58 | sha256: BAAF6F40C408A373BA0F5299B625DE1E2E6C41F2048F6CF4D1FBE05C46A8C250 | sha512: 02A169FD8EFF81C1C4EA74393F258915F789E294FEA923BB68F66AC0BBBA807559AB194BA9AD819CC3F8B345FAD51E98653A2F818E95E41F19B51C376E584AE1
md5: 2B4446DB56A5442C524057A7749F4977 | sha1: 8BCE756B6A26D1C2523B2F87B20A85EB7B70793F | sha256: EAB3EE228D8807A7B14E95F011EB373B2D53A87AB462C590381A7124A3BCB9E0 | sha512: DA67B629871BFE52B2A9B37AE0509E3EC5EA22540BB235441DD1973E5DCE3C520A5745131BEBCB6BABE44798C84500143CFE5B00ECEE460986C3B965C5C61837
md5: E05A12F8B14B335AB3D139F434E4CC62 | sha1: 7627E55DD997EB90C4709C2B2B38EEE049583498 | sha256: F1591274E073080B2F2514DDC3F38F14F7BC50564FCF220A1C184D8A8E6DEE2C | sha512: 6E269404ABEAAE892753FC4B191FF63C598E5610841E5B0111E3AA36A48FA8C849F3262C06F1FD9F40A82C06171CBE520E42DFDBCE981886FB0BF8959E938CFB
md5: 576A33F048F9551BE928BF1008D36230 | sha1: D1F85DF40ECCC338BC879368F7239F3A7408CE2D | sha256: B133284DE5BEA9468E9E5CA038B6438FDEBC9B333EBD6AE2D901B473D682D7E0 | sha512: D709538B0BDBF7E623540995D06D3D065DBE4C48B20D523F8FDEDDD28488E238115BF66565B9AC2E949DCBF980B7B9EAFAE0DF578CF661360009392A4DC11360
md5: 0C07E66B8842EC87FAF2AC703640A8CC | sha1: EE91566870A17D3611BFE2A6454909420F91BC94 | sha256: 65A60B7EFC495E27FB7D2BB09476E4115705F7F4101F8FB20248D877A5647564 | sha512: BB2C9A669678D137056218FE3980BF89E41DFD238A4E7BBC57F7BFEF4E2A58B437AAD13B2585997A116B5B82F894C3F9DABF36B223F6B0EBD4F8606F6F068EC3
md5: 42B17C6B865110BB5687E3618E29F13F | sha1: C858A2AAE5C8CEEF48F1D821ACE07D128B0F45D9 | sha256: 37465B59C2310AFECA3FC0B82B191E5416AB56552E048C244B6C51AAB2AB652D | sha512: 26A535FED41F2B38D026B462A14971F3A825771775A5F71303DBB3D5AE929841A68355156B9E9FF9A9BEE58D55F67E18F0E813F254ADDB91984927859EDF3906
md5: 9ECC8EE8E93DA87086A652E9F81B67DB | sha1: 854EB22A3571630318377BEBB7B35D41767C576C | sha256: 52A225789EC3AD39BC9DBAFBD138531F6F89543017F21A2C3CB8DCE2A23D0ADF | sha512: 07DF4B0C49AAFD457E189023332C6666CC9ED37BBC7CA9272F9757C703D6982CA39B6646B45F7F33F8137B94E720825BB38177D22AE05F53E53179765C94977D
md5: 4019FE26DDDC0C703945AEA3D449D781 | sha1: 623F4DC85B8ECEEDB3F835FBA7A73835AB99EE0C | sha256: FA680CED4431C7B8B0C56D48769DB5AB37D589DF4BA3F9153C5D833CF859D875 | sha512: C27B09F9EA86CAF06E86DEBC39245AB6573BCFD5471424F09DDF646B7EB609A77EEEBB822A632DEB54B76A9901C353B8E93F5FFAA0176814D3BBF29C43ED5CD9
md5: 83F501C3CF6A07248B685F7980C38838 | sha1: DC06505156BB8936DE284DE89A36534BA9747F22 | sha256: 53DDDD5B38BC3EB22F5046959EE8E4363038F921486C224155B5EDD59CEAA8CB | sha512: 98EBC17A0A440F7385C3315972056D228BEE4B58ADE103456E80E51C7859F829ECBE206916DFD301329080A0C87B55B70B4E2F61EE05B6CE46A75A697AD70588
md5: CF0B784D90900460063576B64CF110AC | sha1: FC6EA30D73A8E02458DAD0CD198562028F3782D5 | sha256: 9E3E695C87694FFA241AA96389F9516027FD06540924B79BECD080A479A1A6C9 | sha512: E4B409A5FFED1C7F4EBA0536C64246B009FDD0B73A94625D6DC017A1469BB2D5739E39E587BFC86981A802C1AA7858C3680D13BB9BDCACED0EDFC3F75F432EAA
md5: 61E5A9B29FBE549B80121109C2FF990A | sha1: 4BAC0A8749027B0CB10D7195C2CC2FB20777CDB4 | sha256: E7E9A454A6D6902526115FEDA46E1C5A48AACDD766F9716E45FA5C13C798CC28 | sha512: 60C50A806458C50DC4D0A3CF373256F5118E1A5F866A70E5E8E5686855173B826C925424CA26561540B5DD0C6F8B8EF5079DCD669DE36E7BA3C9B8F43FFCD3B9
md5: B8224BFC81E761297EB4821FD7C66705 | sha1: CBC99C7925138C883ED352B9B10EC10FE1B32D77 | sha256: 36D8A006C14EB3AF6EC6F2188B2373A58342AE06093DA8DED5A737CEF1F68D32 | sha512: 587E391C3E1A2F91D4D15AA3EB56ED8BC9BE5294C2A803F4C3962B2A8A307D15166229A8615A1BC299D6327100260EB3A88A5EEC7764F58601B561781588DF81
md5: A2A53102987C0310CC16BAC478810A32 | sha1: 16DDC43C8A3D091E5F80B62F111E800A56A95812 | sha256: F63CB61090FFEE2530B994DAA86879220A0042A4E7B658E37C4C31602931EAF1 | sha512: B9D2069B4E39E4E028930B4D1C8EBFE504B049E81CFC853ED72772D7DBF4509D76E1D37E5F1B7598B9DF60A5FA272F476AA44C8FB566798FF3E3BE0A2863DD2E
md5: 76F3319DE43045790E9DB29A7144DA8D | sha1: F6A39ECC30D410F93EDF60AF2DD07C3FFC5D6D0B | sha256: 8A4A8B57AF5635B3CBC1BCC792F03E6FF8909C5D276B41BD6FC759AD9613B0C7 | sha512: 3C45BABD72DB691A6102FA67BEF3557786655A15BAF5FB4439191D5C4A3D9D0962C9C2105AB904AF678C21A44A44391428F29AB809297BD3E4E92C58ACAA0111
md5: 66351FC038370B0104647D077F7253D3 | sha1: 190B8DA68AFD18031CE2EB2D8DFA2DB3569C8A36 | sha256: 2996F385D291849AD14BDF639635147460195EB03E6D449C30558214C3092026 | sha512: 686604F0C6FDA993BA53C46FE27C290C27A2E6D649F1739EFF1081867B6F48346E452EE68A8A94D884AF6FC9B18C38BDDE46A77C9F72B41321849BBBA1635259
md5: 365766C4EABDCD5881A4CDDD9DF652BC | sha1: 8725EEACEFEC32D90C0822D1C4B30021256AD9E3 | sha256: ED671D2DF192A58F993737197BED507EE78BD2C04D5F64C326E7E09D7135F334 | sha512: E0BA870B2A35C818D917793F2C24BD90A808636937231821D12C330F3CC646ED5E5FC2A5A14AB0E65E6A25814B6D442B4E6FBAE2855364FF3D63B9E158D0B033
md5: DA31212B4F07E0EF6A35447C928A3059 | sha1: 11CD1C6DC6128FFB24A58B6E66827F46C6A74BD5 | sha256: 22EEB3115B134E6C90AF611934A0897B91275129DCCC012ADDAC0D66CEEC7FE9 | sha512: 36B49B1E55056428F920804F640FD0FF4D6AE64AEA087B2E8A11F5AC52E57ABD219ADBAE0F1B5AB95599713B63733EC15B8AEFC6363F454BF7A2268288DA0E70
md5: DDA2400D99E4C6BE1C38087361A1A01D | sha1: E7516AB0D478F2F01944CD76882F15C7C7A11A7F | sha256: D499731C7EFDD0034B90E4707A4B8942B6684574734DD910B820B17043C84CD3 | sha512: 4CD2433A4FFD1F94E5D7EB633C3B259BA21193BA4B7BA099CA52FBC1FC9EE364FEFDBE45186F791FB48272E148FB7C58C22F34C389E9B463A7A5F4016889A983
md5: B71F5E9F0150C8C1ABF2C8C50980A082 | sha1: BF3921FEBD1786E43FD6860332BAF9E3D56ABF23 | sha256: FBD834454C224BF4909DDB88F062C8E6DFF8C741048B5A027888E541D4ED51A5 | sha512: D1C08FB627EC795BF285DF85735541E2688D6465CE09BEDF1ED232BA8C5D9924331354E3EF54D8A59170D57533F2961ABCF95EB3616817CF758709CFF6894B94
md5: CDAD47CE9FF452A625C12453E3F2CCFF | sha1: FEA5CA9B67B098BC4CE0294FE1B671F33ABF3CAA | sha256: 3D5BE899AB6DB83716A5EBFBE300C8105396C0962B3E05B51323A75C129FD1B3 | sha512: 7BE1A2C46B6CCBFD97DC4E747E58534D2067CCECB01A0B4FFC1FB13C22834CB9FF60F918945DDCFEC0085155514E678264C2B28B0ED18D1A1B4DDA27B9100947
md5: EDF663AA6C1E629FD5692B2E062D4538 | sha1: 7A062716987A9CF2D15674BB2CA4256DCC7A6F6A | sha256: 8175652D3650F09FD041DF224D58923DAA7F42F43551151528AD63B6250A245C | sha512: 8E4106B3A1D34F3CEBEEB207CB6C31C669F69E04C3C0FC9F2F84D69FE8DDD0A7DF608816B823FD697147682F8F31B374AD16D71D5E0DE6153999054E16E7CAED
md5: 48CADE7AF4806DED8CDC284D31D2E067 | sha1: 1A529D262781F3BF7B4A053280F6626995386D72 | sha256: 20885791EC9E83ADD6D923FDBDAB711104158738D0037D7A36F874974528C609 | sha512: 08ED3224EEB87F3F5A535A9AC3C969D4E1C70BFED814E1D2C981573E10CFF1C15A033F48E9FCBC147703C584E71E8AAFB656161B547706DBE47C5AB1AB6937C8
md5: F0A6E93AB15B56B25BBD35691F0A687F | sha1: E91DCE49855C9A2D4336DC9E4EC3FF7FD017D650 | sha256: 5B496F6AF673765473648DF0AD0AE5F74F0EE63DD86951FA685CC3D03766AF15 | sha512: 3EE3F3C5D0DA133CC371FBC101F0AEE4BAD96CDEFFC8DC5D30211A19D43E975E6016FE13CC878A8EECCBEDD9E75D98B315B6A9118A1553236209BF73FAEC0A92
md5: FF78361DE0C7B50F8301963A70FE7C35 | sha1: DD8E60115480E5F458BFD56714C29AF416C344F9 | sha256: 344F6BDB407ADE6B16FA33BC71D5D39F40F48A921B6E12C34250775727F14198 | sha512: DB7D17396D5FD8A176AB525598F628D56B413E2BEAA44CCDCB3FBAA3C71372FE5F46A8A3E071933497DD3FDBB7D0B99E05FEB14AC8A8A48AE7E58F06512C165C
md5: 88F1DCC24BF6C96ACA8459029B2FBACC | sha1: A607C2CE67BD6E54E43F2B5DB8ACEA8F70814AF6 | sha256: ADFCC5E0529B65AE829E44DC69C3AA9A9BF99399B761C27AF60463196C542DB1 | sha512: CDA494507CE4C629CB0D121C7090FD68E028648ECF149AA9B7511998AEAC424F0BEE0ADD18DFB7B5868B0C8632953F0C408DCCBCC37559F79272BC1B894A7B9F
md5: 5D1B52198C7B39640F353AC500A0A03D | sha1: A0458D9FF0700D9A9EBE2C3247A6DD066E27ADC8 | sha256: 91B306190D5C71D18B05A9EB320E9FF8FB8C3B97A2A9DA6D9556EA18CAE728C9 | sha512: 3815FACC5F5E59C3B69675056CBED55E86C48BD77A121CBA8AE814ACC0A0C8800A055961744F7828361F327B606BD4680F11FA03FA14E9FD104E6F0A9A641483
md5: D5A172D5B67442A73F548EF8A272959D | sha1: FB511009793A03EDE2AD1596A0325E43A782FF21 | sha256: B3CBA23A326503C96C61C71DE8CE05B98923F3D7CD51DE6E364E3757F7405B10 | sha512: 640E8E05C77FBE373628D794A9D732BE72AE82E505B7A34983BA70B6003A88E41CE6A2561BA6CCE97EC988570E2DE9D6062AC0E0AA2BDEAD0391778D3963F493
md5: 02DB5BA16688BA608839358F4F9BB086 | sha1: B0E04F9F48DA35136FFD79B950CE7A5EBA206C48 | sha256: 194E509DE555EEC2AD350255A87080DA049DF7154E06B4C400B16F780451361D | sha512: D2B1D2494B5A45059B7A550A367EF8340396C56BFB0A363A99038DF1373612CBAD8830B9B9E57AA8D3F027E722096BCA52CA596A11B3A1E8AAEA1AA129EFB7BC
md5: 1500728DD77CDC4820A7758DA11E81D5 | sha1: 6390B367AC6B941DA4B5478A9A74AEAC13A26A2D | sha256: 2ED966825EB7F1B37C519098BA5BC6F20F5629802804F99FC29003E786FD1AB2 | sha512: A7935BC11925782662767BF04DBADF6245300954EA9B7A58B44B6D850504E60CF1AA8A3722DE30C9D353816E9459B29F7E6356D77847062585090BABF686B8C8
md5: D0FD1B308AE78C15E17DA735BEF77932 | sha1: F08514B740139244BE692FDDFB2BB9DD0848503D | sha256: FFA81CE3DA5B59BAF86E688DF73B6BE1C8308F86E02E672109E88766A7187CF0 | sha512: 4C3141CC0CEA296BD4DE428EB2CB9869344813875D9A00578456F401DAA437F87E89C473508BB1FF3FFB5D54B153FA8B6D94C6D48EFDF51196FA5DDD0177CF36
md5: 52668C47A186A5FFA17FD3A0B279E850 | sha1: 2854F2E9159B52131E84445EFDA6E0AF7277B81F | sha256: 0C09F8823EBFBB47CB9DE7346E575962B53C69AB70E4C965A04BD3226BABAC2C | sha512: 844D3C4F9682D5BC1032657360CF58F725A263535DC0B9325B549F950F113D2D1D236698050ADE35B622B9DBAE09B8C73339CAEB34A757EF49575E2DDBF32219
md5: E587883CD67D58C17115CA70E8DE244E | sha1: F937E05A5ABB150F03EF08A18E9C0B3AC0DDCD42 | sha256: FCC27D6D6F93A6FCBCC555C6397DC3A939482B3FE6B97EBC34977314C69DFADC | sha512: D974EE65A118970AF7D4ADC685633CDAA556D56223BBB58388CB0D96F4ADBE2A2B3BC50BA0AED28DC9B6EF99614B03021822B10919FEA3AE7A28DF505BB596D8
# This runs in 0.9.10+ before upgrade and uninstall.
# Use this file to do things like stop services prior to upgrade or uninstall.
# NOTE: It is an anti-pattern to call chocolateyUninstall.ps1 from here. If you
# need to uninstall an MSI prior to upgrade, put the functionality in this
# file without calling the uninstall script. Make it idempotent in the
# uninstall script so that it doesn't fail when it is already uninstalled.
# NOTE: For upgrades - like the uninstall script, this script always runs from
# the currently installed version, not from the new upgraded package version.
[CmdletBinding()]
param(
# The path to put our kernel.json folders in
$KernelFolder,
# The path where the kernel executables are (should contain the 'net461' and 'netcoreapp2.0' folders)
$InstallPath = $(Split-Path $PSScriptRoot)
)
Write-Warning "The current preview of Jupyter-PowerShell requires a preview release of dotnet $dotnetCLIRequiredVersion"
# Use the .NET Core APIs to determine the current platform; if a runtime
# exception is thrown, we are on FullCLR, not .NET Core.
try {
$Runtime = [System.Runtime.InteropServices.RuntimeInformation]
$OSPlatform = [System.Runtime.InteropServices.OSPlatform]
$IsCoreCLR = $true
$IsLinux = $Runtime::IsOSPlatform($OSPlatform::Linux)
$IsOSX = $Runtime::IsOSPlatform($OSPlatform::OSX)
$IsWindows = $Runtime::IsOSPlatform($OSPlatform::Windows)
} catch {
# If these are already set read-only, we're on core, and done here
try {
$IsCoreCLR = $false
$IsLinux = $false
$IsOSX = $false
$IsWindows = $true
} catch {
}
}
$dotnetCLIRequiredVersion = "2.0.0"
function script:Test-Command([string]$command, [string]$NotFoundMessage) {
if (Get-Command $command -ErrorAction SilentlyContinue) {
return $true
} else {
if ($NotFoundMessage -ne $null) {
Write-Warning $NotFoundMessage
}
return $false
}
}
# Try to fix the Path until we can find dotnet.exe
$dotnetPath = if ($IsWindows) {
"$env:ProgramFiles\dotnet" + ';' + "$env:LocalAppData\Microsoft\dotnet"
} else {
"$env:HOME/.dotnet"
}
$Targets = @()
if ($IsWindows) {
$Targets += "PowerShell-Desktop"
if(!$KernelFolder) {
$KernelFolder = Join-Path $Env:AppData "jupyter\kernels\"
}
} else {
if(!$KernelFolder) {
if($IsLinux) {
$KernelFolder = "~/.local/share/jupyter/kernels"
} else {
$KernelFolder = "~/Library/Jupyter/kernels"
}
}
}
if (-not (Test-Command 'dotnet')) {
$originalPath = $env:PATH
$env:PATH += [IO.Path]::PathSeparator + $dotnetPath
if (-not (Test-Command 'dotnet')) {
$env:PATH = $originalPath
}
}
if(Test-Command 'dotnet' "'dotnet' not found. In order to use the 'PowerShell (Core)' Jupyter kernel, you need to install dotnet core.") {
if (($dotnetCLIIntalledVersion = dotnet --version) -eq $dotnetCLIRequiredVersion) {
$Targets += "PowerShell-Core"
} else {
Write-Warning "
The currently installed 'dotnet' (.NET Command Line Tools) is not the expected version, it may not work.
Installed version: $dotnetCLIIntalledVersion
Expected version: $dotnetCLIRequiredVersion
You can get the latest version from https://microsoft.com/net/core or by downloading and running:
https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.$( if($IsWindows){ "ps1" } else { "sh" } )
`n
"
$Targets += "PowerShell-Core"
if (!$IsWindows) {
Write-Error "No PowerShell kernel installed. Install dotnet $dotnetCLIRequiredVersion to your Path and run '$PSCommandPath' again."
}
}
}
foreach($target in $Targets) {
$kernelFile = Join-Path $kernelFolder "$target\kernel.json"
Remove-Item (Join-Path $InstallPath "$target\*.pdb")
$kernelPath = Resolve-Path (Join-Path $InstallPath "$target\PowerShell-Kernel.???")
if (!(Test-Path $kernelPath)) {
Write-Warning "
Can't find the PowerShell kernel file in $kernelPath
Expected the $target kernel to be in the same folder with this script.
If you're running this script from the source code rather than a build:
- Build the project by running: dotnet restore; dotnet build;
- Copy this file to the 'Debug' or 'Release' output folder
- Re-run this file
`n
"
}
# Necessary for windows only:
$kernelPath = $kernelPath -replace "\\", "\\"
$null = New-Item -Path (Split-Path $kernelFile) -Force -ItemType Directory
$kernelData = @(
"{"
" ""argv"": ["
" ""dotnet"","
" ""$kernelPath"","
" ""{connection_file}"""
" ],"
" ""display_name"": ""$($target -replace '-(.*)',' ($1)')"","
" ""language"": ""PowerShell"""
"}"
)
if($target -match "Desktop") { $kernelData = $kernelData -notmatch "dotnet" }
Set-Content -Path $kernelFile -Value ($kernelData -join "`n")
}
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
To verify the files, from the root of the package output:
# Remove the nuget-generated folders and files:
Remove-Item _rels, package, *.* -recurse
# Check the catalog against all the remaining files:
Test-FileCatalog .\tools\Jupyter-PowerShell.cat . -Detailed
Log in or click on link to see number of positives.
- AsyncIO.dll (ce3369099418) - ## / 61
- NetMQ.dll (ce9b347a4cf3) - ## / 61
- Newtonsoft.Json.dll (973fd70ce48e) - ## / 65
- AsyncIO.dll (088d1de315e8) - ## / 62
- NetMQ.dll (8147b8bf4728) - ## / 62
- Newtonsoft.Json.dll (0268d8851603) - ## / 68
- System.Private.ServiceModel.dll (bd51e4feec59) - ## / 61
- Microsoft.Management.Infrastructure.dll (70de95deae3f) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (72f548c63fbb) - ## / 66
- System.Private.ServiceModel.dll (f04c71225466) - ## / 67
- mi.dll (4359a7b69adb) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (8370307decc2) - ## / 65
- miutils.dll (c0a22f070079) - ## / 65
- Microsoft.Management.Infrastructure.dll (77a419fb740d) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (413b6cf1a6a5) - ## / 67
- System.Management.Automation.dll (d4176dc37182) - ## / 62
- Microsoft.Extensions.Configuration.Abstractions.dll (bde7eed1ef27) - ## / 66
- Microsoft.Extensions.Configuration.Binder.dll (3d002de8b49f) - ## / 69
- Microsoft.Extensions.Configuration.dll (75619a03f905) - ## / 71
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (e51f1960c60e) - ## / 66
- Microsoft.Extensions.Logging.Abstractions.dll (b863f1b8fd50) - ## / 65
- Microsoft.Extensions.Logging.Debug.dll (5b1c77b11b71) - ## / 67
- Microsoft.Extensions.Logging.dll (fd4fee1bb2e7) - ## / 69
- Microsoft.Extensions.Options.dll (dc29c10f3dec) - ## / 70
- Microsoft.Extensions.Primitives.dll (e0e19377694a) - ## / 66
- System.Runtime.CompilerServices.Unsafe.dll (9b97a0904dda) - ## / 64
- netstandard.dll (6504456b966f) - ## / 66
- Microsoft.Extensions.Configuration.FileExtensions.dll (735b3efbb06c) - ## / 62
- Microsoft.Extensions.Configuration.Json.dll (58c5dad39f6b) - ## / 68
- Microsoft.Extensions.FileProviders.Abstractions.dll (4794dbdcbefb) - ## / 72
- Microsoft.Extensions.FileProviders.Physical.dll (5f126c92c5b1) - ## / 67
- Microsoft.Extensions.FileSystemGlobbing.dll (9a062d1ecb59) - ## / 68
- Microsoft.Extensions.Logging.Console.dll (e12369d576d9) - ## / 67
- Microsoft.PowerShell.CoreCLR.Eventing.dll (bdc04a44cfd7) - ## / 67
- Microsoft.Win32.Registry.AccessControl.dll (1002c2beb142) - ## / 67
- System.Management.Automation.dll (ee4c613103dc) - ## / 66
- System.Security.Cryptography.Pkcs.dll (b11415530365) - ## / 65
- System.Security.Permissions.dll (dd0434e6f3ba) - ## / 67
- System.ServiceModel.Primitives.dll (685815f69745) - ## / 56
- System.Text.Encoding.CodePages.dll (104c64f8427a) - ## / 69
- Microsoft.Win32.Primitives.dll (e906b2d4c613) - ## / 66
- System.AppContext.dll (dc0b40ad0c2d) - ## / 66
- System.Collections.Concurrent.dll (5a2375d13edd) - ## / 66
- System.Collections.dll (58a098c528de) - ## / 67
- System.Collections.NonGeneric.dll (9ddbfd237d25) - ## / 67
- System.Collections.Specialized.dll (011026c75667) - ## / 67
- System.ComponentModel.dll (6b33f28a5561) - ## / 66
- System.ComponentModel.EventBasedAsync.dll (08bc8b16308a) - ## / 67
- System.ComponentModel.Primitives.dll (9c1c61c4c551) - ## / 65
- System.ComponentModel.TypeConverter.dll (63ef906df423) - ## / 66
- System.Console.dll (668bb3698dd6) - ## / 67
- System.Data.Common.dll (d90eba0300a9) - ## / 67
- System.Diagnostics.Contracts.dll (e940000548a2) - ## / 66
- System.Diagnostics.Debug.dll (a4be1d8b821e) - ## / 66
- System.Diagnostics.FileVersionInfo.dll (f2d4b4b02c1a) - ## / 67
- System.Diagnostics.Process.dll (9d781684c2f0) - ## / 66
- System.Diagnostics.StackTrace.dll (11f79a51681e) - ## / 67
- System.Diagnostics.TextWriterTraceListener.dll (199bebe5b773) - ## / 67
- System.Diagnostics.Tools.dll (f81834aaf38e) - ## / 66
- System.Diagnostics.TraceSource.dll (0e2a940d6ad5) - ## / 67
- System.Diagnostics.Tracing.dll (549e09412497) - ## / 67
- System.Drawing.Primitives.dll (f09e38f93d02) - ## / 66
- System.Dynamic.Runtime.dll (9385627ec8a4) - ## / 67
- System.Globalization.Calendars.dll (60902e11f840) - ## / 67
- System.Globalization.dll (49697cf0da63) - ## / 67
- System.Globalization.Extensions.dll (1348c3233a84) - ## / 67
- System.IO.Compression.dll (975e2cbd253f) - ## / 67
- System.IO.Compression.ZipFile.dll (21ef03f27355) - ## / 65
- System.IO.dll (93162e6d54db) - ## / 67
- System.IO.FileSystem.dll (5d77fb8c7e6f) - ## / 65
- System.IO.FileSystem.DriveInfo.dll (7711fd38415b) - ## / 66
- System.IO.FileSystem.Primitives.dll (c3d051b9e8a0) - ## / 65
- System.IO.FileSystem.Watcher.dll (c4ea42c50d35) - ## / 66
- System.IO.IsolatedStorage.dll (2ba3189fb54a) - ## / 67
- System.IO.MemoryMappedFiles.dll (2bcb3276c61f) - ## / 66
- System.IO.Pipes.dll (3cd8dabdc6b4) - ## / 67
- System.IO.UnmanagedMemoryStream.dll (2d917ddd67a5) - ## / 66
- System.Linq.dll (f547d2d8fe46) - ## / 66
- System.Linq.Expressions.dll (6f4a57aae413) - ## / 67
- System.Linq.Parallel.dll (1c785f07ca84) - ## / 67
- System.Linq.Queryable.dll (bc6b47320e79) - ## / 67
- System.Net.Http.dll (baabc0ea475b) - ## / 67
- System.Net.NameResolution.dll (5e6fefc1bfbf) - ## / 67
- System.Net.NetworkInformation.dll (92ec8ed4ad21) - ## / 67
- System.Net.Ping.dll (f6b6b8339268) - ## / 67
- System.Net.Primitives.dll (2af199f787f5) - ## / 66
- System.Net.Requests.dll (0d3cfebbd007) - ## / 67
- System.Net.Security.dll (4c0c256d59fc) - ## / 66
- System.Net.Sockets.dll (d17f4d8e0857) - ## / 66
- System.Net.WebHeaderCollection.dll (055e7dbbbd52) - ## / 65
- System.Net.WebSockets.Client.dll (8bd5352288d4) - ## / 67
- System.Net.WebSockets.dll (c65066cbf456) - ## / 65
- System.ObjectModel.dll (f8a937e0d8ee) - ## / 67
- System.Reflection.dll (b94c6c749e9c) - ## / 67
- System.Reflection.Extensions.dll (5d1825edba67) - ## / 67
- System.Reflection.Primitives.dll (a15fc05ec75c) - ## / 66
- System.Resources.Reader.dll (8452db52fa53) - ## / 66
- System.Resources.ResourceManager.dll (751063046944) - ## / 67
- System.Resources.Writer.dll (cdee2a7d5e0e) - ## / 64
- System.Runtime.CompilerServices.VisualC.dll (468d8b6327de) - ## / 64
- System.Runtime.dll (20dd2f3a51c3) - ## / 66
- System.Runtime.Extensions.dll (4993f09f1cb2) - ## / 66
- System.Runtime.Handles.dll (20601995c27e) - ## / 66
- System.Runtime.InteropServices.dll (baaf6f40c408) - ## / 67
- System.Runtime.InteropServices.RuntimeInformation.dll (eab3ee228d88) - ## / 65
- System.Runtime.Numerics.dll (f1591274e073) - ## / 67
- System.Runtime.Serialization.Formatters.dll (b133284de5be) - ## / 67
- System.Runtime.Serialization.Json.dll (65a60b7efc49) - ## / 66
- System.Runtime.Serialization.Primitives.dll (37465b59c231) - ## / 67
- System.Runtime.Serialization.Xml.dll (52a225789ec3) - ## / 67
- System.Security.Claims.dll (fa680ced4431) - ## / 67
- System.Security.Cryptography.Algorithms.dll (53dddd5b38bc) - ## / 67
- System.Security.Cryptography.Csp.dll (9e3e695c8769) - ## / 66
- System.Security.Cryptography.Encoding.dll (e7e9a454a6d6) - ## / 66
- System.Security.Cryptography.Primitives.dll (36d8a006c14e) - ## / 66
- System.Security.Cryptography.X509Certificates.dll (f63cb61090ff) - ## / 67
- System.Security.Principal.dll (8a4a8b57af56) - ## / 66
- System.Security.SecureString.dll (2996f385d291) - ## / 66
- System.Text.Encoding.dll (ed671d2df192) - ## / 65
- System.Text.Encoding.Extensions.dll (22eeb3115b13) - ## / 67
- System.Text.RegularExpressions.dll (d499731c7efd) - ## / 66
- System.Threading.dll (fbd834454c22) - ## / 66
- System.Threading.Overlapped.dll (3d5be899ab6d) - ## / 65
- System.Threading.Tasks.dll (8175652d3650) - ## / 67
- System.Threading.Tasks.Parallel.dll (20885791ec9e) - ## / 67
- System.Threading.Thread.dll (5b496f6af673) - ## / 66
- System.Threading.ThreadPool.dll (344f6bdb407a) - ## / 67
- System.Threading.Timer.dll (adfcc5e0529b) - ## / 67
- System.ValueTuple.dll (91b306190d5c) - ## / 66
- System.Xml.ReaderWriter.dll (b3cba23a3265) - ## / 67
- System.Xml.XDocument.dll (194e509de555) - ## / 64
- System.Xml.XmlDocument.dll (2ed966825eb7) - ## / 67
- System.Xml.XmlSerializer.dll (ffa81ce3da5b) - ## / 67
- System.Xml.XPath.dll (0c09f8823ebf) - ## / 66
- System.Xml.XPath.XDocument.dll (fcc27d6d6f93) - ## / 67
- mi.dll (1d472c70cd86) - ## / 66
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (aa597068558d) - ## / 66
- miutils.dll (b0a10df95dd8) - ## / 66
- mi.dll (c58a80536d0d) - ## / 66
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (ece1a0abdfdc) - ## / 65
- miutils.dll (46640e5dc2cd) - ## / 66
- PowerShell.Core.Instrumentation.dll (37635c0b680e) - ## / 67
- PowerShell.Core.Instrumentation.dll (ac6000e83fb9) - ## / 67
- mi.dll (75ae079c455a) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (378b2244424f) - ## / 66
- miutils.dll (5770735e96c8) - ## / 66
- mi.dll (30fa6ea392e9) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (38957e7a619f) - ## / 66
- miutils.dll (bdeadec402b1) - ## / 67
- mi.dll (587cbdab8676) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (c233268974df) - ## / 70
- miutils.dll (a5b736e2d45d) - ## / 70
- mi.dll (ffc5f420d176) - ## / 71
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (e2c33877d607) - ## / 68
- miutils.dll (87ca3f0f769b) - ## / 68
- mi.dll (5b54e7d4a9fe) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (aa322248cec8) - ## / 67
- miutils.dll (7cf662238f55) - ## / 67
- mi.dll (9f7dd11083e0) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (5fef6867166d) - ## / 66
- miutils.dll (d1f7e0cbfb79) - ## / 67
- mi.dll (426a746f85e5) - ## / 66
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (dc4e2d3538dc) - ## / 67
- miutils.dll (b0b60a1f346d) - ## / 67
- mi.dll (6f7239b552c5) - ## / 66
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (e8c6fee600bb) - ## / 66
- miutils.dll (9fa052a3d309) - ## / 66
- System.Text.Encoding.CodePages.dll (963e7cf70e93) - ## / 69
- Microsoft.Win32.Registry.AccessControl.dll (c7ecc7353dae) - ## / 65
- System.Security.Cryptography.Pkcs.dll (dcb8a0cfb716) - ## / 65
- Microsoft.Management.Infrastructure.dll (be364af11689) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (9b2d22d73df8) - ## / 65
- Microsoft.Management.Infrastructure.dll (4b35a07584fa) - ## / 66
- Microsoft.Management.Infrastructure.Native.dll (017642fc057d) - ## / 65
- Microsoft.Management.Infrastructure.dll (e7a97d645550) - ## / 66
- Microsoft.Management.Infrastructure.Native.dll (c0657165b701) - ## / 67
- Microsoft.Management.Infrastructure.dll (a8ce9786b14d) - ## / 65
- Microsoft.Management.Infrastructure.Native.dll (a5a3b0451922) - ## / 67
- Microsoft.Management.Infrastructure.dll (05b8b87300fc) - ## / 68
- Microsoft.Management.Infrastructure.Native.dll (4530e89f74d7) - ## / 67
- Microsoft.Management.Infrastructure.dll (175923ec5c4c) - ## / 69
- Microsoft.Management.Infrastructure.Native.dll (ce6f56eca826) - ## / 67
- Microsoft.Management.Infrastructure.dll (dfe1351ff634) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (c3ac8b1bbf5b) - ## / 67
- Microsoft.Management.Infrastructure.dll (4e62f338ab6e) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (338c6c908ad8) - ## / 67
- Microsoft.Management.Infrastructure.dll (4e0d80a48594) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (da027ccecfea) - ## / 67
- Microsoft.Management.Infrastructure.dll (88efc0700cbb) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (76ff5b2a04ef) - ## / 66
- jupyter-powershell.1.0.0-beta-7.nupkg (140853c264e2) - ## / 61
- Jupyter.dll (738a732a3d89) - ## / 66
- PowerShell-Kernel.dll (5886d55753fb) - ## / 66
- Jupyter.dll (968af8e2fc8e) - ## / 66
- PowerShell-Kernel.exe (20ce76060f82) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Jupyter-PowerShell 1.0.0-beta-7 | 511 | Monday, January 15, 2018 | Exempted | |
Jupyter-PowerShell 1.0.0-beta-6 | 234 | Monday, January 15, 2018 | Exempted | |
Jupyter-PowerShell 1.0.0-beta-5 | 295 | Tuesday, July 18, 2017 | Exempted |
Copyright (c) 2017 Joel Bennett
This package has no dependencies.
Ground Rules:
- This discussion is only about Jupyter-PowerShell and the Jupyter-PowerShell package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Jupyter-PowerShell, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.