diff --git a/.gitignore b/.gitignore index a92660f9..854205e8 100644 --- a/.gitignore +++ b/.gitignore @@ -189,3 +189,4 @@ arcgis10_mapping_tools/opencover-results.xml arcgis10_mapping_tools/RenameLayer/RenameLayer/obj/Debug/DesignTimeResolveAssemblyReferences.cache arcgis10_mapping_tools/RenameLayer/RenameLayer/obj/Debug/DesignTimeResolveAssemblyReferences.cache arcgis10_mapping_tools/.vs/ +.vs/ \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 00000000..6330bcfc --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,8 @@ +{ + "ExpandedNodes": [ + "", + "\\arcgis10_mapping_tools\\MapActionToolbar_COMTools" + ], + "SelectedNode": "\\arcgis10_mapping_tools", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 00000000..0ae0eba7 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/DevEnv-EnableOutOfProcBuild.cmd b/DevEnv-EnableOutOfProcBuild.cmd new file mode 100644 index 00000000..6cad53ed --- /dev/null +++ b/DevEnv-EnableOutOfProcBuild.cmd @@ -0,0 +1,33 @@ +@SETLOCAL +@REM +@ECHO OFF + +ECHO: & ECHO Start %~nx0 & ECHO: + + +@REM The workaround for building .vdproj by DevEnv for the following error: +@REM Visual Studio has encountered an unexpected error.------ Starting pre-build validation for project 'Setup1' ------ +@REM ERROR: An error occurred while validating. HRESULT = '8000000A' +@REM http://stackoverflow.com/questions/8648428/an-error-occurred-while-validating-hresult-8000000a +@REM https://connect.microsoft.com/VisualStudio/feedback/details/595632/inconsistent-hanging-with-devenv-2010 + +SET current_path="%CD%" +REM Bug! The DisableOutOfProcBuild.exe doesn't work if the current directory of CMD doesn't set to the installation location of DisableOutOfProcBuild.exe. +ECHO Seting the current path to the DisableOutOfProcBuild.exe installation folder. +@REM +CD "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\VSI\DisableOutOfProcBuild" +ECHO: +CALL DisableOutOfProcBuild.exe + + +IF [%env_qUtil%] NEQ [] ( + CALL %env_qUtil%\exit_if_error +) + + +ECHO: & ECHO Revert the previous current directory. +CD %current_path% +ECHO CD is set to %CD% + + +@ECHO End %~nx0 & ECHO: diff --git a/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/db.lock b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/db.lock new file mode 100644 index 00000000..e69de29b diff --git a/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide new file mode 100644 index 00000000..0ba71e87 Binary files /dev/null and b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide differ diff --git a/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-shm b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-shm new file mode 100644 index 00000000..214d3e5a Binary files /dev/null and b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-shm differ diff --git a/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-wal b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-wal new file mode 100644 index 00000000..8670cc16 Binary files /dev/null and b/arcgis10_mapping_tools/.vs/MapAction-toolbox/v15/Server/sqlite3/storage.ide-wal differ diff --git a/arcgis10_mapping_tools/CommonTests/CommonTests.csproj b/arcgis10_mapping_tools/CommonTests/CommonTests.csproj index eda25c75..ca84d7ed 100644 --- a/arcgis10_mapping_tools/CommonTests/CommonTests.csproj +++ b/arcgis10_mapping_tools/CommonTests/CommonTests.csproj @@ -89,9 +89,9 @@ - + {8B7ABA1A-C659-4D80-A2EF-13D953577643} - MapAction + MapActionToolbar_Core diff --git a/arcgis10_mapping_tools/CommonTests/DDPExportTests.cs b/arcgis10_mapping_tools/CommonTests/DDPExportTests.cs index 5eb22c54..e1f5e3a3 100644 --- a/arcgis10_mapping_tools/CommonTests/DDPExportTests.cs +++ b/arcgis10_mapping_tools/CommonTests/DDPExportTests.cs @@ -7,10 +7,10 @@ using ESRI.ArcGIS.Carto; using ESRI.ArcGIS.ArcMapUI; using NUnit.Framework; -using MapAction; +using MapActionToolbar_Core; -namespace MapAction.tests +namespace MapActionToolbar_Core.tests { /// /// The tests in this case are focused on code dealing exporting MapAction specific MXDs which have DataDrivenPages enabled. diff --git a/arcgis10_mapping_tools/CommonTests/EventConfigTests.cs b/arcgis10_mapping_tools/CommonTests/EventConfigTests.cs index e6a4a75b..ab86f8e4 100644 --- a/arcgis10_mapping_tools/CommonTests/EventConfigTests.cs +++ b/arcgis10_mapping_tools/CommonTests/EventConfigTests.cs @@ -4,16 +4,16 @@ using System.Linq; using System.Text; using NUnit.Framework; -using MapAction; +using MapActionToolbar_Core; -namespace MapAction.tests +namespace MapActionToolbar_Core.tests { [TestFixture] public class EventConfigTests { // Class properties protected string testRootDir; - protected MapAction.EventConfig config; + protected MapActionToolbar_Core.EventConfig config; private readonly string expectedOperationName= "Op_test"; private readonly string expectedGlideNo= "XY-2006-123456-PAK"; @@ -41,7 +41,7 @@ public EventConfigTests() public void Setup() { string filePath = Path.Combine(this.testRootDir, @"testfiles\event_description.json"); - config = MapAction.Utilities.getEventConfigValues(filePath); + config = MapActionToolbar_Core.Utilities.getEventConfigValues(filePath); } [TestCase] diff --git a/arcgis10_mapping_tools/CommonTests/ExportTests.cs b/arcgis10_mapping_tools/CommonTests/ExportTests.cs index d0340265..9b82ca43 100644 --- a/arcgis10_mapping_tools/CommonTests/ExportTests.cs +++ b/arcgis10_mapping_tools/CommonTests/ExportTests.cs @@ -8,10 +8,10 @@ using ESRI.ArcGIS.Carto; using ESRI.ArcGIS.Framework; using NUnit.Framework; -using MapAction; +using MapActionToolbar_Core; -namespace MapAction.tests +namespace MapActionToolbar_Core.tests { //[Ignore("Ignore Exports whilst fixing PageLayoutElements")] [TestFixture] @@ -88,12 +88,12 @@ public void exportSizedImageNewCreatesFileTest(MapActionExportTypes fileType, st string outDir = this.exportPath;// just for clarity... exportFileName = Path.Combine(outDir, "thumbnail.png"); - width = MapAction.Properties.Settings.Default.thumbnail_width_px; + width = MapActionToolbar_Core.Properties.Settings.Default.thumbnail_width_px; } else { // at present the sized export still uses dpi to build the filename, using screen resolution - int dpi = MapAction.MapImageExporter.SCREEN_RES_DPI; + int dpi = MapActionToolbar_Core.MapImageExporter.SCREEN_RES_DPI; width = 1024; if (dataFrameName == null) diff --git a/arcgis10_mapping_tools/CommonTests/MATemplateTests.cs b/arcgis10_mapping_tools/CommonTests/MATemplateTests.cs index 0c5922eb..8a6d3f56 100644 --- a/arcgis10_mapping_tools/CommonTests/MATemplateTests.cs +++ b/arcgis10_mapping_tools/CommonTests/MATemplateTests.cs @@ -6,10 +6,10 @@ using System.Text; using ESRI.ArcGIS.ArcMapUI; using ESRI.ArcGIS.Carto; -using MapAction; +using MapActionToolbar_Core; using NUnit.Framework; -namespace MapAction.tests +namespace MapActionToolbar_Core.tests { /// /// The tests in this case are focused on the testing that code dealing with the MapAction specific MXDs work correctly diff --git a/arcgis10_mapping_tools/CommonTests/TestUtilities.cs b/arcgis10_mapping_tools/CommonTests/TestUtilities.cs index 7f6fe475..85eab3b5 100644 --- a/arcgis10_mapping_tools/CommonTests/TestUtilities.cs +++ b/arcgis10_mapping_tools/CommonTests/TestUtilities.cs @@ -10,7 +10,7 @@ /** * Various static functions that are useful for setting up and tearing down tests for the MapActionToolbox Addins */ -namespace MapAction.tests +namespace MapActionToolbar_Core.tests { class TestUtilities { diff --git a/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.Designer.cs b/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.Designer.cs new file mode 100644 index 00000000..8ca3ccfb --- /dev/null +++ b/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.Designer.cs @@ -0,0 +1,36 @@ +namespace InvokeESRIRegAsm +{ + partial class EsriRegisterer + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + components = new System.ComponentModel.Container(); + } + + #endregion + } +} \ No newline at end of file diff --git a/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.cs b/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.cs new file mode 100644 index 00000000..187c401c --- /dev/null +++ b/arcgis10_mapping_tools/InvokeESRIRegAsm/EsriRegisterer.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.ComponentModel; +using System.Configuration.Install; +using System.Linq; +using System.Threading.Tasks; +using System.Diagnostics; + +namespace InvokeESRIRegAsm +{ + [RunInstaller(true)] + public partial class EsriRegisterer : Installer + { + public EsriRegisterer() + { + InitializeComponent(); + } + + public override void Install(System.Collections.IDictionary stateSaver) + { + base.Install(stateSaver); + + //Register the custom component. + //----------------------------- + //The default location of the ESRIRegAsm utility. + //Note how the whole string is embedded in quotes because of the spaces in the path. + string cmd1 = "\"" + Environment.GetFolderPath + (Environment.SpecialFolder.CommonProgramFilesX86) + + "\\ArcGIS\\bin\\ESRIRegAsm.exe" + "\""; + //Obtain the input argument (via the CustomActionData Property) in the setup project. + //An example CustomActionData property that is passed through might be something like: + // /arg1="[ProgramFilesFolder]\[ProductName]\bin\ArcMapClassLibrary_Implements.dll", + //which translates to the following on a default install: + //C:\Program Files\MyGISApp\bin\ArcMapClassLibrary_Implements.dll. + string part1 = this.Context.Parameters["arg1"]; + + //Add the appropriate command line switches when invoking the ESRIRegAsm utility. + //In this case: /p:Desktop = means the ArcGIS Desktop product, /s = means a silent install. + string part2 = " /p:Desktop /s"; + + //It is important to embed the part1 in quotes in case there are any spaces in the path. + string cmd2 = "\"" + part1 + "\"" + part2; + + //Call the routing that will execute the ESRIRegAsm utility. + int exitCode = ExecuteCommand(cmd1, cmd2, 30000); + } + + public override void Uninstall(System.Collections.IDictionary savedState) + { + base.Uninstall(savedState); + + //Unregister the custom component. + //----------------------------- + //The default location of the ESRIRegAsm utility. + //Note how the whole string is embedded in quotes because of the spaces in the path. + string cmd1 = "\"" + Environment.GetFolderPath + (Environment.SpecialFolder.CommonProgramFilesX86) + + "\\ArcGIS\\bin\\ESRIRegAsm.exe" + "\""; + //Obtain the input argument (via the CustomActionData Property) in the setup project. + //An example CustomActionData property that is passed through might be something like: + // /arg1="[ProgramFilesFolder]\[ProductName]\bin\ArcMapClassLibrary_Implements.dll", + //which translate to the following on a default install: + //C:\Program Files\MyGISApp\bin\ArcMapClassLibrary_Implements.dll. + string part1 = this.Context.Parameters["arg1"]; + + //Add the appropriate command line switches when invoking the ESRIRegAsm utility. + //In this case: /p:Desktop = means the ArcGIS Desktop product, /u = means unregister the Custom Component, /s = means a silent install. + string part2 = " /p:Desktop /u /s"; + + //It is important to embed the part1 in quotes in case there are any spaces in the path. + string cmd2 = "\"" + part1 + "\"" + part2; + + //Call the routing that will execute the ESRIRegAsm utility. + int exitCode = ExecuteCommand(cmd1, cmd2, 30000); + } + + public static int ExecuteCommand(string Command1, string Command2, int + Timeout) + { + //Set up a ProcessStartInfo using your path to the executable (Command1) and the command line arguments (Command2). + ProcessStartInfo ProcessInfo = new ProcessStartInfo(Command1, Command2); + ProcessInfo.CreateNoWindow = true; + ProcessInfo.UseShellExecute = false; + + //Invoke the process. + Process Process = Process.Start(ProcessInfo); + Process.WaitForExit(Timeout); + + //Finish. + int ExitCode = Process.ExitCode; + Process.Close(); + return ExitCode; + } + } +} \ No newline at end of file diff --git a/arcgis10_mapping_tools/InvokeESRIRegAsm/InvokeESRIRegAsm.csproj b/arcgis10_mapping_tools/InvokeESRIRegAsm/InvokeESRIRegAsm.csproj new file mode 100644 index 00000000..31958fc4 --- /dev/null +++ b/arcgis10_mapping_tools/InvokeESRIRegAsm/InvokeESRIRegAsm.csproj @@ -0,0 +1,55 @@ + + + + + Debug + AnyCPU + {38C0FD0A-697D-4298-AAEE-9A2217CECF29} + Library + Properties + InvokeESRIRegAsm + InvokeESRIRegAsm + v4.5 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + Component + + + EsriRegisterer.cs + + + + + \ No newline at end of file diff --git a/arcgis10_mapping_tools/InvokeESRIRegAsm/Properties/AssemblyInfo.cs b/arcgis10_mapping_tools/InvokeESRIRegAsm/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..6f66eda4 --- /dev/null +++ b/arcgis10_mapping_tools/InvokeESRIRegAsm/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("InvokeESRIRegAsm")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("InvokeESRIRegAsm")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("38c0fd0a-697d-4298-aaee-9a2217cecf29")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/arcgis10_mapping_tools/MapAction-toolbox.sln b/arcgis10_mapping_tools/MapAction-toolbox.sln index 9c217e80..4d1ff4b2 100644 --- a/arcgis10_mapping_tools/MapAction-toolbox.sln +++ b/arcgis10_mapping_tools/MapAction-toolbox.sln @@ -1,7 +1,9 @@  -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual Studio 2010 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapAction", "MapAction\MapAction\MapAction.csproj", "{8B7ABA1A-C659-4D80-A2EF-13D953577643}" +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.960 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapActionToolbar_Core", "MapAction\MapAction\MapActionToolbar_Core.csproj", "{8B7ABA1A-C659-4D80-A2EF-13D953577643}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{185C9A74-2001-4B24-843F-C7D00B7EB474}" ProjectSection(SolutionItems) = preProject @@ -10,7 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapActionToolbars", "MapActionToolbars\MapActionToolbars.csproj", "{5388B0F1-B5E9-45B2-810C-49F019300ACA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapActionToolbar_Forms", "MapActionToolbars\MapActionToolbar_Forms.csproj", "{5388B0F1-B5E9-45B2-810C-49F019300ACA}" ProjectSection(ProjectDependencies) = postProject {8B7ABA1A-C659-4D80-A2EF-13D953577643} = {8B7ABA1A-C659-4D80-A2EF-13D953577643} EndProjectSection @@ -22,10 +24,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{837E9B .nuget\packages.config = .nuget\packages.config EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapActionToolbar_COMTools", "MapActionToolbar_COMTools\MapActionToolbar_COMTools.csproj", "{7B617336-DC71-4653-AD35-56DDF5E7062D}" +EndProject +Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "MapActionToolbarInstaller", "MapActionToolbarInstaller\MapActionToolbarInstaller.vdproj", "{7B30F4FA-381F-4CFE-9BB1-61E78FC56D77}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InvokeESRIRegAsm", "InvokeESRIRegAsm\InvokeESRIRegAsm.csproj", "{38C0FD0A-697D-4298-AAEE-9A2217CECF29}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapActionToolbar_Addin", "MapActionToolbar_Addin\MapActionToolbar_Addin.csproj", "{F5DB27DB-E505-4583-B766-1F8C8AF6DE27}" +EndProject Global - GlobalSection(TestCaseManagementSettings) = postSolution - CategoryFile = MapAction-toolbox.vsmdi - EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU @@ -43,8 +50,29 @@ Global {EFAA6DBF-A7AF-467F-810F-75044A5EAC9F}.Debug|Any CPU.Build.0 = Release|Any CPU {EFAA6DBF-A7AF-467F-810F-75044A5EAC9F}.Release|Any CPU.ActiveCfg = Release|Any CPU {EFAA6DBF-A7AF-467F-810F-75044A5EAC9F}.Release|Any CPU.Build.0 = Release|Any CPU + {7B617336-DC71-4653-AD35-56DDF5E7062D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7B617336-DC71-4653-AD35-56DDF5E7062D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7B617336-DC71-4653-AD35-56DDF5E7062D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7B617336-DC71-4653-AD35-56DDF5E7062D}.Release|Any CPU.Build.0 = Release|Any CPU + {7B30F4FA-381F-4CFE-9BB1-61E78FC56D77}.Debug|Any CPU.ActiveCfg = Debug + {7B30F4FA-381F-4CFE-9BB1-61E78FC56D77}.Release|Any CPU.ActiveCfg = Release + {7B30F4FA-381F-4CFE-9BB1-61E78FC56D77}.Release|Any CPU.Build.0 = Release + {38C0FD0A-697D-4298-AAEE-9A2217CECF29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {38C0FD0A-697D-4298-AAEE-9A2217CECF29}.Debug|Any CPU.Build.0 = Debug|Any CPU + {38C0FD0A-697D-4298-AAEE-9A2217CECF29}.Release|Any CPU.ActiveCfg = Release|Any CPU + {38C0FD0A-697D-4298-AAEE-9A2217CECF29}.Release|Any CPU.Build.0 = Release|Any CPU + {F5DB27DB-E505-4583-B766-1F8C8AF6DE27}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F5DB27DB-E505-4583-B766-1F8C8AF6DE27}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F5DB27DB-E505-4583-B766-1F8C8AF6DE27}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F5DB27DB-E505-4583-B766-1F8C8AF6DE27}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CF73C2F1-243E-4AF4-BE98-00BAD330B4A6} + EndGlobalSection + GlobalSection(TestCaseManagementSettings) = postSolution + CategoryFile = MapAction-toolbox.vsmdi + EndGlobalSection EndGlobal diff --git a/arcgis10_mapping_tools/MapAction/MapAction/AutomationReport.cs b/arcgis10_mapping_tools/MapAction/MapAction/AutomationReport.cs index 16a9b16f..a588db41 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/AutomationReport.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/AutomationReport.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace MapAction +namespace MapActionToolbar_Core { public class AutomationReport { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/AutomationResult.cs b/arcgis10_mapping_tools/MapAction/MapAction/AutomationResult.cs index 5e5ba708..3b9b10d9 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/AutomationResult.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/AutomationResult.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace MapAction +namespace MapActionToolbar_Core { public class AutomationResult { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Cookbook.cs b/arcgis10_mapping_tools/MapAction/MapAction/Cookbook.cs index 0110afd3..c543d3d4 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Cookbook.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Cookbook.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Newtonsoft.Json; -namespace MapAction +namespace MapActionToolbar_Core { public class Cookbook { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Countries.cs b/arcgis10_mapping_tools/MapAction/MapAction/Countries.cs index 1e5056de..b7a81b40 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Countries.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Countries.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Newtonsoft.Json; -namespace MapAction +namespace MapActionToolbar_Core { public enum CountryFields { Alpha2Code, Alpha3Code }; diff --git a/arcgis10_mapping_tools/MapAction/MapAction/CrashMoveFolderConfig.cs b/arcgis10_mapping_tools/MapAction/MapAction/CrashMoveFolderConfig.cs index 8118e327..b8e07154 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/CrashMoveFolderConfig.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/CrashMoveFolderConfig.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Newtonsoft.Json; -namespace MapAction +namespace MapActionToolbar_Core { public class CrashMoveFolderConfig { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/DataFrameProperties.cs b/arcgis10_mapping_tools/MapAction/MapAction/DataFrameProperties.cs index 05037c23..acb2e88d 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/DataFrameProperties.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/DataFrameProperties.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; -namespace MapAction +namespace MapActionToolbar_Core { public class DataFrameProperties { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/EventConfig.cs b/arcgis10_mapping_tools/MapAction/MapAction/EventConfig.cs index 89833abb..7c71cb6c 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/EventConfig.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/EventConfig.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Newtonsoft.Json; -namespace MapAction +namespace MapActionToolbar_Core { public class EventConfig { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/LanguageCode.cs b/arcgis10_mapping_tools/MapAction/MapAction/LanguageCode.cs index a097f30b..e745cf87 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/LanguageCode.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/LanguageCode.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -namespace MapAction +namespace MapActionToolbar_Core { public class LanguageCode { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/LanguageCodeLookup.cs b/arcgis10_mapping_tools/MapAction/MapAction/LanguageCodeLookup.cs index 0fb3f737..c187ef05 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/LanguageCodeLookup.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/LanguageCodeLookup.cs @@ -4,7 +4,7 @@ using System.Text; using System.Xml.Serialization; -namespace MapAction +namespace MapActionToolbar_Core { public enum LanguageCodeFields { Alpha2, Alpha3b, Alpha3t, Alpha3h, Language }; diff --git a/arcgis10_mapping_tools/MapAction/MapAction/LanguageConfig.cs b/arcgis10_mapping_tools/MapAction/MapAction/LanguageConfig.cs index 82041513..7b2fd7f5 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/LanguageConfig.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/LanguageConfig.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; -namespace MapAction +namespace MapActionToolbar_Core { public class LanguageConfig { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj.user b/arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj.user deleted file mode 100644 index d28f86c0..00000000 --- a/arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj.user +++ /dev/null @@ -1,8 +0,0 @@ - - - - Program - C:\Program Files (x86)\ArcGIS\Desktop10.6\bin\ArcMap.exe - C:\MapAction\MA001_country-overview-with-admin-1-boundaries-p-codes.mxd - - \ No newline at end of file diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj b/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbar_Core.csproj similarity index 98% rename from arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj rename to arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbar_Core.csproj index a9647102..95f264df 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/MapAction.csproj +++ b/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbar_Core.csproj @@ -1,170 +1,170 @@ - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {8B7ABA1A-C659-4D80-A2EF-13D953577643} - Library - Properties - MapAction - MapAction - v4.5 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - false - AnyCPU - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - false - - - - True - - - True - - - True - - - - True - - - True - - - True - - - True - - - True - - - True - - - - True - - - True - - - ..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - True - True - Resources.resx - - - True - True - Settings.settings - - - - - - - - - - - - - Designer - - - Always - - - Always - - - Always - - - Always - - - - PublicSettingsSingleFileGenerator - Settings.Designer.cs - - - - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - - - Always - - - Always - - - - + + + + Debug + AnyCPU + 8.0.30703 + 2.0 + {8B7ABA1A-C659-4D80-A2EF-13D953577643} + Library + Properties + MapAction + MapAction + v4.5 + 512 + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + false + AnyCPU + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + True + + + True + + + True + + + + True + + + True + + + True + + + True + + + True + + + True + + + + True + + + True + + + ..\..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + True + True + Resources.resx + + + True + True + Settings.settings + + + + + + + + + + + + + Designer + + + Always + + + Always + + + Always + + + Always + + + + PublicSettingsSingleFileGenerator + Settings.Designer.cs + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + + + Always + + + Always + + + + \ No newline at end of file diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbarsConfig.cs b/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbarsConfig.cs index e47d5ea8..76923aee 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbarsConfig.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/MapActionToolbarsConfig.cs @@ -6,7 +6,7 @@ using System.Xml.Serialization; -namespace MapAction +namespace MapActionToolbar_Core { [Serializable] [XmlRoot("MapActionToolbarConfig")] diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MapExport.cs b/arcgis10_mapping_tools/MapAction/MapAction/MapExport.cs index 107bd53c..25d69507 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/MapExport.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/MapExport.cs @@ -19,7 +19,7 @@ using ESRI.ArcGIS.Geoprocessing; using ESRI.ArcGIS.Geodatabase; -namespace MapAction +namespace MapActionToolbar_Core { public static class MapExport { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MapImageExporter.cs b/arcgis10_mapping_tools/MapAction/MapAction/MapImageExporter.cs index 40fef838..77d901ce 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/MapImageExporter.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/MapImageExporter.cs @@ -19,7 +19,7 @@ using ESRI.ArcGIS.Geodatabase; using ESRI.ArcGIS.Geoprocessor; -namespace MapAction +namespace MapActionToolbar_Core { /// /// This is a non-static type for exporting map images such as (but not limited to) within the Mapaction Export Tool. diff --git a/arcgis10_mapping_tools/MapAction/MapAction/MxdDocumentProperties.cs b/arcgis10_mapping_tools/MapAction/MapAction/MxdDocumentProperties.cs index 35f2eb81..d944d9c1 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/MxdDocumentProperties.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/MxdDocumentProperties.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; -namespace MapAction +namespace MapActionToolbar_Core { class MxdDocumentProperties { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/PageLayoutProperties.cs b/arcgis10_mapping_tools/MapAction/MapAction/PageLayoutProperties.cs index d6d72acd..6d7895d9 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/PageLayoutProperties.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/PageLayoutProperties.cs @@ -17,7 +17,7 @@ using ESRI.ArcGIS.esriSystem; using ESRI.ArcGIS.Framework; -namespace MapAction +namespace MapActionToolbar_Core { /// /// This is a equiv of enum for strings. diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Product.cs b/arcgis10_mapping_tools/MapAction/MapAction/Product.cs index 83e3b680..dea78c2a 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Product.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Product.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace MapAction +namespace MapActionToolbar_Core { public class Product { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/ProductLayer.cs b/arcgis10_mapping_tools/MapAction/MapAction/ProductLayer.cs index 1403b224..1b2ef3e3 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/ProductLayer.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/ProductLayer.cs @@ -4,7 +4,7 @@ using System.Text; using System.Threading.Tasks; -namespace MapAction +namespace MapActionToolbar_Core { public class ProductLayer { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Properties/AssemblyInfo.cs b/arcgis10_mapping_tools/MapAction/MapAction/Properties/AssemblyInfo.cs index 88c9e7a9..1d94bd1c 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Properties/AssemblyInfo.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("5.1.*")] +//[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Properties/Resources.Designer.cs b/arcgis10_mapping_tools/MapAction/MapAction/Properties/Resources.Designer.cs index 38c1c019..7b50c007 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Properties/Resources.Designer.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace MapAction.Properties { +namespace MapActionToolbar_Core.Properties { using System; diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Properties/Settings.Designer.cs b/arcgis10_mapping_tools/MapAction/MapAction/Properties/Settings.Designer.cs index cea712f7..04c6c929 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Properties/Settings.Designer.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace MapAction.Properties { +namespace MapActionToolbar_Core.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Settings.cs b/arcgis10_mapping_tools/MapAction/MapAction/Settings.cs index 7aa4c769..afef08cf 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Settings.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Settings.cs @@ -1,4 +1,4 @@ -namespace MapAction.Properties { +namespace MapActionToolbar_Core.Properties { // This class allows you to handle specific events on the settings class: diff --git a/arcgis10_mapping_tools/MapAction/MapAction/Utilities.cs b/arcgis10_mapping_tools/MapAction/MapAction/Utilities.cs index cfb66367..2d8336dc 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/Utilities.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/Utilities.cs @@ -24,7 +24,7 @@ using Newtonsoft.Json; using Formatting = Newtonsoft.Json.Formatting; -namespace MapAction +namespace MapActionToolbar_Core { public class Utilities { @@ -122,7 +122,7 @@ public static string createXML(Dictionary usDict, string rootEle #endregion #region Public method createEventConfig //Creates a json given a dictionary of tags and values. Also pass in the root element, file path and filename. - public static string createEventConfig(MapAction.EventConfig eventConfig, string path, string fileName) + public static string createEventConfig(MapActionToolbar_Core.EventConfig eventConfig, string path, string fileName) { //set output path and filename string pathFileName; @@ -475,7 +475,7 @@ public static string setCrashMovePathTest(string path) if (Directory.Exists(path)) { - MapAction.Properties.Settings.Default.crash_move_folder_path = path; + MapActionToolbar_Core.Properties.Settings.Default.crash_move_folder_path = path; Properties.Settings.Default.Save(); return Properties.Settings.Default.crash_move_folder_path; } @@ -635,7 +635,7 @@ public static string GenerateQRCode(string url) #region Public method getLanguageCodeValues //Returns a List of the countries_config.xml elements and values - public static MapAction.LanguageCodeLookup getLanguageCodeValues(string path = null) + public static MapActionToolbar_Core.LanguageCodeLookup getLanguageCodeValues(string path = null) { const string LanguageCodesConfigFileName = "language_codes.xml"; @@ -753,10 +753,10 @@ public static MapActionToolbarConfig getToolboxConfig(string path = null) #region Public method getLanguageConfigValues //Returns the Language Configuration - public static List getLanguageConfigValues(string path = null) + public static List getLanguageConfigValues(string path = null) { const string LanguageConfigFileName = "language_config.xml"; - List languageDictionary = new List(); + List languageDictionary = new List(); string configPath; if (path == null) { diff --git a/arcgis10_mapping_tools/MapAction/MapAction/UtilityClasses.cs b/arcgis10_mapping_tools/MapAction/MapAction/UtilityClasses.cs index 281075d6..7729b582 100644 --- a/arcgis10_mapping_tools/MapAction/MapAction/UtilityClasses.cs +++ b/arcgis10_mapping_tools/MapAction/MapAction/UtilityClasses.cs @@ -4,7 +4,7 @@ using System.Text; using System.Collections.ObjectModel; -namespace MapAction +namespace MapActionToolbar_Core { /// /// The different types that can be exported by the MapImageExporter diff --git a/arcgis10_mapping_tools/MapActionToolbarInstaller/MapActionToolbarInstaller.vdproj b/arcgis10_mapping_tools/MapActionToolbarInstaller/MapActionToolbarInstaller.vdproj new file mode 100644 index 00000000..c7aa1eba --- /dev/null +++ b/arcgis10_mapping_tools/MapActionToolbarInstaller/MapActionToolbarInstaller.vdproj @@ -0,0 +1,4044 @@ +"DeployProject" +{ +"VSVersion" = "3:800" +"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" +"IsWebType" = "8:FALSE" +"ProjectName" = "8:MapActionToolbarInstaller" +"LanguageId" = "3:1033" +"CodePage" = "3:1252" +"UILanguageId" = "3:1033" +"SccProjectName" = "8:" +"SccLocalPath" = "8:" +"SccAuxPath" = "8:" +"SccProvider" = "8:" + "Hierarchy" + { + "Entry" + { + "MsmKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0AAD1C457F70DD82EEEFE895BA4229E4" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0C3AFD7D3A6ADB73DA43D7265E100C1C" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0CBA29147EBE5809756219E4CC0A8739" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9EAA2B82D12966F5FB2C607803288D" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_0D9EAA2B82D12966F5FB2C607803288D" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_1232B5776CD3425D823B7A1DD84D3FC2" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_15FC9C7A00D49AABBC29698ADFD07530" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_15FC9C7A00D49AABBC29698ADFD07530" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_15FC9C7A00D49AABBC29698ADFD07530" + "OwnerKey" = "8:_0D9EAA2B82D12966F5FB2C607803288D" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_18760DF6C5002C453A407BA86C2E2146" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_19D359D31B3DB44CABCBE72F0037E67B" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_1CDF88EEB903F8081BDDBB5CCE6D0F06" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_20655C4886AE82FA2DE1B199D47DAE43" + "OwnerKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_24A912D72107856531304BA27657B725" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2F4050056EB4ACDCC5086FDAE2117D26" + "OwnerKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_3732172046D041E86357C7826CCAC036" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "OwnerKey" = "8:_UNDEFINED" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_57D851B7504CEA0DCDC7312145749E92" + "OwnerKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_5D49F85F449B85F2C5A3F5612ECB4289" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_650333C24A201D893082AE0B23F8F318" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_69A1A519E93C73555F36D6256693E585" + "OwnerKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_6DB1A24DAD5B7D9D33651756B3016B78" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_798743113BBE566D236D0E9A17BF1A2D" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_8156E10A8436791A31F57B31D2E0B8FF" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_87F7E703767F9CD8F537794DC289DABE" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_8EA16772ED4D45811A911F5F9E669710" + "OwnerKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_91F6448CB9B8C53552EDF0BCC1DA88D6" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_9A43BAE26E2E5929845CA449931A0B49" + "OwnerKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_A5ED422A5B7CC62FAB57697E67EBAC62" + "OwnerKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_A9E9D657ADD959EAF3A6E7B897D6F74B" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_B96829633675105AE7773BB595F6453B" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_BE9DBD53546FAA6BC71C2F478B8A2A32" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C37A04D9FBD7B5204BECE2FFAB930E80" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C39C0B28EAE36023E8934DF5747C2EEF" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_C511E35B3B66B0070EC233AAC4B72EB0" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_CFEE731A625FED564558C7E9C4667BA6" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_1232B5776CD3425D823B7A1DD84D3FC2" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_9469A27C01CB972ED17B3BDFF6FDF29C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_0D9EAA2B82D12966F5FB2C607803288D" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_15FC9C7A00D49AABBC29698ADFD07530" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_44E33405E1C124E1431C9578BB5F75F7" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_56F7FE6028CB9F4B448491AB82DF33B4" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F767F288C98E01D5BDF20D9C92047E7A" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_7D1E9A597A363401A81F5353C977E8CD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F65D7169D1990D4824EF7C186CA6DDEA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B1479DFC9B29BB1149C5B6827261E5FD" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_BBF64723E871BC176CCFF39566A975D3" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F93E40D6D2218EF99E65785D9617898E" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_71E38754F11B51C5F7EE428201511BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_F63EDFC1AC05A488A01BEEA00747590C" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_760E32D90A77177EC869F4FA57EC426B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2A1A1E6466B6C307AC252693A05BE548" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2B9479CB248C01C06589C2E0F70028EC" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_3C20F84E998CB7AE85D6B620348A2051" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2E4AD81B95634102D9E2956818695BD0" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_7172BA0BBBA89172675493D2AF871D53" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_0325C2EAEA4662AFCDCD5A66EE49BF33" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2E3CBBD551B1153BE56AA077F4BFEC74" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_C2EF36DBEB0C632A85DD2E0324DF4127" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B54777D4686F46444371771E5C6D7A41" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_10292ABD5B3F80198C423DEA8A9BFBC6" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_FBDF04F54F76DFD670926A0735105D32" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_B96829633675105AE7773BB595F6453B" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_0D9BF066E5289CBD311D25824CDA11FB" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_94D6AC406515E84FC75F78076B2040A1" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_73B1F7B98465A32065318D6F75423E17" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_2121D448E4550E5CE433E98193DC2411" + "MsmSig" = "8:_UNDEFINED" + } + "Entry" + { + "MsmKey" = "8:_UNDEFINED" + "OwnerKey" = "8:_5580E82132F342EDB889796FAB0DBC31" + "MsmSig" = "8:_UNDEFINED" + } + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\MapActionToolbarInstaller.msi" + "PackageFilesAs" = "3:2" + "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.6.1" + { + "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)" + "ProductCode" = "8:.NETFramework,Version=v4.6.1" + } + } + } + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\MapActionToolbarInstaller.msi" + "PackageFilesAs" = "3:2" + "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.6.1" + { + "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)" + "ProductCode" = "8:.NETFramework,Version=v4.6.1" + } + } + } + } + } + "Deployable" + { + "CustomAction" + { + "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_3979452427E64F15B927242EBE2009EE" + { + "Name" = "8:Primary output from MapActionToolbar_COMTools (Active)" + "Condition" = "8:" + "Object" = "8:_5580E82132F342EDB889796FAB0DBC31" + "FileType" = "3:1" + "InstallAction" = "3:4" + "Arguments" = "8:" + "EntryPoint" = "8:" + "Sequence" = "3:1" + "Identifier" = "8:_DD1BCF34_86B1_4C33_8B36_5A79B93D3E2D" + "InstallerClass" = "11:TRUE" + "CustomActionData" = "8:" + } + "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_4B38A2DAC80B4BFA8B0C1C3885F4239E" + { + "Name" = "8:InvokeESRIRegAsm.dll" + "Condition" = "8:" + "Object" = "8:_1232B5776CD3425D823B7A1DD84D3FC2" + "FileType" = "3:1" + "InstallAction" = "3:4" + "Arguments" = "8:" + "EntryPoint" = "8:" + "Sequence" = "3:2" + "Identifier" = "8:_9A4996DC_E206_4469_8AAC_C8E63BD64ED6" + "InstallerClass" = "11:TRUE" + "CustomActionData" = "8:/arg1=\"[ProgramFilesFolder]\\[Manufacturer]\\[ProductName]\\MapActionToolbarExtension.dll\"" + } + "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_7CF5B49204454AEE841CCA010B58C288" + { + "Name" = "8:InvokeESRIRegAsm.dll" + "Condition" = "8:" + "Object" = "8:_1232B5776CD3425D823B7A1DD84D3FC2" + "FileType" = "3:1" + "InstallAction" = "3:1" + "Arguments" = "8:" + "EntryPoint" = "8:" + "Sequence" = "3:2" + "Identifier" = "8:_EF425788_00D3_4162_937B_2C5E69E1AADC" + "InstallerClass" = "11:TRUE" + "CustomActionData" = "8:/arg1=\"[ProgramFilesFolder]\\[Manufacturer]\\[ProductName]\\MapActionToolbarExtension.dll\"" + } + "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_8D460CE881774808A66EEB636444B26E" + { + "Name" = "8:Primary output from MapActionToolbar_COMTools (Active)" + "Condition" = "8:" + "Object" = "8:_5580E82132F342EDB889796FAB0DBC31" + "FileType" = "3:1" + "InstallAction" = "3:1" + "Arguments" = "8:" + "EntryPoint" = "8:" + "Sequence" = "3:1" + "Identifier" = "8:_8D6FD4B9_095E_4ED8_BD83_35C9FC96FE65" + "InstallerClass" = "11:TRUE" + "CustomActionData" = "8:" + } + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "ExternalPersistence" + { + "LaunchCondition" + { + "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_1D81C91895C64025A91FBC94F41FAE5D" + { + "Name" = "8:.NET Framework" + "Message" = "8:[VSDNETMSG]" + "FrameworkVersion" = "8:.NETFramework,Version=v4.5" + "AllowLaterVersions" = "11:FALSE" + "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728" + } + } + } + "File" + { + "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0325C2EAEA4662AFCDCD5A66EE49BF33" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GeoDatabaseDistributed, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_0325C2EAEA4662AFCDCD5A66EE49BF33" + { + "Name" = "8:ESRI.ArcGIS.GeoDatabaseDistributed.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.GeoDatabaseDistributed.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_0AAD1C457F70DD82EEEFE895BA4229E4" + { + "SourcePath" = "8:esriGeoAnalyst.olb" + "TargetName" = "8:esriGeoAnalyst.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_0C3AFD7D3A6ADB73DA43D7265E100C1C" + { + "SourcePath" = "8:esriGeoDatabaseUI.olb" + "TargetName" = "8:esriGeoDatabaseUI.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_0CBA29147EBE5809756219E4CC0A8739" + { + "SourcePath" = "8:esriGeoDatabaseDistributed.olb" + "TargetName" = "8:esriGeoDatabaseDistributed.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_0D9BF066E5289CBD311D25824CDA11FB" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Geometry, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:ESRI.ArcGIS.Geometry.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_0D9EAA2B82D12966F5FB2C607803288D" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:MapAction, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:MapAction.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_10292ABD5B3F80198C423DEA8A9BFBC6" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Geodatabase, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:ESRI.ArcGIS.Geodatabase.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_1232B5776CD3425D823B7A1DD84D3FC2" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:InvokeESRIRegAsm, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:..\\InvokeESRIRegAsm\\bin\\Release\\InvokeESRIRegAsm.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_15FC9C7A00D49AABBC29698ADFD07530" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:Newtonsoft.Json.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_18760DF6C5002C453A407BA86C2E2146" + { + "SourcePath" = "8:esriGeoDatabaseExtensions.olb" + "TargetName" = "8:esriGeoDatabaseExtensions.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_19D359D31B3DB44CABCBE72F0037E67B" + { + "SourcePath" = "8:esriCatalogUI.olb" + "TargetName" = "8:esriCatalogUI.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_1CDF88EEB903F8081BDDBB5CCE6D0F06" + { + "SourcePath" = "8:esri3DAnalyst.olb" + "TargetName" = "8:esri3DAnalyst.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_20655C4886AE82FA2DE1B199D47DAE43" + { + "SourcePath" = "8:esriServer.olb" + "TargetName" = "8:esriServer.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2121D448E4550E5CE433E98193DC2411" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.System, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2121D448E4550E5CE433E98193DC2411" + { + "Name" = "8:ESRI.ArcGIS.System.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.System.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_24A912D72107856531304BA27657B725" + { + "SourcePath" = "8:esriArcMap.olb" + "TargetName" = "8:esriArcMap.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2A1A1E6466B6C307AC252693A05BE548" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GeoAnalyst, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:ESRI.ArcGIS.GeoAnalyst.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2B9479CB248C01C06589C2E0F70028EC" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Animation, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2B9479CB248C01C06589C2E0F70028EC" + { + "Name" = "8:ESRI.ArcGIS.Animation.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Animation.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2E3CBBD551B1153BE56AA077F4BFEC74" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GISClient, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2E3CBBD551B1153BE56AA077F4BFEC74" + { + "Name" = "8:ESRI.ArcGIS.GISClient.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.GISClient.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2E4AD81B95634102D9E2956818695BD0" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Carto, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2E4AD81B95634102D9E2956818695BD0" + { + "Name" = "8:ESRI.ArcGIS.Carto.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Carto.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2F4050056EB4ACDCC5086FDAE2117D26" + { + "SourcePath" = "8:esriGeometry.olb" + "TargetName" = "8:esriGeometry.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_2FA2775FB767FBF8F47D33F9A6A9F5AA" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.3DAnalyst, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_2FA2775FB767FBF8F47D33F9A6A9F5AA" + { + "Name" = "8:ESRI.ArcGIS.3DAnalyst.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.3DAnalyst.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_3732172046D041E86357C7826CCAC036" + { + "SourcePath" = "8:esriDataSourcesRaster.olb" + "TargetName" = "8:esriDataSourcesRaster.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_3C20F84E998CB7AE85D6B620348A2051" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.DataSourcesNetCDF, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:ESRI.ArcGIS.DataSourcesNetCDF.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_44E33405E1C124E1431C9578BB5F75F7" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.ArcMap, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_44E33405E1C124E1431C9578BB5F75F7" + { + "Name" = "8:ESRI.ArcGIS.ArcMap.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.ArcMap.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_56F7FE6028CB9F4B448491AB82DF33B4" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.ArcMapUI, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_56F7FE6028CB9F4B448491AB82DF33B4" + { + "Name" = "8:ESRI.ArcGIS.ArcMapUI.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.ArcMapUI.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_57D851B7504CEA0DCDC7312145749E92" + { + "SourcePath" = "8:esriDataSourcesNetCDF.olb" + "TargetName" = "8:esriDataSourcesNetCDF.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_5D49F85F449B85F2C5A3F5612ECB4289" + { + "SourcePath" = "8:esriGISClient.olb" + "TargetName" = "8:esriGISClient.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_650333C24A201D893082AE0B23F8F318" + { + "SourcePath" = "8:esriArcMapUI.olb" + "TargetName" = "8:esriArcMapUI.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_69A1A519E93C73555F36D6256693E585" + { + "SourcePath" = "8:esriSystemUI.olb" + "TargetName" = "8:esriSystemUI.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_6DB1A24DAD5B7D9D33651756B3016B78" + { + "SourcePath" = "8:esriCatalog.olb" + "TargetName" = "8:esriCatalog.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_7172BA0BBBA89172675493D2AF871D53" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GeoDatabaseExtensions, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_7172BA0BBBA89172675493D2AF871D53" + { + "Name" = "8:ESRI.ArcGIS.GeoDatabaseExtensions.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.GeoDatabaseExtensions.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_71E38754F11B51C5F7EE428201511BD0" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.ADF.Local, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_71E38754F11B51C5F7EE428201511BD0" + { + "Name" = "8:ESRI.ArcGIS.ADF.Local.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.ADF.Local.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_73B1F7B98465A32065318D6F75423E17" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "ScatterAssemblies" + { + "_73B1F7B98465A32065318D6F75423E17" + { + "Name" = "8:stdole.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:stdole.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_760E32D90A77177EC869F4FA57EC426B" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Geoprocessing, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:ESRI.ArcGIS.Geoprocessing.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_798743113BBE566D236D0E9A17BF1A2D" + { + "SourcePath" = "8:esriGeoprocessing.olb" + "TargetName" = "8:esriGeoprocessing.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_7D1E9A597A363401A81F5353C977E8CD" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.CartoUI, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_7D1E9A597A363401A81F5353C977E8CD" + { + "Name" = "8:ESRI.ArcGIS.CartoUI.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.CartoUI.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_8156E10A8436791A31F57B31D2E0B8FF" + { + "SourcePath" = "8:esriGlobeCore.olb" + "TargetName" = "8:esriGlobeCore.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_87F7E703767F9CD8F537794DC289DABE" + { + "SourcePath" = "8:esriGeoDatabase.olb" + "TargetName" = "8:esriGeoDatabase.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_8EA16772ED4D45811A911F5F9E669710" + { + "SourcePath" = "8:esriSystem.olb" + "TargetName" = "8:esriSystem.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_91F6448CB9B8C53552EDF0BCC1DA88D6" + { + "SourcePath" = "8:esriDisplay.olb" + "TargetName" = "8:esriDisplay.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_9469A27C01CB972ED17B3BDFF6FDF29C" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:MapActionToolbars, Version=4.1.7323.17685, Culture=neutral, processorArchitecture=MSIL" + "ScatterAssemblies" + { + } + "SourcePath" = "8:MapActionToolbars.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_94D6AC406515E84FC75F78076B2040A1" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.SystemUI, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_94D6AC406515E84FC75F78076B2040A1" + { + "Name" = "8:ESRI.ArcGIS.SystemUI.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.SystemUI.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_9A43BAE26E2E5929845CA449931A0B49" + { + "SourcePath" = "8:esriOutput.olb" + "TargetName" = "8:esriOutput.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_A5ED422A5B7CC62FAB57697E67EBAC62" + { + "SourcePath" = "8:esriDataSourcesFile.olb" + "TargetName" = "8:esriDataSourcesFile.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_A9E9D657ADD959EAF3A6E7B897D6F74B" + { + "SourcePath" = "8:esriAnimation.olb" + "TargetName" = "8:esriAnimation.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_B1479DFC9B29BB1149C5B6827261E5FD" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Search, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_B1479DFC9B29BB1149C5B6827261E5FD" + { + "Name" = "8:ESRI.ArcGIS.Search.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Search.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_B54777D4686F46444371771E5C6D7A41" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.DataSourcesFile, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_B54777D4686F46444371771E5C6D7A41" + { + "Name" = "8:ESRI.ArcGIS.DataSourcesFile.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.DataSourcesFile.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_B96829633675105AE7773BB595F6453B" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Display, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_B96829633675105AE7773BB595F6453B" + { + "Name" = "8:ESRI.ArcGIS.Display.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Display.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_BBF64723E871BC176CCFF39566A975D3" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Framework, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_BBF64723E871BC176CCFF39566A975D3" + { + "Name" = "8:ESRI.ArcGIS.Framework.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Framework.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_BE9DBD53546FAA6BC71C2F478B8A2A32" + { + "SourcePath" = "8:esriSearch.olb" + "TargetName" = "8:esriSearch.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_C2EF36DBEB0C632A85DD2E0324DF4127" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.DataSourcesRaster, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_C2EF36DBEB0C632A85DD2E0324DF4127" + { + "Name" = "8:ESRI.ArcGIS.DataSourcesRaster.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.DataSourcesRaster.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_C37A04D9FBD7B5204BECE2FFAB930E80" + { + "SourcePath" = "8:esriFramework.olb" + "TargetName" = "8:esriFramework.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_C39C0B28EAE36023E8934DF5747C2EEF" + { + "SourcePath" = "8:MapActionToolbar_COMTools.tlb" + "TargetName" = "8:MapActionToolbar_COMTools.tlb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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:2" + "Exclude" = "11:FALSE" + "IsDependency" = "11:TRUE" + "IsolateTo" = "8:" + } + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C511E35B3B66B0070EC233AAC4B72EB0" + { + "SourcePath" = "8:esriCarto.olb" + "TargetName" = "8:esriCarto.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_CFEE731A625FED564558C7E9C4667BA6" + { + "SourcePath" = "8:esriCartoUI.olb" + "TargetName" = "8:esriCartoUI.olb" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_EEB92B2D0AE83C0C0859C4FE67F4CD83" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Output, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_EEB92B2D0AE83C0C0859C4FE67F4CD83" + { + "Name" = "8:ESRI.ArcGIS.Output.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Output.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_F63EDFC1AC05A488A01BEEA00747590C" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GlobeCore, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_F63EDFC1AC05A488A01BEEA00747590C" + { + "Name" = "8:ESRI.ArcGIS.GlobeCore.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.GlobeCore.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_F65D7169D1990D4824EF7C186CA6DDEA" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.CatalogUI, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_F65D7169D1990D4824EF7C186CA6DDEA" + { + "Name" = "8:ESRI.ArcGIS.CatalogUI.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.CatalogUI.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_F767F288C98E01D5BDF20D9C92047E7A" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.GeoDatabaseUI, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_F767F288C98E01D5BDF20D9C92047E7A" + { + "Name" = "8:ESRI.ArcGIS.GeoDatabaseUI.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.GeoDatabaseUI.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_F93E40D6D2218EF99E65785D9617898E" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Catalog, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_F93E40D6D2218EF99E65785D9617898E" + { + "Name" = "8:ESRI.ArcGIS.Catalog.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Catalog.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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}:_FBDF04F54F76DFD670926A0735105D32" + { + "AssemblyRegister" = "3:1" + "AssemblyIsInGAC" = "11:FALSE" + "AssemblyAsmDisplayName" = "8:ESRI.ArcGIS.Server, Version=10.6.0.0, Culture=neutral, PublicKeyToken=8fc3cc631e44ad86, processorArchitecture=MSIL" + "ScatterAssemblies" + { + "_FBDF04F54F76DFD670926A0735105D32" + { + "Name" = "8:ESRI.ArcGIS.Server.dll" + "Attributes" = "3:512" + } + } + "SourcePath" = "8:ESRI.ArcGIS.Server.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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" + { + "{1525181F-901A-416C-8A58-119130FE478E}:_6A28C5A684C34F089C43DF02FD8AB4D2" + { + "Name" = "8:#1916" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:DesktopFolder" + "Folders" + { + } + } + "{1525181F-901A-416C-8A58-119130FE478E}:_F2C0CCF6F0DA42528B4ECA58662E187A" + { + "Name" = "8:#1919" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:ProgramMenuFolder" + "Folders" + { + } + } + "{3C67513D-01DD-4637-8A68-80971EB9504F}:_F46744268A8743988F6728EF2DB091CA" + { + "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" + "Name" = "8:#1925" + "AlwaysCreate" = "11:FALSE" + "Condition" = "8:" + "Transitive" = "11:FALSE" + "Property" = "8:TARGETDIR" + "Folders" + { + } + } + } + "LaunchCondition" + { + "{836E08B8-0285-4809-BA42-01DB6754A45D}:_6FBA8B122DF94BBB874E0980852E6901" + { + "Name" = "8:ArcGIS Registry Check" + "Condition" = "8:ARC106_32=\"10.6\" OR ARC106_64=\"10.6\" OR ARC106_32=\"10.6.1\" OR ARC106_64=\"10.6.1\"" + "Message" = "8:ArcGIS Desktop 10.6 is required for this version of the MapAction Toolbar" + "InstallUrl" = "8:" + } + } + "Locator" + { + "{CF66B7F7-B7DA-4B08-A67A-233430638C9C}:_457C030EA64E46F1BC77D32A63E77DE5" + { + "Name" = "8:Search for ArcGIS 10.6 64 bit machine" + "Root" = "2:1" + "RegKey" = "8:SOFTWARE\\WOW6432Node\\ESRI\\Desktop10.6" + "Value" = "8:RealVersion" + "Property" = "8:ARC106_64" + } + "{CF66B7F7-B7DA-4B08-A67A-233430638C9C}:_A28B49EB5BF14C699919929AE354BBE0" + { + "Name" = "8:Search for ArcGIS 10.6 32 bit machine" + "Root" = "2:1" + "RegKey" = "8:SOFTWARE\\ESRI\\Desktop10.6" + "Value" = "8:RealVersion" + "Property" = "8:ARC106_32" + } + } + "MsiBootstrapper" + { + "LangId" = "3:1033" + "RequiresElevation" = "11:FALSE" + } + "Product" + { + "Name" = "8:Microsoft Visual Studio" + "ProductName" = "8:MapAction Toolbar (Installed Version)" + "ProductCode" = "8:{58455CF9-B6B3-4C41-A2ED-FE5D6E155FBD}" + "PackageCode" = "8:{3CB775A5-8980-47FE-8130-8081EA6839B1}" + "UpgradeCode" = "8:{1A25E7C3-E10F-44D6-B163-71B9626C50F8}" + "AspNetVersion" = "8:4.0.30319.0" + "RestartWWWService" = "11:FALSE" + "RemovePreviousVersions" = "11:TRUE" + "DetectNewerInstalledVersion" = "11:TRUE" + "InstallAllUsers" = "11:FALSE" + "ProductVersion" = "8:1.0.0" + "Manufacturer" = "8:MapAction_SDG" + "ARPHELPTELEPHONE" = "8:" + "ARPHELPLINK" = "8:" + "Title" = "8:MapActionToolbarInstaller" + "Subject" = "8:" + "ARPCONTACT" = "8:MapAction (Harry Gibson)" + "Keywords" = "8:" + "ARPCOMMENTS" = "8:" + "ARPURLINFOABOUT" = "8:" + "ARPPRODUCTICON" = "8:" + "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}:_68CAF170B4F74DF2BD1C71AB809AC4A3" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_29F611E2A67A40D6A1A55778C68742BF" + { + "Name" = "8:[Manufacturer]" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + } + "Values" + { + } + } + } + "Values" + { + } + } + } + } + "HKCU" + { + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5AA44FDAC523487193303EFC30C59B93" + { + "Name" = "8:Software" + "Condition" = "8:" + "AlwaysCreate" = "11:FALSE" + "DeleteAtUninstall" = "11:FALSE" + "Transitive" = "11:FALSE" + "Keys" + { + "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_4ACAFF7315424B4BB9448648977B7972" + { + "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" + { + } + "UserInterface" + { + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1239CF1031A6494FB04E59630F63DBAE" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdBasicDialogs.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_4EBC14525E2E4130B742776C45E3E209" + { + "Name" = "8:#1901" + "Sequence" = "3:1" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_10D06B46BE274BA4BA51FCE53593C0A3" + { + "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:1" + "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" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_6FB3BD3E50B047239915F0520151EB5F" + { + "Name" = "8:#1901" + "Sequence" = "3:2" + "Attributes" = "3:2" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5F4B16EA2D1544579D2D917731DBBA4E" + { + "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:1" + "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" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_8C9788FAE7504F6CA2A1164D84EA9C47" + { + "Name" = "8:#1902" + "Sequence" = "3:2" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_0116CB3F1041454D80C8434745F301B5" + { + "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:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_BB87965D1E234567889E035FBA38AA03" + { + "Name" = "8:#1902" + "Sequence" = "3:1" + "Attributes" = "3:3" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_60B66AD4570F4B93B88C452140C2EDC5" + { + "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:1" + "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" + } + } + } + } + } + "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_C364B23B550F401A9A4DD09318E9AA58" + { + "UseDynamicProperties" = "11:FALSE" + "IsDependency" = "11:FALSE" + "SourcePath" = "8:\\VsdUserInterface.wim" + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D107E29FF9154FA3B3EE7CEEE3B7859A" + { + "Name" = "8:#1900" + "Sequence" = "3:2" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_56644713AEAC4495B061350AF7708280" + { + "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:1" + "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}:_8907EED28BA4489EA418C08DC11F4A03" + { + "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:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A12E57DC3A834AC283BC68D6BB1ACB7E" + { + "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:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + } + } + "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_FFE879A388B041E79BDD4FC214DA7D9C" + { + "Name" = "8:#1900" + "Sequence" = "3:1" + "Attributes" = "3:1" + "Dialogs" + { + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_05BED0F4201147608BDE3A07D8E09166" + { + "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:1" + "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}:_08E348ABECEB43A48EFE1D7A69C5432B" + { + "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:1" + "UsePlugInResources" = "11:TRUE" + } + } + } + "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B0769B63C1EF4041BDC6091FAFC5DE8F" + { + "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:1" + "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" + } + } + } + } + } + } + "MergeModule" + { + } + "ProjectOutput" + { + "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_5580E82132F342EDB889796FAB0DBC31" + { + "SourcePath" = "8:..\\MapActionToolbar_COMTools\\obj\\Release\\MapActionToolbar_COMTools.dll" + "TargetName" = "8:" + "Tag" = "8:" + "Folder" = "8:_F46744268A8743988F6728EF2DB091CA" + "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:2" + "OutputConfiguration" = "8:" + "OutputGroupCanonicalName" = "8:Built" + "OutputProjectGuid" = "8:{7B617336-DC71-4653-AD35-56DDF5E7062D}" + "ShowKeyOutput" = "11:TRUE" + "ExcludeFilters" + { + } + } + } + } +} diff --git a/arcgis10_mapping_tools/MapActionToolbars/AboutBox.cs b/arcgis10_mapping_tools/MapActionToolbar_Addin/AboutBox.cs similarity index 95% rename from arcgis10_mapping_tools/MapActionToolbars/AboutBox.cs rename to arcgis10_mapping_tools/MapActionToolbar_Addin/AboutBox.cs index 7fa7a3dd..02d30660 100644 --- a/arcgis10_mapping_tools/MapActionToolbars/AboutBox.cs +++ b/arcgis10_mapping_tools/MapActionToolbar_Addin/AboutBox.cs @@ -1,46 +1,46 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.IO; -using System.Windows.Forms; -using System.Reflection; - - -namespace MapActionToolbars -{ - public class ma_addin_about_box : ESRI.ArcGIS.Desktop.AddIns.Button - { - private string[] m_known_toolnames = {"MapAction_Alpha_ConfigTool_ConfigTool", - "Alpha_LayoutTool_LayoutTool", - "Alpha_ExportTool_ExportTool" }; - - private string m_thisaddin_desc; - - public ma_addin_about_box() - { - AssemblyName an; - an = Assembly.GetExecutingAssembly().GetName(); - - String version_string = an.Version.ToString(); - DateTime compile_date = new DateTime(2000, 1, 1); - compile_date = compile_date.AddDays(an.Version.Build); - compile_date = compile_date.AddSeconds(2 * an.Version.Revision); - - m_thisaddin_desc = String.Format("Version {0}\n\n Compiled {1} {2}", version_string, compile_date.ToShortDateString(), compile_date.ToShortTimeString()); - } - - protected override void OnClick() - { - showDialog(); - } - - protected override void OnUpdate() - { - } - - private void showDialog() - { - MessageBox.Show(m_thisaddin_desc, "About MapAction toolbox", MessageBoxButtons.OK, MessageBoxIcon.Information); - } - } -} +using System; +using System.Collections.Generic; +using System.Text; +using System.IO; +using System.Windows.Forms; +using System.Reflection; + + +namespace MapActionToolbar_Addin +{ + public class ma_addin_about_box : ESRI.ArcGIS.Desktop.AddIns.Button + { + private string[] m_known_toolnames = {"MapAction_Alpha_ConfigTool_ConfigTool", + "Alpha_LayoutTool_LayoutTool", + "Alpha_ExportTool_ExportTool" }; + + private string m_thisaddin_desc; + + public ma_addin_about_box() + { + AssemblyName an; + an = Assembly.GetExecutingAssembly().GetName(); + + String version_string = an.Version.ToString(); + DateTime compile_date = new DateTime(2000, 1, 1); + compile_date = compile_date.AddDays(an.Version.Build); + compile_date = compile_date.AddSeconds(2 * an.Version.Revision); + + m_thisaddin_desc = String.Format("Version {0}\n\n Compiled {1} {2}", version_string, compile_date.ToShortDateString(), compile_date.ToShortTimeString()); + } + + protected override void OnClick() + { + showDialog(); + } + + protected override void OnUpdate() + { + } + + private void showDialog() + { + MessageBox.Show(m_thisaddin_desc, "About MapAction toolbox", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } +} diff --git a/arcgis10_mapping_tools/MapActionToolbars/Config.Designer.cs b/arcgis10_mapping_tools/MapActionToolbar_Addin/Config.Designer.cs similarity index 86% rename from arcgis10_mapping_tools/MapActionToolbars/Config.Designer.cs rename to arcgis10_mapping_tools/MapActionToolbar_Addin/Config.Designer.cs index 0182ae28..2dd4f7b3 100644 Binary files a/arcgis10_mapping_tools/MapActionToolbars/Config.Designer.cs and b/arcgis10_mapping_tools/MapActionToolbar_Addin/Config.Designer.cs differ diff --git a/arcgis10_mapping_tools/MapActionToolbar_Addin/Config.esriaddinx b/arcgis10_mapping_tools/MapActionToolbar_Addin/Config.esriaddinx new file mode 100644 index 00000000..5c270d87 --- /dev/null +++ b/arcgis10_mapping_tools/MapActionToolbar_Addin/Config.esriaddinx @@ -0,0 +1,38 @@ + + MapActionToolbar_Addin + {f5db27db-e505-4583-b766-1f8c8af6de27} + An addin toolbar to contain MapAction custom layout and export tools + 1.0 + Images\MapActionToolbar_Addin.png + Software Development Group + MapAction + 18/01/2020 + + + + + + + + +