From 8bcdc8d42311a2d02f5ba541eb496f572ea7f8dc Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 5 Mar 2023 15:37:59 -0500 Subject: [PATCH 01/15] New dedicated building workflow Moving the old debug build workflow into a new, portable and configurable building workflow. Currently nothing builds automatically, so more specific workflows need to be created. - Accepts buildMode and version parameters - Specify any build configuration already defined in msbuild - Use modern method of setting env vars https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable - Output is in a predictable, runner-domain location --- .github/workflows/build-solution.yaml | 83 +++++++++++++++++++++++++++ .github/workflows/build-validate.yaml | 56 ------------------ 2 files changed, 83 insertions(+), 56 deletions(-) create mode 100644 .github/workflows/build-solution.yaml delete mode 100644 .github/workflows/build-validate.yaml diff --git a/.github/workflows/build-solution.yaml b/.github/workflows/build-solution.yaml new file mode 100644 index 0000000..953bf93 --- /dev/null +++ b/.github/workflows/build-solution.yaml @@ -0,0 +1,83 @@ +name: build-solution + +# defaults: +# run: +# working-directory: WinNUT_V2 + +on: + workflow_dispatch: + inputs: + buildMode: + description: 'Solution build mode passed to MSBuild.' + required: true + type: string + + version: + description: 'Version number to refer to this build and its assets, in `v.major.minor.build`.' + required: true + type: string + workflow_call: + inputs: + buildMode: + description: 'Solution build mode passed to MSBuild.' + required: true + type: string + + version: + description: 'Version number to refer to this build and its assets, in `v.major.minor.build`.' + required: true + type: string + + # pull_request: + # branches: [ main, Dev-2.2 ] # Build for dev primarily, probably don't need main...? + # paths: + # - '**.vb' + # - '**.vbproj' + +env: + DOTNET_VERSION: '4.8' + SLN_FILE: WinNUT_V2.sln + SLN_DIR: WinNUT_V2 + +jobs: + build: + name: build-${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [windows-latest] + outputs: + asmVersion: ${{ steps.getversion.outputs.version }} + steps: + # Build output goes in this runner's temp directory + - name: Get output directory + run: echo "OUTPUT=${{ runner.temp }}\build-output" >> $env:GITHUB_ENV + + # Make MSBuild available from $PATH. + - name: setup-msbuild + uses: microsoft/setup-msbuild@v1 + + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Restore Packages + run: msbuild $env:SLN_DIR -t:restore + + # msbuild cannot handle .vdproj Installer projects, so only build debug for now. + - name: Build solution + run: msbuild $env:SLN_DIR\$env:SLN_FILE -nologo -property:Configuration=${{ inputs.buildMode }} -property:OutDir=${{ env.OUTPUT }} + + # For now, let msbuild continue autogenerating assembly versions and base everything off of that. + - name: Get AssemblyVersion generated by msbuild + id: getversion + uses: berglie/assembly-version/get@v1 + with: + directory: ${{ env.OUTPUT }} + + - name: Upload Artifact + uses: actions/upload-artifact@v3 + with: + name: ${{ format('winnut-client-{0}-{1}', inputs.buildMode, vars.GITHUB_WORKFLOW_SHA) }} + if-no-files-found: error + path: ${{ env.OUTPUT }} + diff --git a/.github/workflows/build-validate.yaml b/.github/workflows/build-validate.yaml deleted file mode 100644 index a51d687..0000000 --- a/.github/workflows/build-validate.yaml +++ /dev/null @@ -1,56 +0,0 @@ -name: build-debug - -defaults: - run: - working-directory: WinNUT_V2 - -on: - workflow_dispatch: - pull_request: - branches: [ main, Dev-2.2 ] # Build for dev primarily, probably don't need main...? - paths: - - '**.vb' - - '**.vbproj' - -env: - DOTNET_VERSION: '4.8' # The .NET SDK version to use - SLN_FILE: WinNUT_V2.sln - DEBUG_OUTPUT: WinNUT_V2/WinNUT-Client/bin/Debug - -jobs: - build: - - name: debug-build-${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-2019] # Should have MSBuild. - steps: - # Make MSBuild available from $PATH. - - name: setup-msbuild - uses: microsoft/setup-msbuild@v1.1 - - - name: Checkout Code - uses: actions/checkout@v3 - - - name: Restore Packages - run: msbuild -t:restore - - # msbuild cannot handle .vdproj Installer projects, so only build debug for now. - - name: Build solution - run: msbuild $env:SLN_FILE -p:Configuration=Debug - - # For now, let msbuild continue autogenerating assembly versions and base everything off of that. - - name: Get AssemblyVersion generated by msbuild - id: getversion - uses: berglie/assembly-version/get@v1 - with: - directory: ${{ env.DEBUG_OUTPUT }} - - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: ${{ format('WinNUT-Client-debugbuild-v{0}', steps.getversion.outputs.version) }} - if-no-files-found: error - path: ${{ env.DEBUG_OUTPUT }} - From 9f083d653559b32a3971c37975f2a2b5bb7317fd Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 7 Mar 2023 13:41:50 -0500 Subject: [PATCH 02/15] Manually control assembly version Switched the build process over so that MSBuild no longer auto-generates the assembly version. Instead, we pass it to MSBuild with the `Version` parameter. --- .github/workflows/build-solution.yaml | 21 ++++++++------------ WinNUT_V2/SharedAssemblyInfo.vb | 13 ------------ WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 15 ++++++++++++++ 3 files changed, 23 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build-solution.yaml b/.github/workflows/build-solution.yaml index 953bf93..d3e865d 100644 --- a/.github/workflows/build-solution.yaml +++ b/.github/workflows/build-solution.yaml @@ -13,7 +13,7 @@ on: type: string version: - description: 'Version number to refer to this build and its assets, in `v.major.minor.build`.' + description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' required: true type: string workflow_call: @@ -24,7 +24,7 @@ on: type: string version: - description: 'Version number to refer to this build and its assets, in `v.major.minor.build`.' + description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' required: true type: string @@ -46,8 +46,6 @@ jobs: strategy: matrix: os: [windows-latest] - outputs: - asmVersion: ${{ steps.getversion.outputs.version }} steps: # Build output goes in this runner's temp directory - name: Get output directory @@ -65,19 +63,16 @@ jobs: # msbuild cannot handle .vdproj Installer projects, so only build debug for now. - name: Build solution - run: msbuild $env:SLN_DIR\$env:SLN_FILE -nologo -property:Configuration=${{ inputs.buildMode }} -property:OutDir=${{ env.OUTPUT }} - - # For now, let msbuild continue autogenerating assembly versions and base everything off of that. - - name: Get AssemblyVersion generated by msbuild - id: getversion - uses: berglie/assembly-version/get@v1 - with: - directory: ${{ env.OUTPUT }} + run: > + msbuild $env:SLN_DIR\$env:SLN_FILE -nologo + -property:Configuration=${{ inputs.buildMode }} + -property:OutDir=${{ env.OUTPUT }} + -property:Version=${{ inputs.version }} - name: Upload Artifact uses: actions/upload-artifact@v3 with: - name: ${{ format('winnut-client-{0}-{1}', inputs.buildMode, vars.GITHUB_WORKFLOW_SHA) }} + name: ${{ format('winnut-client-{0}-{1}', inputs.buildMode, inputs.version) }} if-no-files-found: error path: ${{ env.OUTPUT }} diff --git a/WinNUT_V2/SharedAssemblyInfo.vb b/WinNUT_V2/SharedAssemblyInfo.vb index 44c7deb..2060b60 100644 --- a/WinNUT_V2/SharedAssemblyInfo.vb +++ b/WinNUT_V2/SharedAssemblyInfo.vb @@ -20,17 +20,4 @@ Imports System.Reflection - -' Les informations de version pour un assembly se composent des quatre valeurs suivantes : -' -' Version principale -' Version secondaire -' Numéro de build -' Révision -' -' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut -' en utilisant '*', comme indiqué ci-dessous : -' - - diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 11d6b09..f241f27 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -27,6 +27,7 @@ true 1 2.2.0.%2a + 0.0.0.0 false true true @@ -44,6 +45,8 @@ WinNUT-Client.xml 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 false + + AnyCPU @@ -407,4 +410,16 @@ + + + + <_Parameter1>$(Version) + + + + + + + + \ No newline at end of file From c75eef35d569ac5cdc5a0252aa2885cd6ef92031 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 7 Mar 2023 15:58:12 -0500 Subject: [PATCH 03/15] Creating debug build workflow Reducing the build-solution workflow responsibilities and creating a new workflow strictly for debug builds. - build-solution is no longer manually callable and must be called from another workflow - Install the MAT extension so that language resources are compiled, when the compileLangs workflow parameter is true. - modifying the job name to be more descriptive. --- .github/workflows/build-debug.yaml | 40 ++++++++++++++++++++ .github/workflows/build-solution.yaml | 53 ++++++++------------------- 2 files changed, 56 insertions(+), 37 deletions(-) create mode 100644 .github/workflows/build-debug.yaml diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml new file mode 100644 index 0000000..7126408 --- /dev/null +++ b/.github/workflows/build-debug.yaml @@ -0,0 +1,40 @@ +# Build the solution to verify a successful build in debug mode. + +name: build-debug + +on: + workflow_dispatch: + + pull_request: + branches: [ Dev-2.2 ] # Debug builds for PRs that target the dev branch. + paths: + - '**.vb' + - '**.vbproj' + +env: + SHORT_SHA: + +jobs: + prepare-environment: + runs-on: windows-latest + steps: + - name: Get short SHA + run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV + + build-solution: + uses: ./.github/workflows/build-solution.yaml + with: + buildMode: 'Debug' + version: '2.2.*' + compileLangs: false + + build-debug: + needs: build-solution + # runs-on: windows-latest + steps: + - name: Package output + uses: actions/upload-artifact@v3 + with: + name: ${{ format('winnut-{0}-{1}', inputs.buildMode, env.SHORT_SHA) }} + if-no-files-found: error + path: WinNUT_V2/WinNUT_GUI/bin/Debug \ No newline at end of file diff --git a/.github/workflows/build-solution.yaml b/.github/workflows/build-solution.yaml index d3e865d..471175f 100644 --- a/.github/workflows/build-solution.yaml +++ b/.github/workflows/build-solution.yaml @@ -1,21 +1,7 @@ +# Core building functionality, intended to be called from more specific workflows. name: build-solution -# defaults: -# run: -# working-directory: WinNUT_V2 - on: - workflow_dispatch: - inputs: - buildMode: - description: 'Solution build mode passed to MSBuild.' - required: true - type: string - - version: - description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' - required: true - type: string workflow_call: inputs: buildMode: @@ -28,33 +14,35 @@ on: required: true type: string - # pull_request: - # branches: [ main, Dev-2.2 ] # Build for dev primarily, probably don't need main...? - # paths: - # - '**.vb' - # - '**.vbproj' + compileLangs: + description: 'Install the Multilingual App Toolkit extension, so that languages are compiled.' + required: true + type: boolean env: DOTNET_VERSION: '4.8' - SLN_FILE: WinNUT_V2.sln SLN_DIR: WinNUT_V2 jobs: build: - name: build-${{ matrix.os }} + name: build-[${{ inputs.buildMode }}]v${{ inputs.version }} runs-on: ${{ matrix.os }} strategy: matrix: os: [windows-latest] - steps: - # Build output goes in this runner's temp directory - - name: Get output directory - run: echo "OUTPUT=${{ runner.temp }}\build-output" >> $env:GITHUB_ENV + steps: # Make MSBuild available from $PATH. - name: setup-msbuild uses: microsoft/setup-msbuild@v1 + # Install the MAT extension for multilingual compilation if requested. + - name: Install Multilingual App Toolkit extension + if: ${{ inputs.compileLangs }} + uses: microcompiler/install-vsix@db1f973c3d24d1ddc0c38f14d0e1e3a85b2ccb21 + with: + packagename: 'dts-publisher.mat2022' + - name: Checkout Code uses: actions/checkout@v3 @@ -64,15 +52,6 @@ jobs: # msbuild cannot handle .vdproj Installer projects, so only build debug for now. - name: Build solution run: > - msbuild $env:SLN_DIR\$env:SLN_FILE -nologo + msbuild $env:SLN_DIR\WinNUT_V2.sln -nologo -property:Configuration=${{ inputs.buildMode }} - -property:OutDir=${{ env.OUTPUT }} - -property:Version=${{ inputs.version }} - - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: ${{ format('winnut-client-{0}-{1}', inputs.buildMode, inputs.version) }} - if-no-files-found: error - path: ${{ env.OUTPUT }} - + -property:Version=${{ inputs.version }} \ No newline at end of file From e7cf32d21cfcf628385eee23844afb8beebdcf5f Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 8 Apr 2023 17:37:54 -0400 Subject: [PATCH 04/15] Solution building becomes composite action Moving environment prep & solution building into its own composite action, which makes much more sense then trying to split workflow up between jobs. --- .github/actions/build-solution/action.yaml | 36 ++++++++++++++ .github/workflows/build-debug.yaml | 32 ++++++------ .github/workflows/build-solution.yaml | 57 ---------------------- 3 files changed, 50 insertions(+), 75 deletions(-) create mode 100644 .github/actions/build-solution/action.yaml delete mode 100644 .github/workflows/build-solution.yaml diff --git a/.github/actions/build-solution/action.yaml b/.github/actions/build-solution/action.yaml new file mode 100644 index 0000000..a14df4f --- /dev/null +++ b/.github/actions/build-solution/action.yaml @@ -0,0 +1,36 @@ +name: "Build Solution" +description: "Execute MSBuild with desired settings." +inputs: + build-mode: + description: 'Solution build mode passed to MSBuild.' + required: true + + version: + description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' + required: true + + compile-langs: + description: 'Install the Multilingual App Toolkit extension, so that languages are compiled.' + required: true + +runs: + using: "composite" + steps: + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1 + - name: Restore Packages + working-directory: WinNUT_V2 + shell: pwsh + run: msbuild $env:SLN_DIR -t:restore + - name: Install Multilingual App Toolkit extension + if: inputs.compile-langs == 'true' + uses: microcompiler/install-vsix@db1f973c3d24d1ddc0c38f14d0e1e3a85b2ccb21 + with: + packagename: 'dts-publisher.mat2022' + - name: Build solution + shell: pwsh + working-directory: WinNUT_V2 + run: > + msbuild WinNUT_V2.sln -nologo + -property:Configuration=${{ inputs.build-mode }} + -property:Version=${{ inputs.version }} \ No newline at end of file diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml index 7126408..5410f58 100644 --- a/.github/workflows/build-debug.yaml +++ b/.github/workflows/build-debug.yaml @@ -1,5 +1,3 @@ -# Build the solution to verify a successful build in debug mode. - name: build-debug on: @@ -15,26 +13,24 @@ env: SHORT_SHA: jobs: - prepare-environment: + build-debug: runs-on: windows-latest steps: - - name: Get short SHA + - name: "Get Short SHA" + id: "get-short-sha" + shell: pwsh run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - - build-solution: - uses: ./.github/workflows/build-solution.yaml - with: - buildMode: 'Debug' - version: '2.2.*' - compileLangs: false - - build-debug: - needs: build-solution - # runs-on: windows-latest - steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Build solution in Debug configuration (no multilingual) + uses: ./.github/actions/build-solution + with: + build-mode: "Debug" + version: "2.2.*" + compile-langs: false - name: Package output uses: actions/upload-artifact@v3 with: - name: ${{ format('winnut-{0}-{1}', inputs.buildMode, env.SHORT_SHA) }} + name: ${{ format('winnut-client-debug-{0}', env.SHORT_SHA) }} if-no-files-found: error - path: WinNUT_V2/WinNUT_GUI/bin/Debug \ No newline at end of file + path: WinNUT_V2/WinNUT-Client/bin/Debug \ No newline at end of file diff --git a/.github/workflows/build-solution.yaml b/.github/workflows/build-solution.yaml deleted file mode 100644 index 471175f..0000000 --- a/.github/workflows/build-solution.yaml +++ /dev/null @@ -1,57 +0,0 @@ -# Core building functionality, intended to be called from more specific workflows. -name: build-solution - -on: - workflow_call: - inputs: - buildMode: - description: 'Solution build mode passed to MSBuild.' - required: true - type: string - - version: - description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' - required: true - type: string - - compileLangs: - description: 'Install the Multilingual App Toolkit extension, so that languages are compiled.' - required: true - type: boolean - -env: - DOTNET_VERSION: '4.8' - SLN_DIR: WinNUT_V2 - -jobs: - build: - name: build-[${{ inputs.buildMode }}]v${{ inputs.version }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [windows-latest] - - steps: - # Make MSBuild available from $PATH. - - name: setup-msbuild - uses: microsoft/setup-msbuild@v1 - - # Install the MAT extension for multilingual compilation if requested. - - name: Install Multilingual App Toolkit extension - if: ${{ inputs.compileLangs }} - uses: microcompiler/install-vsix@db1f973c3d24d1ddc0c38f14d0e1e3a85b2ccb21 - with: - packagename: 'dts-publisher.mat2022' - - - name: Checkout Code - uses: actions/checkout@v3 - - - name: Restore Packages - run: msbuild $env:SLN_DIR -t:restore - - # msbuild cannot handle .vdproj Installer projects, so only build debug for now. - - name: Build solution - run: > - msbuild $env:SLN_DIR\WinNUT_V2.sln -nologo - -property:Configuration=${{ inputs.buildMode }} - -property:Version=${{ inputs.version }} \ No newline at end of file From 013e46f8d6adcd5d7d216727cf64dc97757c2db1 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 10 Apr 2023 14:44:14 -0400 Subject: [PATCH 05/15] Creating translation comp. workflow Almost exactly the same as the debug workflow, except for which files it triggers on and the parameter passed to the build solution action. --- .github/workflows/build-translation.yaml | 32 ++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/build-translation.yaml diff --git a/.github/workflows/build-translation.yaml b/.github/workflows/build-translation.yaml new file mode 100644 index 0000000..61e1574 --- /dev/null +++ b/.github/workflows/build-translation.yaml @@ -0,0 +1,32 @@ +name: build-translation + +on: + workflow_dispatch: + + pull_request: + branches: Dev-2.2 + paths: + - "**.xlf" + +jobs: + build-translation: + runs-on: windows-latest + steps: + - name: "Get Short SHA" + id: "get-short-sha" + shell: pwsh + run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV + - name: Checkout code + uses: actions/checkout@v3 + - name: Build solution in Debug configuration (with multilingual) + uses: ./.github/actions/build-solution + with: + build-mode: "Debug" + version: "2.2.*" + compile-langs: true + - name: Package output + uses: actions/upload-artifact@v3 + with: + name: ${{ format('winnut-client-debug-{0}', env.SHORT_SHA) }} + if-no-files-found: error + path: WinNUT_V2/WinNUT-Client/bin/Debug \ No newline at end of file From 57c01c9d87e548bd3ccde9f3a97cda7b7aa2df27 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 11 Apr 2023 13:11:25 -0400 Subject: [PATCH 06/15] Relocate artifact upload step out of workflows Artifact uploading occurs in the build solution action now, directly after compilation happens. This should simplify calling workflows. Testing the change in debug only for now. --- .github/actions/build-solution/action.yaml | 22 +++++++++++----------- .github/workflows/build-debug.yaml | 20 +++----------------- 2 files changed, 14 insertions(+), 28 deletions(-) diff --git a/.github/actions/build-solution/action.yaml b/.github/actions/build-solution/action.yaml index a14df4f..8b62aed 100644 --- a/.github/actions/build-solution/action.yaml +++ b/.github/actions/build-solution/action.yaml @@ -1,5 +1,5 @@ name: "Build Solution" -description: "Execute MSBuild with desired settings." +description: "Execute MSBuild with desired settings, and upload resulting artifact." inputs: build-mode: description: 'Solution build mode passed to MSBuild.' @@ -9,28 +9,28 @@ inputs: description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' required: true - compile-langs: - description: 'Install the Multilingual App Toolkit extension, so that languages are compiled.' - required: true - runs: using: "composite" steps: + - name: "Get Short SHA" + shell: pwsh + run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - name: Setup MSBuild uses: microsoft/setup-msbuild@v1 - name: Restore Packages working-directory: WinNUT_V2 shell: pwsh run: msbuild $env:SLN_DIR -t:restore - - name: Install Multilingual App Toolkit extension - if: inputs.compile-langs == 'true' - uses: microcompiler/install-vsix@db1f973c3d24d1ddc0c38f14d0e1e3a85b2ccb21 - with: - packagename: 'dts-publisher.mat2022' - name: Build solution shell: pwsh working-directory: WinNUT_V2 run: > msbuild WinNUT_V2.sln -nologo -property:Configuration=${{ inputs.build-mode }} - -property:Version=${{ inputs.version }} \ No newline at end of file + -property:Version=${{ inputs.version }} + - name: Package output + uses: actions/upload-artifact@v3 + with: + name: ${{ format('winnut-client-{0}-{1}', inputs.build-mode, env.SHORT_SHA) }} + if-no-files-found: error + path: WinNUT_V2/WinNUT-Client/bin/${{ inputs.build-mode }} \ No newline at end of file diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml index 5410f58..f818a09 100644 --- a/.github/workflows/build-debug.yaml +++ b/.github/workflows/build-debug.yaml @@ -4,33 +4,19 @@ on: workflow_dispatch: pull_request: - branches: [ Dev-2.2 ] # Debug builds for PRs that target the dev branch. + branches: Dev-2.2 paths: - '**.vb' - '**.vbproj' -env: - SHORT_SHA: - jobs: build-debug: runs-on: windows-latest steps: - - name: "Get Short SHA" - id: "get-short-sha" - shell: pwsh - run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - name: Checkout code uses: actions/checkout@v3 - - name: Build solution in Debug configuration (no multilingual) + - name: Build solution in Debug configuration uses: ./.github/actions/build-solution with: build-mode: "Debug" - version: "2.2.*" - compile-langs: false - - name: Package output - uses: actions/upload-artifact@v3 - with: - name: ${{ format('winnut-client-debug-{0}', env.SHORT_SHA) }} - if-no-files-found: error - path: WinNUT_V2/WinNUT-Client/bin/Debug \ No newline at end of file + version: "${{ vars.PRERELEASE_VERSION }}.*" \ No newline at end of file From 02e87c92bde0c31c5ed2a243555d7359da0afebc Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 11 Apr 2023 13:16:50 -0400 Subject: [PATCH 07/15] Applying previous changes to translation workflow --- .github/workflows/build-translation.yaml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-translation.yaml b/.github/workflows/build-translation.yaml index 61e1574..e207796 100644 --- a/.github/workflows/build-translation.yaml +++ b/.github/workflows/build-translation.yaml @@ -12,21 +12,14 @@ jobs: build-translation: runs-on: windows-latest steps: - - name: "Get Short SHA" - id: "get-short-sha" - shell: pwsh - run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - name: Checkout code uses: actions/checkout@v3 - - name: Build solution in Debug configuration (with multilingual) + - name: Install Multilingual App Toolkit extension + uses: microcompiler/install-vsix@db1f973c3d24d1ddc0c38f14d0e1e3a85b2ccb21 + with: + packagename: 'dts-publisher.mat2022' + - name: Build solution in Debug configuration uses: ./.github/actions/build-solution with: build-mode: "Debug" - version: "2.2.*" - compile-langs: true - - name: Package output - uses: actions/upload-artifact@v3 - with: - name: ${{ format('winnut-client-debug-{0}', env.SHORT_SHA) }} - if-no-files-found: error - path: WinNUT_V2/WinNUT-Client/bin/Debug \ No newline at end of file + version: "${{ vars.PRERELEASE_VERSION }}.*" \ No newline at end of file From 80cab0a66f91790d5d23ac5aae891c91cee55668 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 11 Apr 2023 13:41:20 -0400 Subject: [PATCH 08/15] Release workflow Creating workflow to handle any (pre)release. Triggered by pushing a tag starting with the letter 'v'. Also creating a separate powershell script to extract version information from the tag. - Renaming some standard repository text files for consistency and inclusion with the released artifacts. - VS Installer projects only build with the devenv command, so call that specifically for this purpose. - Updating some file references in the Setup project - Call special utility that allows us to run devenv on Setup projects (disable or enable out of process building?) - Try to fix errors building Setup project --- .github/workflows/build-release.yaml | 62 ++++++ .github/workflows/get-ver.ps1 | 18 ++ changelog.md => CHANGELOG.md | 0 COPYING => LICENSE.txt | 0 WinNUT_V2/Setup/Setup.vdproj | 295 +++++---------------------- 5 files changed, 135 insertions(+), 240 deletions(-) create mode 100644 .github/workflows/build-release.yaml create mode 100644 .github/workflows/get-ver.ps1 rename changelog.md => CHANGELOG.md (100%) rename COPYING => LICENSE.txt (100%) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml new file mode 100644 index 0000000..671c445 --- /dev/null +++ b/.github/workflows/build-release.yaml @@ -0,0 +1,62 @@ +# Build solution in Release mode and submit a GitHub release. + +name: build-release + +on: + push: + tags: "v*" + +env: + # The desired name of the no-install archive to be uploaded along side the installer. + ARCHIVE_NAME: "winnut-client" + VS_PATH: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise" + +jobs: + build-release: + runs-on: windows-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + # Provide VER and SEMVER env vars. + - name: Extract version from tag + run: ./.github/workflows/get-ver.ps1 ${{ github.ref }} + - name: Build solution in Release configuration + uses: ./.github/actions/build-solution + with: + build-mode: "Release" + version: "${{ env.VER }}" + - name: Prepare no install archive + run: | + $arc = Compress-Archive -PassThru -Path "WinNUT_V2\WinNUT-Client\bin\Release" -DestinationPath "${{ env.ARCHIVE_NAME }}-v${{ env.SEMVER }}.zip" + echo "ARCHIVE_NAME=$arc" >> $env:GITHUB_ENV + # https://stackoverflow.com/questions/8648428/an-error-occurred-while-validating-hresult-8000000a + - name: Fix 'out of process' build error + working-directory: ${{ env.VS_PATH }} + run: Start-Process -Wait -NoNewWindow "${{ env.VS_PATH }}\Common7\IDE\CommonExtensions\Microsoft\VSI\DisableOutOfProcBuild\DisableOutOfProcBuild.exe" + # Since MSBuild won't build the Setup project, we need to call devenv directly. + - name: Build Setup Project + run: Start-Process -Wait -NoNewWindow "${{ env.VS_PATH }}\common7\ide\devenv.com" -ArgumentList "WinNUT_V2\WinNUT_V2.sln /Build Release /Project Setup\Setup.vdproj" + - name: Create prerelease + uses: softprops/action-gh-release@v1 + with: + draft: true + fail_on_unmatched_files: true + generate_release_notes: true + files: | + WinNUT_V2/Setup/Release/WinNUT-Setup.msi + ${{ env.ARCHIVE_NAME }} + LICENSE.txt + README.md + CHANGELOG.md + # - name: Create prerelease + # uses: "marvinpinto/action-automatic-releases@v1.2.1" + # with: + # repo_token: "${{ secrets.GITHUB_TOKEN }}" + # draft: true # Release as draft until I'm more confident + # prerelease: true + # files: | + # WinNUT_V2\Setup\Release\WinNUT-Setup.msi + # ${{ env.ARCHIVE_NAME }}.zip + # LICENSE.txt + # README.md + # CHANGELOG.md \ No newline at end of file diff --git a/.github/workflows/get-ver.ps1 b/.github/workflows/get-ver.ps1 new file mode 100644 index 0000000..34ded45 --- /dev/null +++ b/.github/workflows/get-ver.ps1 @@ -0,0 +1,18 @@ +# Verify valid semver, and provide it along with an AssemblyVersion-compatible string as env vars. + +# Set to the value provided by github.ref +param([string]$ghRef) + +$semVerRegex = "(?0|[1-9]\d*)\.(?0|[1-9]\d*)\.(?0|[1-9]\d*)(?:-(?(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$" + +if (!($ghRef -match $semVerRegex)) { + Write-Host "Could not find valid semver within ref. string. Given: $ghRef" + Exit 1 +} + +$verRes = "VER={0}.{1}.{2}" -f $matches.major, $matches.minor, $matches.patch +$semVerRes = "SEMVER=" + $ghRef.Substring(10) + +echo $verRes >> $env:GITHUB_ENV +echo $semVerRes >> $env:GITHUB_ENV +Write-Host "Result: $verRes, $semVerRes" \ No newline at end of file diff --git a/changelog.md b/CHANGELOG.md similarity index 100% rename from changelog.md rename to CHANGELOG.md diff --git a/COPYING b/LICENSE.txt similarity index 100% rename from COPYING rename to LICENSE.txt diff --git a/WinNUT_V2/Setup/Setup.vdproj b/WinNUT_V2/Setup/Setup.vdproj index 4a09de9..be7904d 100644 --- a/WinNUT_V2/Setup/Setup.vdproj +++ b/WinNUT_V2/Setup/Setup.vdproj @@ -393,12 +393,6 @@ } "Entry" { - "MsmKey" = "8:_3F430083DA6440B2B12DECC4BB791883" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_3FDB26770B8C2C12BAE91A21DA04EBC3" "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" "MsmSig" = "8:_UNDEFINED" @@ -1629,12 +1623,6 @@ } "Entry" { - "MsmKey" = "8:_761987FA7717402DB92207F177F3DB49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_763D47C7EB44810D6199E3315BC543EF" "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" "MsmSig" = "8:_UNDEFINED" @@ -2931,6 +2919,12 @@ } "Entry" { + "MsmKey" = "8:_9E636FF29BA24788AE1072D051294BE6" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_9F6DE8A084F82CF80095E944791B4989" "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" "MsmSig" = "8:_UNDEFINED" @@ -4311,6 +4305,12 @@ } "Entry" { + "MsmKey" = "8:_E836E4A52E0740F5A2C614D8AB62A468" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" "OwnerKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" "MsmSig" = "8:_UNDEFINED" @@ -7350,37 +7350,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A6481F0F99C80219D875FADD7CEBCF5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2A6481F0F99C80219D875FADD7CEBCF5" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33BCB1EF059B4E9B87FA7435A8F2499C" { "SourcePath" = "8:..\\images\\Ico\\WinNut.ico" @@ -7835,26 +7804,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F430083DA6440B2B12DECC4BB791883" - { - "SourcePath" = "8:..\\..\\changelog.md" - "TargetName" = "8:changelog.md" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:FALSE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FDB26770B8C2C12BAE91A21DA04EBC3" { "AssemblyRegister" = "3:1" @@ -8603,7 +8552,7 @@ { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WinNUT-Client_Common, Version=2.2.8436.29817, Culture=neutral, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:WinNUT-Client_Common, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { "_5C99D3FB8E4CBB81209F637E049611DF" @@ -8785,37 +8734,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64004A3095D61B7A465881685BB1A0CF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_64004A3095D61B7A465881685BB1A0CF" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64264C966DC00E03E0ECE01BF2F4185B" { "AssemblyRegister" = "3:1" @@ -9436,26 +9354,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_761987FA7717402DB92207F177F3DB49" - { - "SourcePath" = "8:..\\..\\COPYING" - "TargetName" = "8:COPYING" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_763D47C7EB44810D6199E3315BC543EF" { "AssemblyRegister" = "3:1" @@ -9491,7 +9389,7 @@ { "AssemblyRegister" = "3:1" "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:AGauge, Version=2.1.8436.29817, Culture=neutral, processorArchitecture=MSIL" + "AssemblyAsmDisplayName" = "8:AGauge, Version=2.1.8502.34404, Culture=neutral, processorArchitecture=MSIL" "ScatterAssemblies" { "_7643B2E01E55816C8BA2265FF9E9B786" @@ -9724,37 +9622,6 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F619FE6A380D79E80E85D6E6822F82A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7F619FE6A380D79E80E85D6E6822F82A" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F6E5FD19E88328BADA4E8B2CE4E1A32" { "AssemblyRegister" = "3:1" @@ -9941,37 +9808,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_869845581A9866B44DBED568C68F8D20" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_869845581A9866B44DBED568C68F8D20" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87AB43C19707C29AA8B884F63BA7577D" { "AssemblyRegister" = "3:1" @@ -10654,6 +10490,26 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9E636FF29BA24788AE1072D051294BE6" + { + "SourcePath" = "8:..\\..\\LICENSE.txt" + "TargetName" = "8:LICENSE.txt" + "Tag" = "8:" + "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F6DE8A084F82CF80095E944791B4989" { "AssemblyRegister" = "3:1" @@ -11387,37 +11243,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C41DB7598DA243F404B67F0C6A6AD857" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C41DB7598DA243F404B67F0C6A6AD857" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C5D661607128ACA864FD26CD4DBFDE0B" { "AssemblyRegister" = "3:1" @@ -12348,6 +12173,26 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E836E4A52E0740F5A2C614D8AB62A468" + { + "SourcePath" = "8:..\\..\\CHANGELOG.md" + "TargetName" = "8:CHANGELOG.md" + "Tag" = "8:" + "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Vital" = "11:TRUE" + "ReadOnly" = "11:FALSE" + "Hidden" = "11:FALSE" + "System" = "11:FALSE" + "Permanent" = "11:FALSE" + "SharedLegacy" = "11:FALSE" + "PackageAs" = "3:1" + "Register" = "3:1" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" + "IsolateTo" = "8:" + } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8BB0E2A241C1023B684B55FEB5B745F" { "AssemblyRegister" = "3:1" @@ -12751,37 +12596,6 @@ "IsDependency" = "11:TRUE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FE65F691A8229B618E6EA507F54C7373" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_FE65F691A8229B618E6EA507F54C7373" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF57FBA0AE9E9EB84295F95D9DBF7E0F" { "AssemblyRegister" = "3:1" @@ -13481,6 +13295,7 @@ "ShowKeyOutput" = "11:TRUE" "ExcludeFilters" { + "ExcludeFilter" = "8:system.net.http.dll" } } "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8B1E7E5B3E4E41DCA9C0CC6327710A7B" From dd26772e7ce3f24daa2f768ba37ef25383ad641f Mon Sep 17 00:00:00 2001 From: gbakeman Date: Thu, 13 Apr 2023 16:14:50 -0400 Subject: [PATCH 09/15] Transition to ClickOnce deployments - Remove the old Setup Project and instead use native ClickOnce deployments - Also removed self-signed certificate (hopefully signing on the build runner) - Regenerated the app manifest and defined os support as far back as possible. The Windows 7 line would cause deployment errors, but it should still be compatible. --- WinNUT_V2/Setup/Setup.vdproj | 13516 ---------------- .../WinNUT-Client/My Project/app.manifest | 62 +- WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 33 +- .../WinNUT-client_TemporaryKey.pfx | Bin 1700 -> 0 bytes WinNUT_V2/WinNUT_V2.sln | 19 +- 5 files changed, 58 insertions(+), 13572 deletions(-) delete mode 100644 WinNUT_V2/Setup/Setup.vdproj delete mode 100644 WinNUT_V2/WinNUT-Client/WinNUT-client_TemporaryKey.pfx diff --git a/WinNUT_V2/Setup/Setup.vdproj b/WinNUT_V2/Setup/Setup.vdproj deleted file mode 100644 index 4a09de9..0000000 --- a/WinNUT_V2/Setup/Setup.vdproj +++ /dev/null @@ -1,13516 +0,0 @@ -"DeployProject" -{ -"VSVersion" = "3:800" -"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" -"IsWebType" = "8:FALSE" -"ProjectName" = "8:WinNUT-Setup" -"LanguageId" = "3:0" -"CodePage" = "3:1252" -"UILanguageId" = "3:0" -"SccProjectName" = "8:" -"SccLocalPath" = "8:" -"SccAuxPath" = "8:" -"SccProvider" = "8:" - "Hierarchy" - { - "Entry" - { - "MsmKey" = "8:_021E5B42F7B86D7774FBF69F2B0124EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02B2992A85CD00961A237F52FE9E2F91" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_038FA5D4A2DBB7B2E9816738A6E57EF6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04BC2107644AB3257DDD15248220E634" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04BC2107644AB3257DDD15248220E634" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_07A910CF56C706ED972CAB4141D68E9D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0BC46E3D6AFE7239C03A64474ED97844" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C3026F365D4E75E8D1272D678428A26" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0C5BECFCD2017EB80BF540561A552DDF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F5E177FC62202099EA99639175075CA" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F5E177FC62202099EA99639175075CA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_13A50E0B7226F53EDD2CF77F7D306D9D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_14F159340AB9AB7EF530DD0842E4EDF3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_19385C4691E649139966B93BFCB76418" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "OwnerKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1F86359D8D86BE74A2133419119B2573" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22E69CE8313E66C07B7100358A8FEC7F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2429D85492E665726F19380F49530685" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27001287E89A65EA472E8C68410912F2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2805ADF0A2E9D2833E9CC2C5313061A4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2A6481F0F99C80219D875FADD7CEBCF5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_314CE5030A4040E69371869B1C94AA16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_33BCB1EF059B4E9B87FA7435A8F2499C" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34FD493D656D7B0AE73DBF6AD9660DB6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3515321164C3FAA61CB324C503B8F610" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_352398EC471D71BC6527453104B1B993" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_355796080221874A700D8249D6E0A304" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3757A7D73278870672EF0C60DE058855" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_37B92ECA5513984D04E9DE55C56BF2B2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C03037B50E7ACEBE2C2F3622F4F9B9E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3CA7406398B4AE459CD89EB1C0893AA1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3F430083DA6440B2B12DECC4BB791883" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FDB26770B8C2C12BAE91A21DA04EBC3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4133182915E2765AAB738ADE8D71AFBB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "OwnerKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "OwnerKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_447667D04A39505EC107E5C4D09BF1F2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_49DD7DF658A88C2695E49988C2FF027A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A13906D7E5B63087CA1545A9D3E5669" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4C7825F6B23B38BA98148B3DACF27EE7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_50EF843C0536CC6709EC45C245EDF16A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_52899F979D574BC6DDE7E281DA5F6A77" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_551F26449E12B56F24758197729250EA" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_551F26449E12B56F24758197729250EA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5C99D3FB8E4CBB81209F637E049611DF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CDEF598B7A95AF327FA51A3488FAD54" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64004A3095D61B7A465881685BB1A0CF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64264C966DC00E03E0ECE01BF2F4185B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_64922211D551E26EF45E326314EFB084" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6606C3EDBEAC3A52D1B15C2321E4AC76" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_68C3B51C8B67ED1C4780F708E3B67BFF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6B4D3CC9A6FC03C29FAA21C71F5A308F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6C44A422B0BAF53D8B9A5666EEAE2BCE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F0928B7B94D4DBE3C9C125C7CC9A293" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6F726EEEF1EA5D50C0A4DC3664B8AE95" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FE50EF2CBFB9C48934316AE938A5967" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FFD41E371A71A5088A0CBA658A6E8EB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_700965E07D0D77F475C8E2D6F65BFFB1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_703A2D51F5210F86E481D70F78E7FE3B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75190F5B5F81D2A98925160A1B38F494" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7568B1800A2F824EB11B2729C2D10F73" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_75BE45541E40F8250A565F0D0C3FCA82" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_761987FA7717402DB92207F177F3DB49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7643B2E01E55816C8BA2265FF9E9B786" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7A301EDC2294F9EDFD3BA4242A1B50A5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7C3296328EFD4A93812332EA1A315B95" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7CA4774AB32FE11FB226CEB20792D18C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E781465BFAC4DC08591FE1EDE1E2D1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F6E5FD19E88328BADA4E8B2CE4E1A32" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_80A388CC5A35D01CD59DA199DC9DC4A0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_81E24E647F2DEC1E36DB586CBAB20B30" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_822F020059CB9D3A0310018A69667AB9" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_853274ACFF4E33BDE8CF7F2B2E09616C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DCA92C1463DA1F61D485D7AB5394A8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_87AB43C19707C29AA8B884F63BA7577D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_88DA61EB5D8983B2EA98F6AFCFAA166A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8B59727D5A2C9496A23FB203A7687520" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CFD3FA4C78BB6F9F67F0BEF52B68398" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8D2ABD959430EE414F74933ADE2A5B28" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8EB9B4090E2F2FCF005A64E70ACEDCA5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_925EDEB9A88E3D1E580133FCE90EC0C2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94BDAD639975F3A5C22E5AED4D0980EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94F1C919A65D59EE8E6D3396997500F6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9723614A378A03CDC367BBD38EE28B72" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9B2C2EF0D5EEFE5E5F5DAF18AE5156C9" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D484417B470CBFC7E5A7BB2ACA19002" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9D7B24BD63CC8529A5CD3192C2AF1677" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9DFE9A8C70BF36F01921D1C4B1602C70" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F760642D084A9512E6598B68ABD5AEF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A17B6478098A4E61AD676107545BBEAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A50597E09C532703EEC1569347A253B0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A51F4E3D6145B59102FD4D5F152AEB31" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AF747DDF829AF39C7E667AB05FC59057" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3D76555C01C1F4E4877E120FDE9FAB9" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B4F855D530036659192C807EBEE4B3BF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B517F773042D077CB92011685C008C54" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6E8AA80435831938791DA6EB44A5B6D" - "OwnerKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B7694ACDB302D6C04EF0F18037346D82" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8623759245285260351785642DF324A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B8A0B1B10679C817593FDB331410C410" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B946B014E9F545BE82909719D926AC53" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA2F676298C6340C151391971185621C" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA2F676298C6340C151391971185621C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BCC51ED2BAD9471DD1CD4F6749448117" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD17DE2F47F2AEBA9CBEABC4823D20F3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD2F20497838AFD800315091191D649B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C154DAD908E6F97F3E62E31A0479E084" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C41DB7598DA243F404B67F0C6A6AD857" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8599B981C32C70C49E3C486791A7A5B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "OwnerKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "OwnerKey" = "8:_FAFC06915891434EFF5BF410712D02C5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "OwnerKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0520ED356733B2390CC4FB9F5BE0685" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "OwnerKey" = "8:_021E5B42F7B86D7774FBF69F2B0124EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D264EDC791196BFA06E023976EDE35E4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3F7182ED38A22F45E94C787237811F3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D4E2AE1B339120B1AF2CB07335BAA170" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D57AD20995B0C84A393808D3CAD5A5B6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D6E439F8F358953CF705B4AFF62D3C03" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D948A46CBB49A96DD55498B3B970DFFA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D961320847C38E82DCF135301D586EE1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DAEB5E080FDBEC7D7955D807A4F880A4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DCD86C7FF057224DF5982CD6664E5A37" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DDB3D87F38588ED99DD306F2F7ABDF8C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE8AD6B3F41379F0AB87A70EFA715076" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BD53E405BF635C454697266E55B097" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E7F08E9ED28295BEE3DDF803B5DE61DF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EA93444EF89FCA33C31D38543B778FE7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F32EBDADC8F2A6E6134400ABFD6A65AD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F9EC19845F9A9FCDB6BE06B727D920A6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FAFC06915891434EFF5BF410712D02C5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "OwnerKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "OwnerKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FF57FBA0AE9E9EB84295F95D9DBF7E0F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_314CE5030A4040E69371869B1C94AA16" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5C99D3FB8E4CBB81209F637E049611DF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7643B2E01E55816C8BA2265FF9E9B786" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_85DCA92C1463DA1F61D485D7AB5394A8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_869845581A9866B44DBED568C68F8D20" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2A6481F0F99C80219D875FADD7CEBCF5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D6E439F8F358953CF705B4AFF62D3C03" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_07A910CF56C706ED972CAB4141D68E9D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DCD86C7FF057224DF5982CD6664E5A37" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9D7B24BD63CC8529A5CD3192C2AF1677" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B8623759245285260351785642DF324A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3FDB26770B8C2C12BAE91A21DA04EBC3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8D2ABD959430EE414F74933ADE2A5B28" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D948A46CBB49A96DD55498B3B970DFFA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_64922211D551E26EF45E326314EFB084" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1F86359D8D86BE74A2133419119B2573" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_700965E07D0D77F475C8E2D6F65BFFB1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_88DA61EB5D8983B2EA98F6AFCFAA166A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9723614A378A03CDC367BBD38EE28B72" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7A301EDC2294F9EDFD3BA4242A1B50A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B946B014E9F545BE82909719D926AC53" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_34FD493D656D7B0AE73DBF6AD9660DB6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_14F159340AB9AB7EF530DD0842E4EDF3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6F0928B7B94D4DBE3C9C125C7CC9A293" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2429D85492E665726F19380F49530685" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9B2C2EF0D5EEFE5E5F5DAF18AE5156C9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4C7825F6B23B38BA98148B3DACF27EE7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A51F4E3D6145B59102FD4D5F152AEB31" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7F6E5FD19E88328BADA4E8B2CE4E1A32" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_AF747DDF829AF39C7E667AB05FC59057" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F32EBDADC8F2A6E6134400ABFD6A65AD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FE50EF2CBFB9C48934316AE938A5967" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E7F08E9ED28295BEE3DDF803B5DE61DF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_50EF843C0536CC6709EC45C245EDF16A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8CFD3FA4C78BB6F9F67F0BEF52B68398" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0C5BECFCD2017EB80BF540561A552DDF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7568B1800A2F824EB11B2729C2D10F73" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_52899F979D574BC6DDE7E281DA5F6A77" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_75190F5B5F81D2A98925160A1B38F494" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_038FA5D4A2DBB7B2E9816738A6E57EF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D88A04F096FD56873EEC8F97D8578C9E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3757A7D73278870672EF0C60DE058855" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8B59727D5A2C9496A23FB203A7687520" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B7694ACDB302D6C04EF0F18037346D82" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BCC51ED2BAD9471DD1CD4F6749448117" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C41DB7598DA243F404B67F0C6A6AD857" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C8599B981C32C70C49E3C486791A7A5B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_94BDAD639975F3A5C22E5AED4D0980EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_925EDEB9A88E3D1E580133FCE90EC0C2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_22E69CE8313E66C07B7100358A8FEC7F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9F760642D084A9512E6598B68ABD5AEF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3C03037B50E7ACEBE2C2F3622F4F9B9E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8EB9B4090E2F2FCF005A64E70ACEDCA5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_352398EC471D71BC6527453104B1B993" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D961320847C38E82DCF135301D586EE1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DDB3D87F38588ED99DD306F2F7ABDF8C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_64004A3095D61B7A465881685BB1A0CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BD2F20497838AFD800315091191D649B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3CA7406398B4AE459CD89EB1C0893AA1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B4F855D530036659192C807EBEE4B3BF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B8A0B1B10679C817593FDB331410C410" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3515321164C3FAA61CB324C503B8F610" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BD17DE2F47F2AEBA9CBEABC4823D20F3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0BC46E3D6AFE7239C03A64474ED97844" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FF57FBA0AE9E9EB84295F95D9DBF7E0F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D0520ED356733B2390CC4FB9F5BE0685" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_64264C966DC00E03E0ECE01BF2F4185B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_021E5B42F7B86D7774FBF69F2B0124EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C154DAD908E6F97F3E62E31A0479E084" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F9EC19845F9A9FCDB6BE06B727D920A6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FFD41E371A71A5088A0CBA658A6E8EB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9DFE9A8C70BF36F01921D1C4B1602C70" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6606C3EDBEAC3A52D1B15C2321E4AC76" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_94F1C919A65D59EE8E6D3396997500F6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6F726EEEF1EA5D50C0A4DC3664B8AE95" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7CA4774AB32FE11FB226CEB20792D18C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_80A388CC5A35D01CD59DA199DC9DC4A0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_87AB43C19707C29AA8B884F63BA7577D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DAEB5E080FDBEC7D7955D807A4F880A4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4133182915E2765AAB738ADE8D71AFBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D264EDC791196BFA06E023976EDE35E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FAFC06915891434EFF5BF410712D02C5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D3F7182ED38A22F45E94C787237811F3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2805ADF0A2E9D2833E9CC2C5313061A4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6B4D3CC9A6FC03C29FAA21C71F5A308F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_37B92ECA5513984D04E9DE55C56BF2B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_853274ACFF4E33BDE8CF7F2B2E09616C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_822F020059CB9D3A0310018A69667AB9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7C3296328EFD4A93812332EA1A315B95" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4A13906D7E5B63087CA1545A9D3E5669" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0C3026F365D4E75E8D1272D678428A26" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6C44A422B0BAF53D8B9A5666EEAE2BCE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_703A2D51F5210F86E481D70F78E7FE3B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5CDEF598B7A95AF327FA51A3488FAD54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DE8AD6B3F41379F0AB87A70EFA715076" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_02B2992A85CD00961A237F52FE9E2F91" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D4E2AE1B339120B1AF2CB07335BAA170" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_13A50E0B7226F53EDD2CF77F7D306D9D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_75BE45541E40F8250A565F0D0C3FCA82" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_81E24E647F2DEC1E36DB586CBAB20B30" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_447667D04A39505EC107E5C4D09BF1F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_68C3B51C8B67ED1C4780F708E3B67BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9D484417B470CBFC7E5A7BB2ACA19002" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EA93444EF89FCA33C31D38543B778FE7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_49DD7DF658A88C2695E49988C2FF027A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B3D76555C01C1F4E4877E120FDE9FAB9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D57AD20995B0C84A393808D3CAD5A5B6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1A79DBFF35EB3B036FCCDD7C92F35B14" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6E8AA80435831938791DA6EB44A5B6D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A50597E09C532703EEC1569347A253B0" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\WinNUT-Setup.msi" - "PackageFilesAs" = "3:1" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.5.2" - { - "Name" = "8:Microsoft .NET Framework 4.5.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.5.2" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" - { - "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.7.2" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\WinNUT-Setup.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:3" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.8" - { - "Name" = "8:Microsoft .NET Framework 4.8 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.8" - } - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_D7F8EF5857D24C70A0403E6DE12801A1" - { - "Name" = "8:.NET Framework" - "Message" = "8:[VSDNETMSG]" - "FrameworkVersion" = "8:.NETFramework,Version=v4.8" - "AllowLaterVersions" = "11:FALSE" - "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262" - } - } - } - "File" - { - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_021E5B42F7B86D7774FBF69F2B0124EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.Rtc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_021E5B42F7B86D7774FBF69F2B0124EF" - { - "Name" = "8:System.Net.Http.Rtc.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.Rtc.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02B2992A85CD00961A237F52FE9E2F91" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_02B2992A85CD00961A237F52FE9E2F91" - { - "Name" = "8:System.Data.Common.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Data.Common.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02EAC78DFEFD70AB7D245A9594F422CF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Sms.LegacySmsApiContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_02EAC78DFEFD70AB7D245A9594F422CF" - { - "Name" = "8:Windows.Devices.Sms.LegacySmsApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Sms.LegacySmsApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_038FA5D4A2DBB7B2E9816738A6E57EF6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_038FA5D4A2DBB7B2E9816738A6E57EF6" - { - "Name" = "8:System.Runtime.Numerics.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Numerics.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04BC2107644AB3257DDD15248220E634" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Phone.StartScreen.DualSimTileContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_04BC2107644AB3257DDD15248220E634" - { - "Name" = "8:Windows.Phone.StartScreen.DualSimTileContract.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Phone.StartScreen.DualSimTileContract.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_07A910CF56C706ED972CAB4141D68E9D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_07A910CF56C706ED972CAB4141D68E9D" - { - "Name" = "8:System.Xml.XPath.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XPath.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_087D631D0A323F43806A7C9975DEC875" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract, Version=5.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_087D631D0A323F43806A7C9975DEC875" - { - "Name" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BC46E3D6AFE7239C03A64474ED97844" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_0BC46E3D6AFE7239C03A64474ED97844" - { - "Name" = "8:System.Net.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BF705C375232EEC838C4D253AEF9574" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_0BF705C375232EEC838C4D253AEF9574" - { - "Name" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C3026F365D4E75E8D1272D678428A26" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_0C3026F365D4E75E8D1272D678428A26" - { - "Name" = "8:System.Diagnostics.StackTrace.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.StackTrace.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0C5BECFCD2017EB80BF540561A552DDF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_0C5BECFCD2017EB80BF540561A552DDF" - { - "Name" = "8:System.Runtime.Serialization.Xml.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0F5E177FC62202099EA99639175075CA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Phone.PhoneContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_0F5E177FC62202099EA99639175075CA" - { - "Name" = "8:Windows.Phone.PhoneContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Phone.PhoneContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_10AC006F21D6E7FCF876FA9023859F08" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_10AC006F21D6E7FCF876FA9023859F08" - { - "Name" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_13A50E0B7226F53EDD2CF77F7D306D9D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_13A50E0B7226F53EDD2CF77F7D306D9D" - { - "Name" = "8:System.ComponentModel.TypeConverter.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.TypeConverter.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_141999BCA64D592F93F389316B0EECCD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_141999BCA64D592F93F389316B0EECCD" - { - "Name" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_146070CBADE53AC54B34B4B587B4C0D5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.Preview.GamesEnumerationContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_146070CBADE53AC54B34B4B587B4C0D5" - { - "Name" = "8:Windows.Gaming.Preview.GamesEnumerationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.Preview.GamesEnumerationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_14F159340AB9AB7EF530DD0842E4EDF3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_14F159340AB9AB7EF530DD0842E4EDF3" - { - "Name" = "8:System.ServiceModel.Security.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Security.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_177E6DBC66C7EC973109925FB76F0AD8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_177E6DBC66C7EC973109925FB76F0AD8" - { - "Name" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_19385C4691E649139966B93BFCB76418" - { - "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.exe.manifest" - "TargetName" = "8:WinNUT-Client.exe.manifest" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1A79DBFF35EB3B036FCCDD7C92F35B14" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" - "ScatterAssemblies" - { - "_1A79DBFF35EB3B036FCCDD7C92F35B14" - { - "Name" = "8:netstandard.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:netstandard.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CECC0CC6098929030C93D38910A37E4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.AppRecording.AppRecordingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1CECC0CC6098929030C93D38910A37E4" - { - "Name" = "8:Windows.Media.AppRecording.AppRecordingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.AppRecording.AppRecordingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D0BF5C88B2AD501EBD3811A9DF54970" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.Input.GamingInputPreviewContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1D0BF5C88B2AD501EBD3811A9DF54970" - { - "Name" = "8:Windows.Gaming.Input.GamingInputPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.Input.GamingInputPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1DC60DD2329B95D486A3E55969C97D7D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1DC60DD2329B95D486A3E55969C97D7D" - { - "Name" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E67156A953494C6DD379BF2448618DF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" - "ScatterAssemblies" - { - "_1E67156A953494C6DD379BF2448618DF" - { - "Name" = "8:System.ValueTuple.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ValueTuple.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Maps.LocalSearchContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1EC0F6144DC6F3F5E736D3ADF7F564FA" - { - "Name" = "8:Windows.Services.Maps.LocalSearchContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Maps.LocalSearchContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1F86359D8D86BE74A2133419119B2573" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_1F86359D8D86BE74A2133419119B2573" - { - "Name" = "8:System.Threading.Tasks.Parallel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Tasks.Parallel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2021E1982D884B6393B46EBA1914BC5E" - { - "SourcePath" = "8:..\\images\\Jpg\\Setup_Banner.jpg" - "TargetName" = "8:Setup_Banner.jpg" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:TRUE" - "Hidden" = "11:TRUE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_20A98ED50A42C1D4CCDC5730AEDCF631" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_20A98ED50A42C1D4CCDC5730AEDCF631" - { - "Name" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_221A1C67DBF959DC0B271A92F7EC07AE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_221A1C67DBF959DC0B271A92F7EC07AE" - { - "Name" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_22E69CE8313E66C07B7100358A8FEC7F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_22E69CE8313E66C07B7100358A8FEC7F" - { - "Name" = "8:System.Resources.Reader.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.Reader.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2429D85492E665726F19380F49530685" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2429D85492E665726F19380F49530685" - { - "Name" = "8:System.ServiceModel.NetTcp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.NetTcp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27001287E89A65EA472E8C68410912F2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_27001287E89A65EA472E8C68410912F2" - { - "Name" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27115AEA57D5E273CA2FE639228C651A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Devices.CallControlContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_27115AEA57D5E273CA2FE639228C651A" - { - "Name" = "8:Windows.Media.Devices.CallControlContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Devices.CallControlContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2805ADF0A2E9D2833E9CC2C5313061A4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2805ADF0A2E9D2833E9CC2C5313061A4" - { - "Name" = "8:System.Globalization.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_296E3A55A6CC64F4893533E40ECB5265" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_296E3A55A6CC64F4893533E40ECB5265" - { - "Name" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2A6481F0F99C80219D875FADD7CEBCF5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2A6481F0F99C80219D875FADD7CEBCF5" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33BCB1EF059B4E9B87FA7435A8F2499C" - { - "SourcePath" = "8:..\\images\\Ico\\WinNut.ico" - "TargetName" = "8:WinNut.ico" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:TRUE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_341668A85CF9608E002797E97C05C4C0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_341668A85CF9608E002797E97C05C4C0" - { - "Name" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_34F116BE2B76CBC2D448A7B9075C55C1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_34F116BE2B76CBC2D448A7B9075C55C1" - { - "Name" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_34FD493D656D7B0AE73DBF6AD9660DB6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_34FD493D656D7B0AE73DBF6AD9660DB6" - { - "Name" = "8:System.Text.Encoding.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.Encoding.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3515321164C3FAA61CB324C503B8F610" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3515321164C3FAA61CB324C503B8F610" - { - "Name" = "8:System.Net.Security.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Security.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_352398EC471D71BC6527453104B1B993" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_352398EC471D71BC6527453104B1B993" - { - "Name" = "8:System.Reflection.Emit.ILGeneration.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_355796080221874A700D8249D6E0A304" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_355796080221874A700D8249D6E0A304" - { - "Name" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36F278791B84D5F4FDB6A87F85D69260" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Search.SearchContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_36F278791B84D5F4FDB6A87F85D69260" - { - "Name" = "8:Windows.ApplicationModel.Search.SearchContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Search.SearchContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3757A7D73278870672EF0C60DE058855" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3757A7D73278870672EF0C60DE058855" - { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_37B92ECA5513984D04E9DE55C56BF2B2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_37B92ECA5513984D04E9DE55C56BF2B2" - { - "Name" = "8:System.Dynamic.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Dynamic.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_380EAFB68E1A4974624A2995C6303403" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.TargetedContent.TargetedContentContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_380EAFB68E1A4974624A2995C6303403" - { - "Name" = "8:Windows.Services.TargetedContent.TargetedContentContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.TargetedContent.TargetedContentContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B9DC086FE1CFE5DCD9734AF933B378A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_3B9DC086FE1CFE5DCD9734AF933B378A" - { - "Name" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.AI.MachineLearning.MachineLearningContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_3C02EAEA0AD8AD7328CC2692CD4C19D1" - { - "Name" = "8:Windows.AI.MachineLearning.MachineLearningContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.AI.MachineLearning.MachineLearningContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C03037B50E7ACEBE2C2F3622F4F9B9E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3C03037B50E7ACEBE2C2F3622F4F9B9E" - { - "Name" = "8:System.Reflection.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3CA7406398B4AE459CD89EB1C0893AA1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3CA7406398B4AE459CD89EB1C0893AA1" - { - "Name" = "8:System.Net.WebSockets.Client.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebSockets.Client.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F430083DA6440B2B12DECC4BB791883" - { - "SourcePath" = "8:..\\..\\changelog.md" - "TargetName" = "8:changelog.md" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:FALSE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FDB26770B8C2C12BAE91A21DA04EBC3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3FDB26770B8C2C12BAE91A21DA04EBC3" - { - "Name" = "8:System.Xml.ReaderWriter.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.ReaderWriter.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40054CE0A819D4AEF128FBA7A9866CF4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.DevicesLowLevelContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_40054CE0A819D4AEF128FBA7A9866CF4" - { - "Name" = "8:Windows.Devices.DevicesLowLevelContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.DevicesLowLevelContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4133182915E2765AAB738ADE8D71AFBB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_4133182915E2765AAB738ADE8D71AFBB" - { - "Name" = "8:System.IO.FileSystem.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_416CAF7E02A6E834D9DCAB6E2433BA99" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.Connectivity.WwanContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_416CAF7E02A6E834D9DCAB6E2433BA99" - { - "Name" = "8:Windows.Networking.Connectivity.WwanContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.Connectivity.WwanContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4270279B39D1A1F2E4A38BE6345446A7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_4270279B39D1A1F2E4A38BE6345446A7" - { - "Name" = "8:System.IO.Compression.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_446C9E4FE0A25CE2DFDD92CC03271314" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.UI.GameChatOverlayContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_446C9E4FE0A25CE2DFDD92CC03271314" - { - "Name" = "8:Windows.Gaming.UI.GameChatOverlayContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.UI.GameChatOverlayContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_447667D04A39505EC107E5C4D09BF1F2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_447667D04A39505EC107E5C4D09BF1F2" - { - "Name" = "8:System.ComponentModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_45FF9116D5ECE7C5CE1CB9FA016578EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_45FF9116D5ECE7C5CE1CB9FA016578EF" - { - "Name" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49DD7DF658A88C2695E49988C2FF027A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_49DD7DF658A88C2695E49988C2FF027A" - { - "Name" = "8:System.Collections.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A13906D7E5B63087CA1545A9D3E5669" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_4A13906D7E5B63087CA1545A9D3E5669" - { - "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.TextWriterTraceListener.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A481B8AE348191C9E5343DBDAADD142" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4A481B8AE348191C9E5343DBDAADD142" - { - "Name" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4C7825F6B23B38BA98148B3DACF27EE7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Duplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_4C7825F6B23B38BA98148B3DACF27EE7" - { - "Name" = "8:System.ServiceModel.Duplex.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Duplex.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4F1279BD2527D049EE15B30D58FDF82B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4F1279BD2527D049EE15B30D58FDF82B" - { - "Name" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4FBF49FC0C81EBB2568861BC1E029FD1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4FBF49FC0C81EBB2568861BC1E029FD1" - { - "Name" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_50EF843C0536CC6709EC45C245EDF16A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_50EF843C0536CC6709EC45C245EDF16A" - { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51B42859AA3880778ED2ECF7432DCC41" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_51B42859AA3880778ED2ECF7432DCC41" - { - "Name" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51F85920A3B504154EB08056B3AD9979" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileSharedModeContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_51F85920A3B504154EB08056B3AD9979" - { - "Name" = "8:Windows.System.Profile.ProfileSharedModeContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileSharedModeContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_52899F979D574BC6DDE7E281DA5F6A77" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_52899F979D574BC6DDE7E281DA5F6A77" - { - "Name" = "8:System.Runtime.Serialization.Json.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Json.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_53E5B29B62A3C421664E5570FA590C81" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.MediaControlContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_53E5B29B62A3C421664E5570FA590C81" - { - "Name" = "8:Windows.Media.MediaControlContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.MediaControlContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Storage.Provider.CloudFilesContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_545FCC1D9F70CE4A1E2F3C929A7E62FC" - { - "Name" = "8:Windows.Storage.Provider.CloudFilesContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Storage.Provider.CloudFilesContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_551F26449E12B56F24758197729250EA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Portable.PortableDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_551F26449E12B56F24758197729250EA" - { - "Name" = "8:Windows.Devices.Portable.PortableDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Portable.PortableDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5569339E8780E037B2AAC9ACD6564BFF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5569339E8780E037B2AAC9ACD6564BFF" - { - "Name" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5744BE703D4FC2DA54FF8308CDF1F9AB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5744BE703D4FC2DA54FF8308CDF1F9AB" - { - "Name" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_581DA186FDCE0FFFC2D735C83A918436" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_581DA186FDCE0FFFC2D735C83A918436" - { - "Name" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C99D3FB8E4CBB81209F637E049611DF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WinNUT-Client_Common, Version=2.2.8436.29817, Culture=neutral, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_5C99D3FB8E4CBB81209F637E049611DF" - { - "Name" = "8:WinNUT-Client_Common.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:WinNUT-Client_Common.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5CDEF598B7A95AF327FA51A3488FAD54" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5CDEF598B7A95AF327FA51A3488FAD54" - { - "Name" = "8:System.Diagnostics.Debug.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Debug.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5FA6D02721E2E94A4093FD956487D6E2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Core.CoreWindowDialogsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5FA6D02721E2E94A4093FD956487D6E2" - { - "Name" = "8:Windows.UI.Core.CoreWindowDialogsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Core.CoreWindowDialogsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_617369C02C0140C70FB995D0ABBF21E3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Shell.SecurityAppManagerContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_617369C02C0140C70FB995D0ABBF21E3" - { - "Name" = "8:Windows.UI.Shell.SecurityAppManagerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Shell.SecurityAppManagerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6270F7617E1F5E3A7F9BFD82EAEB7925" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6270F7617E1F5E3A7F9BFD82EAEB7925" - { - "Name" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_63C8A279ECA1961108679E2A93D5C62B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime.UI.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_63C8A279ECA1961108679E2A93D5C62B" - { - "Name" = "8:System.Runtime.WindowsRuntime.UI.Xaml.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.UI.Xaml.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64004A3095D61B7A465881685BB1A0CF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_64004A3095D61B7A465881685BB1A0CF" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64264C966DC00E03E0ECE01BF2F4185B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_64264C966DC00E03E0ECE01BF2F4185B" - { - "Name" = "8:System.Net.NameResolution.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.NameResolution.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_64922211D551E26EF45E326314EFB084" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_64922211D551E26EF45E326314EFB084" - { - "Name" = "8:System.Threading.Thread.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Thread.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6606C3EDBEAC3A52D1B15C2321E4AC76" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6606C3EDBEAC3A52D1B15C2321E4AC76" - { - "Name" = "8:System.IO.UnmanagedMemoryStream.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.UnmanagedMemoryStream.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_68C3B51C8B67ED1C4780F708E3B67BFF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_68C3B51C8B67ED1C4780F708E3B67BFF" - { - "Name" = "8:System.ComponentModel.Annotations.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.Annotations.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Foundation.UniversalApiContract, Version=10.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6A7C09B4B4815C7BDB39B5BD18A00AC4" - { - "Name" = "8:Windows.Foundation.UniversalApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Foundation.UniversalApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6B4D3CC9A6FC03C29FAA21C71F5A308F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6B4D3CC9A6FC03C29FAA21C71F5A308F" - { - "Name" = "8:System.Globalization.Calendars.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.Calendars.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6C44A422B0BAF53D8B9A5666EEAE2BCE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6C44A422B0BAF53D8B9A5666EEAE2BCE" - { - "Name" = "8:System.Diagnostics.Process.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Process.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Store.StoreContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6D2CD6EE7ECD814A9D093BF6CB700CF6" - { - "Name" = "8:Windows.Services.Store.StoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Store.StoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F0928B7B94D4DBE3C9C125C7CC9A293" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6F0928B7B94D4DBE3C9C125C7CC9A293" - { - "Name" = "8:System.ServiceModel.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6F726EEEF1EA5D50C0A4DC3664B8AE95" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6F726EEEF1EA5D50C0A4DC3664B8AE95" - { - "Name" = "8:System.IO.MemoryMappedFiles.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.MemoryMappedFiles.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Protection.ProtectionRenewalContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - { - "Name" = "8:Windows.Media.Protection.ProtectionRenewalContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Protection.ProtectionRenewalContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FE50EF2CBFB9C48934316AE938A5967" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6FE50EF2CBFB9C48934316AE938A5967" - { - "Name" = "8:System.Security.Cryptography.Encoding.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FFD41E371A71A5088A0CBA658A6E8EB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6FFD41E371A71A5088A0CBA658A6E8EB" - { - "Name" = "8:System.Linq.Expressions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Expressions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_700965E07D0D77F475C8E2D6F65BFFB1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_700965E07D0D77F475C8E2D6F65BFFB1" - { - "Name" = "8:System.Threading.Tasks.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Tasks.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_703A2D51F5210F86E481D70F78E7FE3B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_703A2D51F5210F86E481D70F78E7FE3B" - { - "Name" = "8:System.Diagnostics.FileVersionInfo.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.FileVersionInfo.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_72D168A4842EAC9306A038E7D277B357" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_72D168A4842EAC9306A038E7D277B357" - { - "Name" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_73D903BF5D6F2AFD13CCB9F032748789" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.StartupTaskContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_73D903BF5D6F2AFD13CCB9F032748789" - { - "Name" = "8:Windows.ApplicationModel.StartupTaskContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.StartupTaskContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_75190F5B5F81D2A98925160A1B38F494" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_75190F5B5F81D2A98925160A1B38F494" - { - "Name" = "8:System.Runtime.Serialization.Formatters.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Formatters.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7568B1800A2F824EB11B2729C2D10F73" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7568B1800A2F824EB11B2729C2D10F73" - { - "Name" = "8:System.Runtime.Serialization.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_75BE45541E40F8250A565F0D0C3FCA82" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_75BE45541E40F8250A565F0D0C3FCA82" - { - "Name" = "8:System.ComponentModel.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_761987FA7717402DB92207F177F3DB49" - { - "SourcePath" = "8:..\\..\\COPYING" - "TargetName" = "8:COPYING" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_763D47C7EB44810D6199E3315BC543EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Toolkit.Uwp.Notifications, Version=7.1.0.0, Culture=neutral, PublicKeyToken=4aff67a105548ee2, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_763D47C7EB44810D6199E3315BC543EF" - { - "Name" = "8:Microsoft.Toolkit.Uwp.Notifications.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Microsoft.Toolkit.Uwp.Notifications.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7643B2E01E55816C8BA2265FF9E9B786" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:AGauge, Version=2.1.8436.29817, Culture=neutral, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7643B2E01E55816C8BA2265FF9E9B786" - { - "Name" = "8:AGauge.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:AGauge.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76C124487B58F9503C60B5679A43F43E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.CameraCaptureUIContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_76C124487B58F9503C60B5679A43F43E" - { - "Name" = "8:Windows.Media.Capture.CameraCaptureUIContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.CameraCaptureUIContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_799DE40D37798F1E4476A7CBDF282D1F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_799DE40D37798F1E4476A7CBDF282D1F" - { - "Name" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79EAA78F0054FD01219DF518DC18DBBB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Xaml.Hosting.HostingContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_79EAA78F0054FD01219DF518DC18DBBB" - { - "Name" = "8:Windows.UI.Xaml.Hosting.HostingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Xaml.Hosting.HostingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A301EDC2294F9EDFD3BA4242A1B50A5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7A301EDC2294F9EDFD3BA4242A1B50A5" - { - "Name" = "8:System.Text.RegularExpressions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.RegularExpressions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7C3296328EFD4A93812332EA1A315B95" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7C3296328EFD4A93812332EA1A315B95" - { - "Name" = "8:System.Diagnostics.Tools.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Tools.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7CA4774AB32FE11FB226CEB20792D18C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7CA4774AB32FE11FB226CEB20792D18C" - { - "Name" = "8:System.IO.IsolatedStorage.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.IsolatedStorage.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E781465BFAC4DC08591FE1EDE1E2D1F" - { - "SourcePath" = "8:..\\..\\README.md" - "TargetName" = "8:README.md" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F619FE6A380D79E80E85D6E6822F82A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7F619FE6A380D79E80E85D6E6822F82A" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F6E5FD19E88328BADA4E8B2CE4E1A32" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7F6E5FD19E88328BADA4E8B2CE4E1A32" - { - "Name" = "8:System.Security.Principal.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Principal.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_80A388CC5A35D01CD59DA199DC9DC4A0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_80A388CC5A35D01CD59DA199DC9DC4A0" - { - "Name" = "8:System.IO.FileSystem.Watcher.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.Watcher.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_81E24E647F2DEC1E36DB586CBAB20B30" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_81E24E647F2DEC1E36DB586CBAB20B30" - { - "Name" = "8:System.ComponentModel.EventBasedAsync.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_822F020059CB9D3A0310018A69667AB9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_822F020059CB9D3A0310018A69667AB9" - { - "Name" = "8:System.Diagnostics.TraceSource.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.TraceSource.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_853274ACFF4E33BDE8CF7F2B2E09616C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_853274ACFF4E33BDE8CF7F2B2E09616C" - { - "Name" = "8:System.Drawing.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Drawing.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85DCA92C1463DA1F61D485D7AB5394A8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_85DCA92C1463DA1F61D485D7AB5394A8" - { - "Name" = "8:Newtonsoft.Json.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Newtonsoft.Json.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_869845581A9866B44DBED568C68F8D20" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_869845581A9866B44DBED568C68F8D20" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_87AB43C19707C29AA8B884F63BA7577D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_87AB43C19707C29AA8B884F63BA7577D" - { - "Name" = "8:System.IO.FileSystem.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_88DA61EB5D8983B2EA98F6AFCFAA166A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_88DA61EB5D8983B2EA98F6AFCFAA166A" - { - "Name" = "8:System.Threading.Overlapped.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Overlapped.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8B59727D5A2C9496A23FB203A7687520" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8B59727D5A2C9496A23FB203A7687520" - { - "Name" = "8:System.Runtime.InteropServices.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CFD3FA4C78BB6F9F67F0BEF52B68398" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8CFD3FA4C78BB6F9F67F0BEF52B68398" - { - "Name" = "8:System.Security.Claims.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Claims.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8D2ABD959430EE414F74933ADE2A5B28" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8D2ABD959430EE414F74933ADE2A5B28" - { - "Name" = "8:System.Threading.Timer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Timer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8EB9B4090E2F2FCF005A64E70ACEDCA5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8EB9B4090E2F2FCF005A64E70ACEDCA5" - { - "Name" = "8:System.Reflection.Emit.Lightweight.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_925EDEB9A88E3D1E580133FCE90EC0C2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_925EDEB9A88E3D1E580133FCE90EC0C2" - { - "Name" = "8:System.Resources.ResourceManager.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.ResourceManager.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_929B73992E930343CA5B90A2038D04AB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_929B73992E930343CA5B90A2038D04AB" - { - "Name" = "8:System.Numerics.Vectors.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Numerics.Vectors.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_938F6F28EAD3BD21F818EAD185A8E9B2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.Isolation.IsolatedWindowsEnvironmentContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_938F6F28EAD3BD21F818EAD185A8E9B2" - { - "Name" = "8:Windows.Security.Isolation.Isolatedwindowsenvironmentcontract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.Isolation.Isolatedwindowsenvironmentcontract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94BDAD639975F3A5C22E5AED4D0980EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_94BDAD639975F3A5C22E5AED4D0980EF" - { - "Name" = "8:System.Resources.Writer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.Writer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94F1C919A65D59EE8E6D3396997500F6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_94F1C919A65D59EE8E6D3396997500F6" - { - "Name" = "8:System.IO.Pipes.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Pipes.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9669D935FA55FE8CBCD04CF9AB20AAAD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.UserProfile.UserProfileContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9669D935FA55FE8CBCD04CF9AB20AAAD" - { - "Name" = "8:Windows.System.UserProfile.UserProfileContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.UserProfile.UserProfileContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9723614A378A03CDC367BBD38EE28B72" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9723614A378A03CDC367BBD38EE28B72" - { - "Name" = "8:System.Threading.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98206E1950C01D377C5C613E88926BC8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract, Version=5.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_98206E1950C01D377C5C613E88926BC8" - { - "Name" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99E69CEF87193EDC44645D396FC75FED" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Printers.PrintersContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_99E69CEF87193EDC44645D396FC75FED" - { - "Name" = "8:Windows.Devices.Printers.PrintersContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Printers.PrintersContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99F67A23E661386DE5D66283A9E02715" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_99F67A23E661386DE5D66283A9E02715" - { - "Name" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9B2C2EF0D5EEFE5E5F5DAF18AE5156C9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9B2C2EF0D5EEFE5E5F5DAF18AE5156C9" - { - "Name" = "8:System.ServiceModel.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9BCB17DE53042833A48B9D04BAB93886" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime, Version=4.0.14.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" - "ScatterAssemblies" - { - "_9BCB17DE53042833A48B9D04BAB93886" - { - "Name" = "8:System.Runtime.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C64B81D4893F0C58728F8DC06800007" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileRetailInfoContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9C64B81D4893F0C58728F8DC06800007" - { - "Name" = "8:Windows.System.Profile.ProfileRetailInfoContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileRetailInfoContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9D484417B470CBFC7E5A7BB2ACA19002" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9D484417B470CBFC7E5A7BB2ACA19002" - { - "Name" = "8:System.Collections.Specialized.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.Specialized.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9D7B24BD63CC8529A5CD3192C2AF1677" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9D7B24BD63CC8529A5CD3192C2AF1677" - { - "Name" = "8:System.Xml.XmlDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XmlDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9DFE9A8C70BF36F01921D1C4B1602C70" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9DFE9A8C70BF36F01921D1C4B1602C70" - { - "Name" = "8:System.Linq.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F6DE8A084F82CF80095E944791B4989" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.GameBarContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9F6DE8A084F82CF80095E944791B4989" - { - "Name" = "8:Windows.Media.Capture.GameBarContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.GameBarContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F760642D084A9512E6598B68ABD5AEF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9F760642D084A9512E6598B68ABD5AEF" - { - "Name" = "8:System.Reflection.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A17B6478098A4E61AD676107545BBEAD" - { - "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.application" - "TargetName" = "8:WinNUT-Client.application" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A50597E09C532703EEC1569347A253B0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A50597E09C532703EEC1569347A253B0" - { - "Name" = "8:Microsoft.Win32.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Microsoft.Win32.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A51F4E3D6145B59102FD4D5F152AEB31" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A51F4E3D6145B59102FD4D5F152AEB31" - { - "Name" = "8:System.Security.SecureString.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.SecureString.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADB32928DF6804264182F0663736A9D0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.FullTrustAppContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ADB32928DF6804264182F0663736A9D0" - { - "Name" = "8:Windows.ApplicationModel.FullTrustAppContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.FullTrustAppContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADFE9608A1B22DCB5B226EF06A49AE83" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.UserProfile.UserProfileLockScreenContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ADFE9608A1B22DCB5B226EF06A49AE83" - { - "Name" = "8:Windows.System.UserProfile.UserProfileLockScreenContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.UserProfile.UserProfileLockScreenContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AF747DDF829AF39C7E667AB05FC59057" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_AF747DDF829AF39C7E667AB05FC59057" - { - "Name" = "8:System.Security.Cryptography.X509Certificates.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B3D76555C01C1F4E4877E120FDE9FAB9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B3D76555C01C1F4E4877E120FDE9FAB9" - { - "Name" = "8:System.Collections.Concurrent.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.Concurrent.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B4F855D530036659192C807EBEE4B3BF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B4F855D530036659192C807EBEE4B3BF" - { - "Name" = "8:System.Net.WebHeaderCollection.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebHeaderCollection.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B517F773042D077CB92011685C008C54" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Maps.GuidanceContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B517F773042D077CB92011685C008C54" - { - "Name" = "8:Windows.Services.Maps.GuidanceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Maps.GuidanceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - { - "Name" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6E8AA80435831938791DA6EB44A5B6D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_B6E8AA80435831938791DA6EB44A5B6D" - { - "Name" = "8:System.Diagnostics.Tracing.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Tracing.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B7694ACDB302D6C04EF0F18037346D82" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B7694ACDB302D6C04EF0F18037346D82" - { - "Name" = "8:System.Runtime.Handles.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Handles.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B8623759245285260351785642DF324A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B8623759245285260351785642DF324A" - { - "Name" = "8:System.Xml.XDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B8A0B1B10679C817593FDB331410C410" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B8A0B1B10679C817593FDB331410C410" - { - "Name" = "8:System.Net.Sockets.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Sockets.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B91E322AFFFF5BE0D1E6F1617FDEA80C" - { - "Name" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B946B014E9F545BE82909719D926AC53" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B946B014E9F545BE82909719D926AC53" - { - "Name" = "8:System.Text.Encoding.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.Encoding.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA2F676298C6340C151391971185621C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Scanners.ScannerDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_BA2F676298C6340C151391971185621C" - { - "Name" = "8:Windows.Devices.Scanners.ScannerDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Scanners.ScannerDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BCC51ED2BAD9471DD1CD4F6749448117" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_BCC51ED2BAD9471DD1CD4F6749448117" - { - "Name" = "8:System.Runtime.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD17DE2F47F2AEBA9CBEABC4823D20F3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_BD17DE2F47F2AEBA9CBEABC4823D20F3" - { - "Name" = "8:System.Net.Requests.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Requests.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD2F20497838AFD800315091191D649B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_BD2F20497838AFD800315091191D649B" - { - "Name" = "8:System.Net.WebSockets.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebSockets.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDE23F8885AA229AB7F8BBBAD762B9F2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract, Version=6.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_BDE23F8885AA229AB7F8BBBAD762B9F2" - { - "Name" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C154DAD908E6F97F3E62E31A0479E084" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C154DAD908E6F97F3E62E31A0479E084" - { - "Name" = "8:System.Linq.Queryable.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Queryable.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C41DB7598DA243F404B67F0C6A6AD857" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C41DB7598DA243F404B67F0C6A6AD857" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C5D661607128ACA864FD26CD4DBFDE0B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_C5D661607128ACA864FD26CD4DBFDE0B" - { - "Name" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8599B981C32C70C49E3C486791A7A5B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C8599B981C32C70C49E3C486791A7A5B" - { - "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.CompilerServices.VisualC.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8D2BEF70FF5A41C86DA141D60F8841E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_C8D2BEF70FF5A41C86DA141D60F8841E" - { - "Name" = "8:System.IO.Compression.FileSystem.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.FileSystem.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA055D3544F418AB3194C3660CC0D5B8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Wallet.WalletContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CA055D3544F418AB3194C3660CC0D5B8" - { - "Name" = "8:Windows.ApplicationModel.Wallet.WalletContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Wallet.WalletContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CAA83D70E80C09C89E42A34FA8F23665" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows, Version=255.255.255.255, Culture=neutral" - "ScatterAssemblies" - { - "_CAA83D70E80C09C89E42A34FA8F23665" - { - "Name" = "8:Windows.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Custom.CustomDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - { - "Name" = "8:Windows.Devices.Custom.CustomDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Custom.CustomDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF06A5B97926046EAA180163D67BFC8A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CF06A5B97926046EAA180163D67BFC8A" - { - "Name" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0520ED356733B2390CC4FB9F5BE0685" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D0520ED356733B2390CC4FB9F5BE0685" - { - "Name" = "8:System.Net.NetworkInformation.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.NetworkInformation.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0EA19A1185228EE443060E46B4854A1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Playlists.PlaylistsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_D0EA19A1185228EE443060E46B4854A1" - { - "Name" = "8:Windows.Media.Playlists.PlaylistsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Playlists.PlaylistsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D237FD453993A62AA805FDFAFC4E91B3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.WebRequest, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_D237FD453993A62AA805FDFAFC4E91B3" - { - "Name" = "8:System.Net.Http.WebRequest.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.WebRequest.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D264EDC791196BFA06E023976EDE35E4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D264EDC791196BFA06E023976EDE35E4" - { - "Name" = "8:System.IO.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D32504F64F9A2A6E38B71B8EB76D9394" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Foundation.FoundationContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_D32504F64F9A2A6E38B71B8EB76D9394" - { - "Name" = "8:Windows.Foundation.FoundationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Foundation.FoundationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D3F7182ED38A22F45E94C787237811F3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D3F7182ED38A22F45E94C787237811F3" - { - "Name" = "8:System.Globalization.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D4E2AE1B339120B1AF2CB07335BAA170" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D4E2AE1B339120B1AF2CB07335BAA170" - { - "Name" = "8:System.Console.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Console.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D57AD20995B0C84A393808D3CAD5A5B6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D57AD20995B0C84A393808D3CAD5A5B6" - { - "Name" = "8:System.AppContext.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.AppContext.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D6E439F8F358953CF705B4AFF62D3C03" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D6E439F8F358953CF705B4AFF62D3C03" - { - "Name" = "8:System.Xml.XPath.XDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XPath.XDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D88A04F096FD56873EEC8F97D8578C9E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D88A04F096FD56873EEC8F97D8578C9E" - { - "Name" = "8:System.Runtime.InteropServices.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D948A46CBB49A96DD55498B3B970DFFA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=4.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D948A46CBB49A96DD55498B3B970DFFA" - { - "Name" = "8:System.Threading.ThreadPool.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.ThreadPool.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D961320847C38E82DCF135301D586EE1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D961320847C38E82DCF135301D586EE1" - { - "Name" = "8:System.Reflection.Emit.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DAEB5E080FDBEC7D7955D807A4F880A4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DAEB5E080FDBEC7D7955D807A4F880A4" - { - "Name" = "8:System.IO.FileSystem.DriveInfo.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.DriveInfo.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB518775295CF964ADA748332DA9A3A5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.SystemManagementContract, Version=7.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DB518775295CF964ADA748332DA9A3A5" - { - "Name" = "8:Windows.System.SystemManagementContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.SystemManagementContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DCD86C7FF057224DF5982CD6664E5A37" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DCD86C7FF057224DF5982CD6664E5A37" - { - "Name" = "8:System.Xml.XmlSerializer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XmlSerializer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD63E4E13211B1E0227A9DCB600816D8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.CallsVoipContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DD63E4E13211B1E0227A9DCB600816D8" - { - "Name" = "8:Windows.ApplicationModel.Calls.CallsVoipContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.CallsVoipContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DDB3D87F38588ED99DD306F2F7ABDF8C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DDB3D87F38588ED99DD306F2F7ABDF8C" - { - "Name" = "8:System.Reflection.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE469A5DFC115AF26DDBCF666237C250" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DE469A5DFC115AF26DDBCF666237C250" - { - "Name" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE8AD6B3F41379F0AB87A70EFA715076" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DE8AD6B3F41379F0AB87A70EFA715076" - { - "Name" = "8:System.Diagnostics.Contracts.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Contracts.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1044D6323768A22D9870EB8FBFDD21E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E1044D6323768A22D9870EB8FBFDD21E" - { - "Name" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1BD53E405BF635C454697266E55B097" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppCaptureMetadataContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E1BD53E405BF635C454697266E55B097" - { - "Name" = "8:Windows.Media.Capture.AppCaptureMetadataContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppCaptureMetadataContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6CAC81FA0DD7E67B3730F837AE59C9F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileHardwareTokenContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E6CAC81FA0DD7E67B3730F837AE59C9F" - { - "Name" = "8:Windows.System.Profile.ProfileHardwareTokenContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileHardwareTokenContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E7F08E9ED28295BEE3DDF803B5DE61DF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_E7F08E9ED28295BEE3DDF803B5DE61DF" - { - "Name" = "8:System.Security.Cryptography.Csp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Csp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8BB0E2A241C1023B684B55FEB5B745F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_E8BB0E2A241C1023B684B55FEB5B745F" - { - "Name" = "8:System.Runtime.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EA93444EF89FCA33C31D38543B778FE7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_EA93444EF89FCA33C31D38543B778FE7" - { - "Name" = "8:System.Collections.NonGeneric.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.NonGeneric.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC75C57176E02971B7C73D8CC15CDF62" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EC75C57176E02971B7C73D8CC15CDF62" - { - "Name" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECE9944EA9E24D0195044AF46D036749" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppCaptureContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ECE9944EA9E24D0195044AF46D036749" - { - "Name" = "8:Windows.Media.Capture.AppCaptureContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppCaptureContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE68F7A03EAFA78C41DADA98F51FD114" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.XboxLive.StorageApiContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EE68F7A03EAFA78C41DADA98F51FD114" - { - "Name" = "8:Windows.Gaming.XboxLive.StorageApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.XboxLive.StorageApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EFC668EA7FEE2B8448A9712D8FF47F48" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EFC668EA7FEE2B8448A9712D8FF47F48" - { - "Name" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F0E9F9E594A13BD590CDE51334EF9783" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Management.Workplace.WorkplaceSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F0E9F9E594A13BD590CDE51334EF9783" - { - "Name" = "8:Windows.Management.Workplace.WorkplaceSettingsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Management.Workplace.WorkplaceSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1F0B265918B5463A1EBED96C190C38E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.UI.GamingUIProviderContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F1F0B265918B5463A1EBED96C190C38E" - { - "Name" = "8:Windows.Gaming.UI.GamingUIProviderContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.UI.GamingUIProviderContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F32EBDADC8F2A6E6134400ABFD6A65AD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F32EBDADC8F2A6E6134400ABFD6A65AD" - { - "Name" = "8:System.Security.Cryptography.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5AC6CEBF440E9F6F83481FF61AB884F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Graphics.Printing3D.Printing3DContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F5AC6CEBF440E9F6F83481FF61AB884F" - { - "Name" = "8:Windows.Graphics.Printing3D.Printing3DContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Graphics.Printing3D.Printing3DContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F998EE5CB8F8C3586E6E9C104F82C7E2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppBroadcastContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F998EE5CB8F8C3586E6E9C104F82C7E2" - { - "Name" = "8:Windows.Media.Capture.AppBroadcastContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppBroadcastContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F9EC19845F9A9FCDB6BE06B727D920A6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F9EC19845F9A9FCDB6BE06B727D920A6" - { - "Name" = "8:System.Linq.Parallel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Parallel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FAFC06915891434EFF5BF410712D02C5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" - "ScatterAssemblies" - { - "_FAFC06915891434EFF5BF410712D02C5" - { - "Name" = "8:System.IO.Compression.ZipFile.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.ZipFile.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FE65F691A8229B618E6EA507F54C7373" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_FE65F691A8229B618E6EA507F54C7373" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FF57FBA0AE9E9EB84295F95D9DBF7E0F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_FF57FBA0AE9E9EB84295F95D9DBF7E0F" - { - "Name" = "8:System.Net.Ping.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Ping.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - } - "FileType" - { - } - "Folder" - { - "{3C67513D-01DD-4637-8A68-80971EB9504F}:_7A1917372AF14D75845D775AAEB7CD48" - { - "DefaultLocation" = "8:[ProgramFilesFolder]\\WinNUT-client" - "Name" = "8:#1925" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:TARGETDIR" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_DB434D603D254A8799A657820BC92B20" - { - "Name" = "8:#1919" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:ProgramMenuFolder" - "Folders" - { - } - } - "{1525181F-901A-416C-8A58-119130FE478E}:_F9B39B2DBF7643D6B54B0DCE6EE72023" - { - "Name" = "8:#1916" - "AlwaysCreate" = "11:FALSE" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Property" = "8:DesktopFolder" - "Folders" - { - } - } - } - "LaunchCondition" - { - } - "Locator" - { - } - "MsiBootstrapper" - { - "LangId" = "3:0" - "RequiresElevation" = "11:FALSE" - } - "Product" - { - "Name" = "8:Microsoft Visual Studio" - "ProductName" = "8:WinNUT" - "ProductCode" = "8:{0C28E6C2-BA07-47AE-9594-441B81D94CE6}" - "PackageCode" = "8:{4859A169-CCD1-4B55-97B6-2904EF22C64E}" - "UpgradeCode" = "8:{7EA17151-76E7-4E29-8F6A-621C1B4144C2}" - "AspNetVersion" = "8:2.0.50727.0" - "RestartWWWService" = "11:FALSE" - "RemovePreviousVersions" = "11:TRUE" - "DetectNewerInstalledVersion" = "11:TRUE" - "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:2.2.8436" - "Manufacturer" = "8:NUTDotNet" - "ARPHELPTELEPHONE" = "8:" - "ARPHELPLINK" = "8:https://github.com/nutdotnet/WinNUT-Client/issues" - "Title" = "8:WinNUT Setup" - "Subject" = "8:WinNUT" - "ARPCONTACT" = "8:Gawindx, gbakeman, et. al." - "Keywords" = "8:WinNUT" - "ARPCOMMENTS" = "8:Windows NUT Client" - "ARPURLINFOABOUT" = "8:" - "ARPPRODUCTICON" = "8:_33BCB1EF059B4E9B87FA7435A8F2499C" - "ARPIconIndex" = "3:0" - "SearchPath" = "8:" - "UseSystemSearchPath" = "11:TRUE" - "TargetPlatform" = "3:0" - "PreBuildEvent" = "8:" - "PostBuildEvent" = "8:" - "RunPostBuildEvent" = "3:0" - } - "Registry" - { - "HKLM" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0DA3589079FD40938564ACDD26E3ACE8" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_A028E6D23C274BA4A87091928E04C67C" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCU" - { - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_696262B5FF084720B7CD9BAE19A05DC3" - { - "Name" = "8:Software" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2171B80993F94BCB97F5C8D8D7D2167B" - { - "Name" = "8:[Manufacturer]" - "Condition" = "8:" - "AlwaysCreate" = "11:FALSE" - "DeleteAtUninstall" = "11:FALSE" - "Transitive" = "11:FALSE" - "Keys" - { - } - "Values" - { - } - } - } - "Values" - { - } - } - } - } - "HKCR" - { - "Keys" - { - } - } - "HKU" - { - "Keys" - { - } - } - "HKPU" - { - "Keys" - { - } - } - } - "Sequences" - { - } - "Shortcut" - { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_3ECDB7E15B544AB2B7A62815A8161D98" - { - "Name" = "8:WinNUT-client" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_70DBA11C2BF449198BA594449914C1BC" - "Folder" = "8:_DB434D603D254A8799A657820BC92B20" - "WorkingFolder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Icon" = "8:_33BCB1EF059B4E9B87FA7435A8F2499C" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C2D55927676B4263AC2A650F3787E008" - { - "Name" = "8:WinNUT-client" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_70DBA11C2BF449198BA594449914C1BC" - "Folder" = "8:_F9B39B2DBF7643D6B54B0DCE6EE72023" - "WorkingFolder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Icon" = "8:_33BCB1EF059B4E9B87FA7435A8F2499C" - "Feature" = "8:" - } - } - "UserInterface" - { - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_1CF3288DF07145E39B9048381943A0AE" - { - "Name" = "8:#1901" - "Sequence" = "3:2" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F2DF41070EDA4742A54807F28C07C52B" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_5CAD627979B945F4B92CDFDC4891D036" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdUserInterface.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_87374386312D4A0B8123F8F6B25D52E2" - { - "Name" = "8:#1900" - "Sequence" = "3:1" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4B119B4342AC4E45B4B3EECDD278671F" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_AFF745EBBD1442A0B0BC7153BEEFC80D" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "InstallAllUsersVisible" - { - "Name" = "8:InstallAllUsersVisible" - "DisplayName" = "8:#1059" - "Description" = "8:#1159" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B5BDDB8BFC80452FBE242360137F4674" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9BA39E82C24C45168E4CC90F17D42268" - { - "Name" = "8:#1902" - "Sequence" = "3:2" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E6555EC75F9C4A04A845F450455B0835" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_BB58DA8766BF47DC932804376B1AAFB9" - { - "Name" = "8:#1900" - "Sequence" = "3:2" - "Attributes" = "3:1" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2A48C931E2DF44E7880C60E12E11A45F" - { - "Sequence" = "3:100" - "DisplayName" = "8:Welcome" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "CopyrightWarning" - { - "Name" = "8:CopyrightWarning" - "DisplayName" = "8:#1002" - "Description" = "8:#1102" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1202" - "DefaultValue" = "8:#1202" - "UsePlugInResources" = "11:TRUE" - } - "Welcome" - { - "Name" = "8:Welcome" - "DisplayName" = "8:#1003" - "Description" = "8:#1103" - "Type" = "3:3" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1203" - "DefaultValue" = "8:#1203" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_3AA54EF723754A82AFCF2C63819D1E52" - { - "Sequence" = "3:200" - "DisplayName" = "8:Installation Folder" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminFolderDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - } - } - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_916E910666934ED6AC81A2EBE5B56D75" - { - "Sequence" = "3:300" - "DisplayName" = "8:Confirm Installation" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_E2A734A762244FF4A2C8549865DE9538" - { - "UseDynamicProperties" = "11:FALSE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdBasicDialogs.wim" - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E4270EB6C4A64F12898460BDC4EA3399" - { - "Name" = "8:#1902" - "Sequence" = "3:1" - "Attributes" = "3:3" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A64DF3D6139E46AC8A9FA1B01433C9BE" - { - "Sequence" = "3:100" - "DisplayName" = "8:Finished" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdFinishedDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "UpdateText" - { - "Name" = "8:UpdateText" - "DisplayName" = "8:#1058" - "Description" = "8:#1158" - "Type" = "3:15" - "ContextData" = "8:" - "Attributes" = "3:0" - "Setting" = "3:1" - "Value" = "8:#1258" - "DefaultValue" = "8:#1258" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FECE75D2143943FEB7235FC8DFBC8DF7" - { - "Name" = "8:#1901" - "Sequence" = "3:1" - "Attributes" = "3:2" - "Dialogs" - { - "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D79DF3D3BFA94C198607E6D5E942EC04" - { - "Sequence" = "3:100" - "DisplayName" = "8:Progress" - "UseDynamicProperties" = "11:TRUE" - "IsDependency" = "11:FALSE" - "SourcePath" = "8:\\VsdProgressDlg.wid" - "Properties" - { - "BannerBitmap" - { - "Name" = "8:BannerBitmap" - "DisplayName" = "8:#1001" - "Description" = "8:#1101" - "Type" = "3:8" - "ContextData" = "8:Bitmap" - "Attributes" = "3:4" - "Setting" = "3:2" - "Value" = "8:_2021E1982D884B6393B46EBA1914BC5E" - "UsePlugInResources" = "11:TRUE" - } - "ShowProgress" - { - "Name" = "8:ShowProgress" - "DisplayName" = "8:#1009" - "Description" = "8:#1109" - "Type" = "3:5" - "ContextData" = "8:1;True=1;False=0" - "Attributes" = "3:0" - "Setting" = "3:0" - "Value" = "3:1" - "DefaultValue" = "3:1" - "UsePlugInResources" = "11:TRUE" - } - } - } - } - } - } - "MergeModule" - { - } - "ProjectOutput" - { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_314CE5030A4040E69371869B1C94AA16" - { - "SourcePath" = "8:..\\AGauge_mod\\obj\\Release\\AGauge.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_70DBA11C2BF449198BA594449914C1BC" - { - "SourcePath" = "8:..\\WinNUT-Client\\obj\\Release\\WinNUT-Client.exe" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{194AB29D-1F80-497B-86BE-4F35DACBA6BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8B1E7E5B3E4E41DCA9C0CC6327710A7B" - { - "SourcePath" = "8:" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:LocalizedResourceDlls" - "OutputProjectGuid" = "8:{194AB29D-1F80-497B-86BE-4F35DACBA6BC}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } - } - } -} diff --git a/WinNUT_V2/WinNUT-Client/My Project/app.manifest b/WinNUT_V2/WinNUT-Client/My Project/app.manifest index e0a5925..7001365 100644 --- a/WinNUT_V2/WinNUT-Client/My Project/app.manifest +++ b/WinNUT_V2/WinNUT-Client/My Project/app.manifest @@ -1,63 +1,62 @@  - + - + + + + - - - - + + - - - - - + + + + - - + - - + - - - + - - + - - + \ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 11d6b09..0842927 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -14,8 +14,7 @@ v4.8 false - - + publish\ true Disk false @@ -25,8 +24,12 @@ false false true - 1 - 2.2.0.%2a + https://github.com/nutdotnet/WinNUT-Client/issues + WinNUT + NUTDotNet + false + 0 + 0.0.0.0 false true true @@ -92,6 +95,11 @@ false + + + LocalIntranet + + My Project\app.manifest @@ -320,7 +328,6 @@ Settings.Designer.vb - @@ -366,9 +373,9 @@ - + False - Microsoft .NET Framework 4.5.2 %28x86 et x64%29 + Microsoft .NET Framework 4.8 %28x86 and x64%29 true @@ -402,6 +409,18 @@ 13.0.1 + + + False + + + + + Prerequisite + True + Assembly + + diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client_TemporaryKey.pfx b/WinNUT_V2/WinNUT-Client/WinNUT-client_TemporaryKey.pfx deleted file mode 100644 index 3e32bcc832afb767945ce9417c779062b6a314e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1700 zcmZXTX;hQf7KTqo2$RylYGkGu0U?ltC`}_Eb3ge$;sz!dn}owP9wLSC(__vDMm;VQBAz&8cQnj!B~xiAnNeL_ z%a}Z6e73|(in#cVzQC#(u6F7m9dTGAVe!lU870dDNletq%Hdxp;TR$=(ar=R;@)4mhdq{6p+maRNK zy%{I9y6&oKSMAx{>8a8_nJzXB`ufe8jgRhCDf71iQ&r zUy=9EhhO(IJ@Mc=MyLu6D0P1<@fSH?t?gtz5UU7#2Q~B0G{x0Z){vH&V2QrmK43DSW4ql@`m|ozZ{wLte^I zSemkMp_E*rvs%M%Z!&+%b-^Oadi?HO-V){i+HJxn#~!bL*wO_ZFZ+=e!jeV>v8M?= zFN-L?_io&8yvUu(d$F8x^b4-GGEh0v$8gjWwb?s;)#|DevG+yKsWw?mT;;hY4EmX= z#rYvsJ_q_mjccAOVp5$6N%Qw8%PQ#_CsPB*o%L=*uMdlzP2_LSI$e26gY_|#lLaeY zSxE;z7L0tk@yh6oW- z6hMW71Su+%-62YVf(lKNpuQ6{=>sV$q{%=)j6`GX&@d!S=&TPT1)Bwey&x8_K{DWi z6etdZW55E0Lir;(0=|YSPe}7Y62!ProeWrz=KQr~0fPUUOM|LIAO<8uPR#lH^%`i% zoW~(_3=RX(k@!ys_WyPr8V*tyq#O5rv}=YCzI#_itKIAEj^}S*V|AAAWD#)Owmm~u`{k3X`W!1q_8jlDh3?yc(Wc;?vYe{y_HvWMebUa>)*#f0b4 z6OdXy?w%rQ_elOY!^I*{ja6E>U)ZKYPh5cAUb;X(#t-E`W|R-1UWSYY$20cjsCT~i z$3A;i-yFs<^nH}kHNL+n=@W2^YAY*N6kor~ZE|BGD^lM`br;>{N^>7489#r&{fue1 znboWPB3ezC1Ci6^a!ae$zoPU+(g~<3{k=GH4Mf|K*$8EZG(#` z7V>Vwp*V`K(Zj{LmRoV>BcxpP=!)f~LT3937e~2@SD3q{?((Aj`0b;al5?KCq@QYc zDEl}}4tJWel@RiTg15gz9z$vi$h9`lyh2MIHX3uM{eNg{jV|nBkv049f4p%LH(XRd zX1(Siu#7D#$1ibn`Ad^Mmcwn0=ijq;_~IxzF?tR&%b1!MS=K-A&tm@D!ET;#=EHHb zgQr*`+12Fo$~px#WtvnjC@u^xEQ`-{4XORY}0?MO~?77%7-2GUasG}n5<#qDM5BMh!PS^eb diff --git a/WinNUT_V2/WinNUT_V2.sln b/WinNUT_V2/WinNUT_V2.sln index 8baeb92..17a3a51 100644 --- a/WinNUT_V2/WinNUT_V2.sln +++ b/WinNUT_V2/WinNUT_V2.sln @@ -1,12 +1,10 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30204.135 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33516.290 MinimumVisualStudioVersion = 10.0.40219.1 Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinNUT-Client", "WinNUT-Client\WinNUT-Client.vbproj", "{194AB29D-1F80-497B-86BE-4F35DACBA6BC}" EndProject -Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "WinNUT-Setup", "Setup\Setup.vdproj", "{FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AGauge", "AGauge_mod\AGauge.csproj", "{CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5DD84426-132B-4C1F-9618-93535F5E8261}" @@ -51,19 +49,6 @@ Global {194AB29D-1F80-497B-86BE-4F35DACBA6BC}.Release|x64.Build.0 = Release|Any CPU {194AB29D-1F80-497B-86BE-4F35DACBA6BC}.Release|x86.ActiveCfg = Release|Any CPU {194AB29D-1F80-497B-86BE-4F35DACBA6BC}.Release|x86.Build.0 = Release|Any CPU - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Debug|Any CPU.ActiveCfg = Debug - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Debug|ARM.ActiveCfg = Debug - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Debug|ARM64.ActiveCfg = Debug - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Debug|x64.ActiveCfg = Debug - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Debug|x86.ActiveCfg = Debug - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|Any CPU.ActiveCfg = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|Any CPU.Build.0 = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|ARM.ActiveCfg = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|ARM64.ActiveCfg = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x64.ActiveCfg = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x64.Build.0 = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x86.ActiveCfg = Release - {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x86.Build.0 = Release {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.Build.0 = Debug|Any CPU {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|ARM.ActiveCfg = Debug|Any CPU From 149cdf9a3bd360e6f61723c1c8fc421bf6626ca9 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Fri, 14 Apr 2023 15:08:20 -0400 Subject: [PATCH 10/15] Updating release workflow for ClickOnce - Release workflow uses ClickOnce deployments and should upload output accordingly. - Modified client project file to also use this infrastructure, and it should also be automatically checking for updates. - Troubleshooting issue with action-gh-release finding the no install archive. --- .github/workflows/build-release.yaml | 73 ++++++++++++-------- WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 13 ++-- 2 files changed, 52 insertions(+), 34 deletions(-) diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index 671c445..fe6fb29 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -8,55 +8,72 @@ on: env: # The desired name of the no-install archive to be uploaded along side the installer. - ARCHIVE_NAME: "winnut-client" + ARCHIVE_NAME: "winnut-client-noinstall" VS_PATH: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise" jobs: build-release: runs-on: windows-latest steps: + - name: Setup Git + run: | + git config --global url."https://user:${{ secrets.GITHUB_TOKEN }}@github".insteadOf https://github + git config --global user.name github-actions + git config --global user.email github-actions@github.com - name: Checkout code uses: actions/checkout@v3 # Provide VER and SEMVER env vars. - name: Extract version from tag run: ./.github/workflows/get-ver.ps1 ${{ github.ref }} - - name: Build solution in Release configuration - uses: ./.github/actions/build-solution + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1 + - name: Build solution + working-directory: WinNUT_V2 + run: > + msbuild -target:"restore;publish" + -property:Configuration="Release" + -property:Version="${{ env.VER }}" + -property:ApplicationVersion="${{ env.VER }}.0" + -property:PublishDir="./publish" + - name: Checkout pages branch + uses: actions/checkout@v3 with: - build-mode: "Release" - version: "${{ env.VER }}" + ref: "gh-pages" + path: "gh-pages" + - name: Prep ClickOnce branch and deploy + working-directory: gh-pages + run: | + $outDir = "WinNUT_V2/WinNUT-Client/publish" + Write-Output "Removing previous files..." + if (Test-Path "Application Files") { + Remove-Item -Path "Application Files" -Recurse + } + if (Test-Path "WinNUT-Client.application") { + Remove-Item -Path "WinNUT-Client.application" + } + Write-Output "Copying new files..." + Copy-Item -Path "../$outDir/Application Files","../$outDir/WinNUT-Client.application" -Destination . -Recurse + # Stage and commit. + Write-Output "Staging..." + git add -A + Write-Output "Committing..." + git commit -m "Update to ${{ env.SEMVER }}" + # Push. + git push - name: Prepare no install archive run: | - $arc = Compress-Archive -PassThru -Path "WinNUT_V2\WinNUT-Client\bin\Release" -DestinationPath "${{ env.ARCHIVE_NAME }}-v${{ env.SEMVER }}.zip" + $arc = Compress-Archive -PassThru -Path "WinNUT_V2\WinNUT-Client\bin\Release" -DestinationPath "${{ env.ARCHIVE_NAME }}-${{ env.SEMVER }}.zip" + $arc = $arc -replace '\\','/' echo "ARCHIVE_NAME=$arc" >> $env:GITHUB_ENV - # https://stackoverflow.com/questions/8648428/an-error-occurred-while-validating-hresult-8000000a - - name: Fix 'out of process' build error - working-directory: ${{ env.VS_PATH }} - run: Start-Process -Wait -NoNewWindow "${{ env.VS_PATH }}\Common7\IDE\CommonExtensions\Microsoft\VSI\DisableOutOfProcBuild\DisableOutOfProcBuild.exe" - # Since MSBuild won't build the Setup project, we need to call devenv directly. - - name: Build Setup Project - run: Start-Process -Wait -NoNewWindow "${{ env.VS_PATH }}\common7\ide\devenv.com" -ArgumentList "WinNUT_V2\WinNUT_V2.sln /Build Release /Project Setup\Setup.vdproj" - - name: Create prerelease + - name: Create GitHub release uses: softprops/action-gh-release@v1 with: draft: true fail_on_unmatched_files: true generate_release_notes: true files: | - WinNUT_V2/Setup/Release/WinNUT-Setup.msi + WinNUT_V2/WinNUT-Client/publish/WinNUT-Client.application ${{ env.ARCHIVE_NAME }} LICENSE.txt README.md - CHANGELOG.md - # - name: Create prerelease - # uses: "marvinpinto/action-automatic-releases@v1.2.1" - # with: - # repo_token: "${{ secrets.GITHUB_TOKEN }}" - # draft: true # Release as draft until I'm more confident - # prerelease: true - # files: | - # WinNUT_V2\Setup\Release\WinNUT-Setup.msi - # ${{ env.ARCHIVE_NAME }}.zip - # LICENSE.txt - # README.md - # CHANGELOG.md \ No newline at end of file + CHANGELOG.md \ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 2a38fdf..41aeaac 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -12,18 +12,19 @@ 512 WindowsForms v4.8 - false + true publish\ true - Disk - false - Foreground - 7 + Web + true + Background + 1 Days - false + true false true + https://nutdotnet.github.io/WinNUT-Client/ https://github.com/nutdotnet/WinNUT-Client/issues WinNUT NUTDotNet From 3d11cfd41539095262fc6665ddf61d0837e706c2 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 15 Apr 2023 12:11:08 -0400 Subject: [PATCH 11/15] Bring CHANGELOG.md back up to date Duplicate changelog entries to the text file. Also testing ClickOnce updates. --- CHANGELOG.md | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 69 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8193b2a..13fd573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,73 @@ ## History: -### Further releases -Please see the [releases](https://github.com/nutdotnet/WinNUT-Client/releases) page for more recent releases. +### Pre-Release v2.2.8436 +After a longer than expected wait, the next pre-release is out with another set of bugfixes. + +## What's Changed +* Data directory location is more consistent depending on how WinNUT is being run (build type and location) by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/62 + * Also includes some improvements to the Logger +* WinNUT is more stable when the connection is lost, and the UI will no longer show strange data by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/64 +* Define UPS_States values as pow of 2 to fix state change detection by @supersmile2009 in https://github.com/nutdotnet/WinNUT-Client/pull/71 +* Fix release build by @supersmile2009 in https://github.com/nutdotnet/WinNUT-Client/pull/72 + +## New Contributors +* @supersmile2009 made their first contribution in https://github.com/nutdotnet/WinNUT-Client/pull/71 + +**Full Changelog**: https://github.com/nutdotnet/WinNUT-Client/compare/v2.2.8356...v2.2.8436 + +### Pre-Release v2.2.8356 +## What's Changed +* Installer dependency cleanup by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/48 +* Logging fixes by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/50 +* Fix incorrect windows version detection by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/51 +* Fix List_Var_Gui error by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/52 +* Upgrade to .Net Framework 4.8 by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/53 +* Upgrade unhandled exception handling, cryptography by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/49 + * This fixes an error on startup that was affecting many people. Please upgrade to this version if WinNUT was crashing on startup for you. +* Respect Follow FSD setting by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/57 + +Also fixing the installer per #60 + +**Full Changelog**: https://github.com/nutdotnet/WinNUT-Client/compare/v2.2.8331...v2.2.8356 + +### Pre-Release v2.2.8331 (Installer quick fix) +Quick fix to remove many dependencies that were added to the installer distribution of WinNUT. Only the installer has changed; please see the last release for the non-installer version. + +### Pre-Release v2.2.8328 +## Noticeable changes +* Re-enabled the Battery Runtime calculation. Not sure why it was disabled, please report any issues experienced with this. https://github.com/nutdotnet/WinNUT-Client/pull/33 +* Finally applied pending de-DE and zh-TW translations to WinNUT https://github.com/nutdotnet/WinNUT-Client/pull/39 +* Re-activate stop actions system and extensive core changes including status updates overhaul in https://github.com/nutdotnet/WinNUT-Client/pull/36 + * Also fixed resuming WinNUT from a suspended state +* Correct Interval/Delay value in https://github.com/nutdotnet/WinNUT-Client/pull/37 + +## Minor changes +* Created a build automation workflow so pull requests will have debug builds of WinNUT created and available for download automatically. +* Updated documentation for build & release, and translation procedures. +* Upgraded AGauge .Net Framework to solution's 4.7.2. +* Replaced Win10 static binary references with NuGet package to enable Toast Notifications while still building cross-platform (Win7 and up). + +## New Contributors +* @MartinKurtz made their first contribution in https://github.com/nutdotnet/WinNUT-Client/pull/30 + +**Full Changelog**: https://github.com/nutdotnet/WinNUT-Client/compare/v2.2.8303...v2.2.8328 + +### Version 2.2.8303 +Attempting to fix versioning on MSI Installer for future smooth upgrades. No changes in main program since last version. + +**NOTE:** You will need to remove the old version (2.2 in Add Remove Programs list) for this and future upgrades to install correctly. + +**Full Changelog**: https://github.com/nutdotnet/WinNUT-Client/compare/v2.2.8286...v2.2.8303 + +### Version 2.2.8286 +Beta/Prerelease +* Add Translation/zh-TW/zh-TW.csv for Chinese (Traditional) by @yrctw in https://github.com/nutdotnet/WinNUT-Client/pull/23 +* Large changes to Socket/UPS, DATA-STALE error handling by @gbakeman in https://github.com/nutdotnet/WinNUT-Client/pull/25 + +## New Contributors +* @yrctw made their first contribution in https://github.com/nutdotnet/WinNUT-Client/pull/23 + +**Full Changelog**: https://github.com/nutdotnet/WinNUT-Client/compare/v2.2.8255...v2.2.8286 + ### Version 2.2.8255 Beta Release From e8461d8a9c7195c440bd56803c22cc23fd24753a Mon Sep 17 00:00:00 2001 From: gbakeman Date: Wed, 8 Nov 2023 14:41:15 -0500 Subject: [PATCH 12/15] Install DNF 4.8.1 packs Recently upgraded project targeting to 4.8.1, and found out that the Windows runner isn't installed with it yet. This is a temporary workaround until the runner image is updated (https://github.com/actions/runner-images/issues/8766) --- .github/actions/build-solution/action.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/actions/build-solution/action.yaml b/.github/actions/build-solution/action.yaml index 8b62aed..bc4abe3 100644 --- a/.github/actions/build-solution/action.yaml +++ b/.github/actions/build-solution/action.yaml @@ -17,6 +17,14 @@ runs: run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - name: Setup MSBuild uses: microsoft/setup-msbuild@v1 + - name: Install DNF 4.8.1 packs + shell: pwsh + working-directory: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer" + run: | + $InstallPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise" + $WorkLoads = '--add Microsoft.Net.Component.4.8.1.SDK --add Microsoft.Net.Component.4.8.1.TargetingPack -add Microsoft.Net.ComponentGroup.4.8.1.DeveloperTools' + $Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"", $WorkLoads, '--quiet', '--norestart', '--nocache') + $process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden - name: Restore Packages working-directory: WinNUT_V2 shell: pwsh From 58321e0036392c34e7b236e74f348d2d78dd8fb9 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 11 Aug 2024 17:17:23 -0400 Subject: [PATCH 13/15] Force Common library to take Version parameter Allows for building from command line and receiving a consistent Version. Possibly important note: building directly from Visual Studio results in a 1.0.0.0 version. --- .../WinNUT-Client_Common/WinNUT-Client_Common.vbproj | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/WinNUT_V2/WinNUT-Client_Common/WinNUT-Client_Common.vbproj b/WinNUT_V2/WinNUT-Client_Common/WinNUT-Client_Common.vbproj index 3747b60..f25de52 100644 --- a/WinNUT_V2/WinNUT-Client_Common/WinNUT-Client_Common.vbproj +++ b/WinNUT_V2/WinNUT-Client_Common/WinNUT-Client_Common.vbproj @@ -135,4 +135,16 @@ + + + + <_Parameter1>$(Version) + + + + + + + + \ No newline at end of file From 714ed5c39930e1446f187cf2e9b73687a76ca128 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 12 Aug 2024 13:29:03 -0400 Subject: [PATCH 14/15] Debug build versioning - Work on any dev branch - Moved building code back into workflow file - Debug build will use the default version given to it by msbuild. Also apply short SHA to artifact filename. --- .github/workflows/build-debug.yaml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml index f818a09..f90fb1b 100644 --- a/.github/workflows/build-debug.yaml +++ b/.github/workflows/build-debug.yaml @@ -2,9 +2,8 @@ name: build-debug on: workflow_dispatch: - pull_request: - branches: Dev-2.2 + branches: dev-* paths: - '**.vb' - '**.vbproj' @@ -13,10 +12,22 @@ jobs: build-debug: runs-on: windows-latest steps: - - name: Checkout code - uses: actions/checkout@v3 - - name: Build solution in Debug configuration - uses: ./.github/actions/build-solution + - name: "Get Short SHA" + run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV + + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v2 + + - name: Checkout Code + uses: actions/checkout@v4 + + # msbuild cannot handle .vdproj Installer projects, so only build debug for now. + - name: Build solution + run: msbuild -t:build -restore -p:Configuration=Debug WinNUT_V2/WinNUT_V2.sln + + - name: Upload Artifact + uses: actions/upload-artifact@v4 with: - build-mode: "Debug" - version: "${{ vars.PRERELEASE_VERSION }}.*" \ No newline at end of file + name: ${{ format('WinNUT-Client-debugbuild-{0}', env.SHORT_SHA) }} + if-no-files-found: error + path: WinNUT_V2/WinNUT-Client/bin/Debug \ No newline at end of file From 86c4024d8891afdc9e122a2f1a99732171ad77f1 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 12 Aug 2024 15:05:52 -0400 Subject: [PATCH 15/15] Remove action, release build tweaks - Upgrade action versions - Ported over get-ver.ps1 changes from AGauge repository - Release build workflow selects solution configuration based on result from get-ver - Simplified msbuild command --- .github/actions/build-solution/action.yaml | 44 ------------------ .github/workflows/build-release.yaml | 54 +++++++++++++++------- .github/workflows/get-ver.ps1 | 16 ++++--- 3 files changed, 47 insertions(+), 67 deletions(-) delete mode 100644 .github/actions/build-solution/action.yaml diff --git a/.github/actions/build-solution/action.yaml b/.github/actions/build-solution/action.yaml deleted file mode 100644 index bc4abe3..0000000 --- a/.github/actions/build-solution/action.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: "Build Solution" -description: "Execute MSBuild with desired settings, and upload resulting artifact." -inputs: - build-mode: - description: 'Solution build mode passed to MSBuild.' - required: true - - version: - description: 'Version number to refer to this build and its assets, in the form `major.minor.build`.' - required: true - -runs: - using: "composite" - steps: - - name: "Get Short SHA" - shell: pwsh - run: echo "SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" >> $env:GITHUB_ENV - - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1 - - name: Install DNF 4.8.1 packs - shell: pwsh - working-directory: "C:\\Program Files (x86)\\Microsoft Visual Studio\\Installer" - run: | - $InstallPath = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise" - $WorkLoads = '--add Microsoft.Net.Component.4.8.1.SDK --add Microsoft.Net.Component.4.8.1.TargetingPack -add Microsoft.Net.ComponentGroup.4.8.1.DeveloperTools' - $Arguments = ('/c', "vs_installer.exe", 'modify', '--installPath', "`"$InstallPath`"", $WorkLoads, '--quiet', '--norestart', '--nocache') - $process = Start-Process -FilePath cmd.exe -ArgumentList $Arguments -Wait -PassThru -WindowStyle Hidden - - name: Restore Packages - working-directory: WinNUT_V2 - shell: pwsh - run: msbuild $env:SLN_DIR -t:restore - - name: Build solution - shell: pwsh - working-directory: WinNUT_V2 - run: > - msbuild WinNUT_V2.sln -nologo - -property:Configuration=${{ inputs.build-mode }} - -property:Version=${{ inputs.version }} - - name: Package output - uses: actions/upload-artifact@v3 - with: - name: ${{ format('winnut-client-{0}-{1}', inputs.build-mode, env.SHORT_SHA) }} - if-no-files-found: error - path: WinNUT_V2/WinNUT-Client/bin/${{ inputs.build-mode }} \ No newline at end of file diff --git a/.github/workflows/build-release.yaml b/.github/workflows/build-release.yaml index fe6fb29..d833318 100644 --- a/.github/workflows/build-release.yaml +++ b/.github/workflows/build-release.yaml @@ -8,8 +8,7 @@ on: env: # The desired name of the no-install archive to be uploaded along side the installer. - ARCHIVE_NAME: "winnut-client-noinstall" - VS_PATH: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise" + ARCHIVE_NAME: "_WinNUT-Client-NoInstall" jobs: build-release: @@ -20,26 +19,39 @@ jobs: git config --global url."https://user:${{ secrets.GITHUB_TOKEN }}@github".insteadOf https://github git config --global user.name github-actions git config --global user.email github-actions@github.com + - name: Checkout code - uses: actions/checkout@v3 - # Provide VER and SEMVER env vars. + uses: actions/checkout@v4 + - name: Extract version from tag + id: get-ver run: ./.github/workflows/get-ver.ps1 ${{ github.ref }} + + - name: Confirm Build mode + id: build-mode + run: > + if ($${{ steps.get-ver.outputs.ISPRERELEASE }}) + { echo "BUILD_MODE=PreRelease" >> $env:GITHUB_OUTPUT } + else { echo "BUILD_MODE=Release" >> $env:GITHUB_OUTPUT } + - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 + - name: Build solution working-directory: WinNUT_V2 run: > - msbuild -target:"restore;publish" - -property:Configuration="Release" - -property:Version="${{ env.VER }}" - -property:ApplicationVersion="${{ env.VER }}.0" - -property:PublishDir="./publish" + msbuild -t:"publish" -restore + -p:Configuration="${{ steps.build-mode.outputs.BUILD_MODE }}" + -p:Version="${{ steps.get-ver.outputs.VER }}" + -p:ApplicationVersion="${{ steps.get-ver.outputs.VER }}.0" + -p:PublishDir="./publish" + - name: Checkout pages branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: "gh-pages" path: "gh-pages" + - name: Prep ClickOnce branch and deploy working-directory: gh-pages run: | @@ -60,20 +72,28 @@ jobs: git commit -m "Update to ${{ env.SEMVER }}" # Push. git push + - name: Prepare no install archive run: | - $arc = Compress-Archive -PassThru -Path "WinNUT_V2\WinNUT-Client\bin\Release" -DestinationPath "${{ env.ARCHIVE_NAME }}-${{ env.SEMVER }}.zip" + $arc = Compress-Archive -PassThru -Path "WinNUT_V2\WinNUT-Client\bin\${{ steps.build-mode.outputs.BUILD_MODE }}" -DestinationPath "${{ env.ARCHIVE_NAME }}-${{ steps.get-ver.outputs.SEMVER }}.zip" $arc = $arc -replace '\\','/' echo "ARCHIVE_NAME=$arc" >> $env:GITHUB_ENV + + # Rename the CO bootstrapper file to appear after the MSI once it's uploaded. + - name: HACK - Rename ClickOnce bootstrapper + run: Rename-Item -Path "./WinNUT_V2/WinNUT-Client/publish/WinNUT-Client.application" -NewName "_WinNUT-Client-ClickOnce-Installer.application" + - name: Create GitHub release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: draft: true fail_on_unmatched_files: true generate_release_notes: true files: | - WinNUT_V2/WinNUT-Client/publish/WinNUT-Client.application + WinNUT_V2/WinNUT-Client/publish/_WinNUT-Client-ClickOnce-Installer.application ${{ env.ARCHIVE_NAME }} - LICENSE.txt - README.md - CHANGELOG.md \ No newline at end of file + +# Leave out other files until we no longer need the MSI be first in the assets list. +# LICENSE.txt +# README.md +# CHANGELOG.md \ No newline at end of file diff --git a/.github/workflows/get-ver.ps1 b/.github/workflows/get-ver.ps1 index 34ded45..748f962 100644 --- a/.github/workflows/get-ver.ps1 +++ b/.github/workflows/get-ver.ps1 @@ -4,15 +4,19 @@ param([string]$ghRef) $semVerRegex = "(?0|[1-9]\d*)\.(?0|[1-9]\d*)\.(?0|[1-9]\d*)(?:-(?(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$" +$matchInfo = [regex]::Match($ghRef, $semVerRegex) -if (!($ghRef -match $semVerRegex)) { +if (!($matchInfo.Success)) { Write-Host "Could not find valid semver within ref. string. Given: $ghRef" Exit 1 } -$verRes = "VER={0}.{1}.{2}" -f $matches.major, $matches.minor, $matches.patch -$semVerRes = "SEMVER=" + $ghRef.Substring(10) +$verRes = "VER={0}.{1}.{2}" -f $matchInfo.Groups["major"], $matchInfo.Groups["minor"], $matchInfo.Groups["patch"] +$semVerRes = "SEMVER=" + $matchInfo.Value +$isPr = "ISPRERELEASE=" + $matchInfo.Groups.ContainsKey("prerelease").ToString().ToLower() -echo $verRes >> $env:GITHUB_ENV -echo $semVerRes >> $env:GITHUB_ENV -Write-Host "Result: $verRes, $semVerRes" \ No newline at end of file +echo $verRes >> $env:GITHUB_OUTPUT +echo $semVerRes >> $env:GITHUB_OUTPUT +echo $isPr >> $env:GITHUB_OUTPUT + +Write-Host "Result: $verRes, $semVerRes, $isPr" \ No newline at end of file