From: Jean-Philippe Bruyère Date: Thu, 2 Dec 2021 07:55:35 +0000 (+0100) Subject: update vk.net to 0.2.5-beta X-Git-Tag: v0.2.4-beta~7 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=3d057e9ce965b14f498163b4e499cbf719a59f3a;p=jp%2Fvke.net.git update vk.net to 0.2.5-beta --- diff --git a/.vscode/launch.json b/.vscode/launch.json index ec51fd3..25a58aa 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -26,6 +26,17 @@ "stopAtEntry": false, "console": "internalConsole" }, + { + "name": ".NET Core Launch (ExternalMemmories)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build ExternalMemmories", + "program": "${workspaceFolder}/build/Debug/netcoreapp3.1/ExternalMemmories", + "args": [], + "cwd": "${workspaceFolder}/build/Debug/netcoreapp3.1/", + "stopAtEntry": false, + "console": "internalConsole" + }, { "name": ".NET Core Launch (Textured)", "type": "coreclr", @@ -57,7 +68,7 @@ "args": [], "cwd": "${workspaceFolder}/build/Debug/netcoreapp3.1/", "stopAtEntry": false, - "console": "internalConsole" + "console": "integratedTerminal" }, { "name": ".NET Core Launch (DistanceFieldFontTest)", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 95eda6a..4da8453 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,6 +1,20 @@ { "version": "2.0.0", "tasks": [ + { + "label": "build ExternalMemmories", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/samples/ExternalMemmories/ExternalMemmories.csproj", + "/property:GenerateFullPaths=true", + "/property:SolutionDir=${workspaceFolder}/", + "/property:Configuration=Debug", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, { "label": "build Triangle", "command": "dotnet", diff --git a/samples/ExternalMemmories/ExternalMemmories.csproj b/samples/ExternalMemmories/ExternalMemmories.csproj new file mode 100644 index 0000000..d6dbc3d --- /dev/null +++ b/samples/ExternalMemmories/ExternalMemmories.csproj @@ -0,0 +1,9 @@ + + + + Exe + + + + + diff --git a/samples/ExternalMemmories/Program.cs b/samples/ExternalMemmories/Program.cs new file mode 100644 index 0000000..2a9f404 --- /dev/null +++ b/samples/ExternalMemmories/Program.cs @@ -0,0 +1,212 @@ +using System; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices; +using SixLabors.ImageSharp; +using SixLabors.ImageSharp.PixelFormats; +using vke; +using Vulkan; +using static Vulkan.Vk; +using Image = vke.Image; + +namespace ExternalMemmories +{ + class VulkanContext : IDisposable { + public Instance instance; + public PhysicalDevice phy; + public Device dev; + + Queue gQ; + vke.DebugUtils.Messenger dbgmsg; + public VulkanContext () { + + instance = new Instance ( + new string[] {"VK_LAYER_KHRONOS_validation"}, + new string[] { + Ext.I.VK_EXT_debug_utils, + Ext.I.VK_KHR_get_physical_device_properties2, + Ext.I.VK_KHR_external_memory_capabilities + } + ); + dbgmsg = new vke.DebugUtils.Messenger (instance, + VkDebugUtilsMessageTypeFlagsEXT.PerformanceEXT | + VkDebugUtilsMessageTypeFlagsEXT.ValidationEXT | + VkDebugUtilsMessageTypeFlagsEXT.GeneralEXT, + //VkDebugUtilsMessageSeverityFlagsEXT.VerboseEXT | + VkDebugUtilsMessageSeverityFlagsEXT.WarningEXT | + VkDebugUtilsMessageSeverityFlagsEXT.ErrorEXT); + + phy = instance.GetAvailablePhysicalDevice ().FirstOrDefault (p => p.HasSwapChainSupport); + + dev = new Device (phy); + gQ = new Queue (dev, Vulkan.VkQueueFlags.Graphics); + VkPhysicalDeviceFeatures features = default; + + dev.Activate (features, new string[] { + Ext.D.VK_KHR_external_memory, + Ext.D.VK_EXT_external_memory_host, + Ext.D.VK_EXT_external_memory_dma_buf, + Ext.D.VK_KHR_external_memory_fd, + }); + } + public bool TryGetImageFormatProperties (VkFormat format, VkImageTiling tiling, + VkImageUsageFlags usage, out VkImageFormatProperties properties, + VkImageType type = VkImageType.Image2D, VkImageCreateFlags flags = 0) { + VkResult result = vkGetPhysicalDeviceImageFormatProperties (phy.Handle, format, type, + tiling, usage, flags, out properties); + return result == VkResult.Success; + } + public static VkFormatFeatureFlags imageFormatFlags = + VkFormatFeatureFlags.SampledImage| + VkFormatFeatureFlags.ColorAttachment| + VkFormatFeatureFlags.TransferSrc| + VkFormatFeatureFlags.TransferDst; + public static VkImageUsageFlags imageUsageFlags = + //VkImageUsageFlags.Storage| + VkImageUsageFlags.TransferSrc| + VkImageUsageFlags.TransferDst; + public void listFormat () { + + foreach (VkFormat format in Enum.GetValues(typeof(VkFormat))) { + if (format == VkFormat.G16B16R163plane444UnormKHR) + break; + + vkGetPhysicalDeviceFormatProperties (phy.Handle, format, out VkFormatProperties props); + if (props.linearTilingFeatures == (VkFormatFeatureFlags)0 && props.optimalTilingFeatures == (VkFormatFeatureFlags)0 && props.bufferFeatures == (VkFormatFeatureFlags)0) + continue; + bool linSupported = (props.linearTilingFeatures & imageFormatFlags) == imageFormatFlags; + bool optSupported = (props.optimalTilingFeatures & imageFormatFlags) == imageFormatFlags; + + Console.ForegroundColor = ConsoleColor.Yellow; + Console.WriteLine ($"{format}"); + Console.ResetColor(); + + + VkPhysicalDeviceImageFormatInfo2 imgFormatInfo2 = VkPhysicalDeviceImageFormatInfo2.New(); + VkImageFormatProperties2 imgProps2 = VkImageFormatProperties2.New(); + + VkPhysicalDeviceExternalImageFormatInfo extImgFormatInfo = VkPhysicalDeviceExternalImageFormatInfo.New(); + VkExternalImageFormatProperties extProps = VkExternalImageFormatProperties.New (); + + imgFormatInfo2.format = format; + imgFormatInfo2.tiling = VkImageTiling.Optimal; + imgFormatInfo2.type = VkImageType.Image2D; + imgFormatInfo2.usage = imageUsageFlags; + extImgFormatInfo.handleType = VkExternalMemoryHandleTypeFlags.DmaBufEXT; + + using (PinnedObjects pinCtx = new PinnedObjects()) { + imgFormatInfo2.pNext = extImgFormatInfo.Pin (pinCtx); + imgProps2.pNext = extProps.Pin (pinCtx); + + foreach (VkExternalMemoryHandleTypeFlags handleType in Enum.GetValues (typeof(VkExternalMemoryHandleTypeFlags))) { + extImgFormatInfo.handleType = handleType; + + VkResult res = vkGetPhysicalDeviceImageFormatProperties2 (phy.Handle, ref imgFormatInfo2, out imgProps2); + if (res == VkResult.Success) { + Console.WriteLine ($"\t{handleType}: f:{extProps.externalMemoryProperties.externalMemoryFeatures} c:{extProps.externalMemoryProperties.compatibleHandleTypes} e:{extProps.externalMemoryProperties.exportFromImportedHandleTypes}"); + } + } + } + + + /*if (optSupported) { + if (TryGetImageFormatProperties (format, VkImageTiling.Optimal, imageUsageFlags, out VkImageFormatProperties imgProps)) { + Console.Write ($"{imgProps.maxExtent.width + "x"+ imgProps.maxExtent.height,13}"); + } else { + Console.Write (new string(' ', 13)); + } + } else + Console.Write (new string(' ', 13));*/ + + Console.Write (linSupported ? " LIN " : new string(' ',5)); + Console.Write (optSupported ? " OPT " : new string(' ',5)); + //Console.Write ((props.bufferFeatures & formatFlags) > 0 ? " BUFF" : new string(' ',5)); + Console.WriteLine (props.bufferFeatures > 0 ? " BUFF" : ""); + Console.WriteLine (); + + } + } + + public void Dispose() + { + dev.Dispose(); + dbgmsg.Dispose(); + instance.Dispose(); + } + + public Image CreateExportableImage (uint width, uint height, VkExternalMemoryHandleTypeFlags handleTypes) { + Image tmp = new Image (dev, VkFormat.R8g8b8a8Unorm, imageUsageFlags, VkMemoryPropertyFlags.DeviceLocal, + width, height, handleTypes); + using (Image stagging = Image.Load (dev, "/mnt/devel/vke.net/datas/textures/texture.jpg", imageUsageFlags)) { + using (CommandPool cmdPool = gQ.CreateCommandPool ()) { + PrimaryCommandBuffer cmd = cmdPool.AllocateAndStart(VkCommandBufferUsageFlags.OneTimeSubmit); + tmp.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferDstOptimal); + stagging.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferSrcOptimal); + stagging.BlitTo (cmd, tmp); + tmp.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferSrcOptimal); + gQ.EndSubmitAndWait(cmd, true); + } + } + + return tmp; + } + + public void SaveDeviceImage (Image img) { + + using (Image stagging = new Image (dev, VkFormat.R8g8b8a8Unorm, imageUsageFlags, VkMemoryPropertyFlags.HostVisible, img.Width, img.Height, VkImageType.Image2D, VkSampleCountFlags.SampleCount1, VkImageTiling.Linear)) { + using (CommandPool cmdPool = gQ.CreateCommandPool ()) { + PrimaryCommandBuffer cmd = cmdPool.AllocateAndStart(VkCommandBufferUsageFlags.OneTimeSubmit); + img.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferSrcOptimal); + stagging.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferDstOptimal); + img.BlitTo (cmd, stagging); + stagging.SetLayout (cmd, VkImageAspectFlags.Color, VkImageLayout.TransferSrcOptimal); + gQ.EndSubmitAndWait(cmd, true); + } + + stagging.Map(); + + using (Image image = new Image((int)img.Width, (int)img.Height)) { + if(image.TryGetSinglePixelSpan(out var pixelSpan)) { + byte[] rgbaBytes = MemoryMarshal.AsBytes(pixelSpan).ToArray(); + System.Runtime.InteropServices.Marshal.Copy (stagging.MappedData, rgbaBytes, 0, rgbaBytes.Length); + using (var im = SixLabors.ImageSharp.Image.LoadPixelData(rgbaBytes, (int)img.Width, (int)img.Height)) { + im.Save ("test.png"); + } + } + } + } + } + } + class Program + { + static void Main(string[] args) + { + + VulkanContext ctx1 = new VulkanContext(); + VulkanContext ctx2 = new VulkanContext(); + ctx1.listFormat(); + + VkExternalMemoryHandleTypeFlags handleType = VkExternalMemoryHandleTypeFlags.HostAllocationEXT; + + Image exportableImg = ctx1.CreateExportableImage (512, 512, handleType); + ctx1.SaveDeviceImage (exportableImg); + + /*VkMemoryHostPointerPropertiesEXT hostPointerProps = VkMemoryHostPointerPropertiesEXT.New(); + IntPtr handle = (IntPtr)exportableImg.Memory.Handle; + VkResult res = vkGetMemoryHostPointerPropertiesEXT (ctx1.dev.Handle, handleType, handle, + out hostPointerProps);*/ + + Image importedImg = exportableImg.ExportTo (ctx2.dev, handleType); + + + //ctx2.SaveDeviceImage (importedImg); + + importedImg.Dispose(); + exportableImg.Dispose(); + + ctx2.Dispose(); + ctx1.Dispose(); + + } + } +} diff --git a/samples/ImmutableSampler/ImmutableSampler.csproj b/samples/ImmutableSampler/ImmutableSampler.csproj new file mode 100644 index 0000000..35e3d84 --- /dev/null +++ b/samples/ImmutableSampler/ImmutableSampler.csproj @@ -0,0 +1,2 @@ + + diff --git a/samples/ImmutableSampler/README.md b/samples/ImmutableSampler/README.md new file mode 100644 index 0000000..ece9973 --- /dev/null +++ b/samples/ImmutableSampler/README.md @@ -0,0 +1,34 @@ +### Enabling extensions + +The **`VkWindow`** class provides two properties that you may override to enable additional extensions. + +```csharp +public override string[] EnabledInstanceExtensions => new string[] { + Ext.I.VK_EXT_debug_utils +}; +public override string[] EnabledDeviceExtensions => new string[] { + Ext.D.VK_KHR_swapchain, +}; +``` +Extension's names are organized in two subclasses of the `Ext` static class, one for the instance extensions (**`Ext.I`**) and one for the device ones (**`Ext.D`**). +### Enabling features + +Override the **`configureEnabledFeatures`** method of **`VkWindow`** to enable features. This method is called just after +the physical device selection, available features list is automatically queried from it and provided as the first argument. +```csharp +protected override void configureEnabledFeatures ( + VkPhysicalDeviceFeatures available_features, + ref VkPhysicalDeviceFeatures enabled_features) { + + enabled_features.samplerAnisotropy = available_features.samplerAnisotropy; +} +``` +### Creating queues + +To create queues, override the **`createQueues`** method of **`VkWindow`**. This function is called before the logical device creation and will take care of physically available queues, creating duplicates if count exceed availability. The `base` method will create a default presentable queue. + +```csharp +protected override void createQueues () { + base.createQueues (); + transferQ = new Queue (dev, VkQueueFlags.Transfer); +} \ No newline at end of file diff --git a/samples/ImmutableSampler/main.cs b/samples/ImmutableSampler/main.cs new file mode 100644 index 0000000..6496adb --- /dev/null +++ b/samples/ImmutableSampler/main.cs @@ -0,0 +1,217 @@ +using System; +using System.Numerics; +using System.Runtime.InteropServices; +using Glfw; +using vke; +using Vulkan; +using Image = vke.Image; + +namespace Textured { + /// + /// Simple textured quad sample + /// + class Program : SampleBase { + static void Main (string[] args) { +#if DEBUG + Instance.VALIDATION = true; +#endif + using (Program vke = new Program ()) { + vke.Run (); + } + } + protected override void configureEnabledFeatures (VkPhysicalDeviceFeatures available_features, ref VkPhysicalDeviceFeatures enabled_features) { + base.configureEnabledFeatures (available_features, ref enabled_features); + enabled_features.textureCompressionBC = available_features.textureCompressionBC; + enabled_features.textureCompressionASTC_LDR = available_features.textureCompressionASTC_LDR; + } + + float rotSpeed = 0.01f, zoomSpeed = 0.01f; + float rotX, rotY, rotZ = 0f, zoom = 1f; + + struct Matrices { + public Matrix4x4 projection; + public Matrix4x4 view; + public Matrix4x4 model; + } + + Matrices matrices; + + HostBuffer uboMats; + GPUBuffer vbo; + GPUBuffer ibo; + + DescriptorPool descriptorPool; + DescriptorSetLayout dsLayout; + DescriptorSet descriptorSet; + + GraphicPipeline pipeline; + FrameBuffers frameBuffers; + + + + + float[] vertices = { + 1.0f, 1.0f, 0.0f , 1.0f, 0.0f, + -1.0f, 1.0f, 0.0f , 0.0f, 0.0f, + -1.0f, -1.0f, 0.0f , 0.0f, 1.0f, + 1.0f, -1.0f, 0.0f , 1.0f, 1.0f, + }; + ushort[] indices = { 0, 1, 2, 2, 0, 3 }; + string imgPathe => + vke.samples.Utils.GetDataFile ("textures/texture.jpg"); + Image texture; + protected override void initVulkan () { + base.initVulkan (); + + cmds = cmdPool.AllocateCommandBuffer(swapChain.ImageCount); + + texture = Image.Load (presentQueue, cmdPool, imgPathe, VkFormat.R8g8b8a8Unorm, imgProp, tiling, genMipMaps); + texture.CreateView(); + texture.CreateSampler(); + + + vbo = new GPUBuffer (presentQueue, cmdPool, VkBufferUsageFlags.VertexBuffer, vertices); + ibo = new GPUBuffer (presentQueue, cmdPool, VkBufferUsageFlags.IndexBuffer, indices); + + descriptorPool = new DescriptorPool (dev, 1, + new VkDescriptorPoolSize (VkDescriptorType.UniformBuffer), + new VkDescriptorPoolSize (VkDescriptorType.CombinedImageSampler) + ); + + IntPtr pImmutableSampler = texture.Descriptor.sampler.Pin(); + + VkDescriptorSetLayoutBinding dslbImmutable = + new VkDescriptorSetLayoutBinding (1, VkShaderStageFlags.Fragment, VkDescriptorType.CombinedImageSampler); + dslbImmutable.pImmutableSamplers = pImmutableSampler; + + + dsLayout = new DescriptorSetLayout (dev, 0, + new VkDescriptorSetLayoutBinding (0, VkShaderStageFlags.Vertex, VkDescriptorType.UniformBuffer), + new VkDescriptorSetLayoutBinding (1, VkShaderStageFlags.Fragment, VkDescriptorType.CombinedImageSampler)); + + using (GraphicPipelineConfig cfg = GraphicPipelineConfig.CreateDefault (VkPrimitiveTopology.TriangleList, VkSampleCountFlags.SampleCount4)) { + + cfg.Layout = new PipelineLayout (dev, dsLayout); + cfg.RenderPass = new RenderPass (dev, swapChain.ColorFormat, dev.GetSuitableDepthFormat (), cfg.Samples); + + cfg.AddVertexBinding (0, 5 * sizeof (float)); + cfg.AddVertexAttributes (0, VkFormat.R32g32b32Sfloat, VkFormat.R32g32Sfloat); + + cfg.AddShader (dev, VkShaderStageFlags.Vertex, "#shaders.main.vert.spv"); + cfg.AddShader (dev, VkShaderStageFlags.Fragment, "#shaders.main.frag.spv"); + + pipeline = new GraphicPipeline (cfg); + } + + + uboMats = new HostBuffer (dev, VkBufferUsageFlags.UniformBuffer, matrices); + uboMats.Map ();//permanent map + + descriptorSet = descriptorPool.Allocate (dsLayout); + + DescriptorSetWrites uboUpdate = new DescriptorSetWrites (descriptorSet, dsLayout); + uboUpdate.Write (dev, uboMats.Descriptor, texture.Descriptor); + } + + void buildCommandBuffers () { + dev.WaitIdle (); + cmdPool.Reset(); + for (int i = 0; i < swapChain.ImageCount; ++i) { + PrimaryCommandBuffer cmd = cmds[i]; + FrameBuffer fb = frameBuffers[i]; + + cmd.Start(); + + pipeline.RenderPass.Begin (cmd, fb); + + cmd.SetViewport (fb.Width, fb.Height); + cmd.SetScissor (fb.Width, fb.Height); + cmd.BindDescriptorSet (pipeline.Layout, descriptorSet); + + pipeline.Bind (cmd); + + cmd.BindVertexBuffer (vbo, 0); + cmd.BindIndexBuffer (ibo, VkIndexType.Uint16); + cmd.DrawIndexed ((uint)indices.Length); + + pipeline.RenderPass.End (cmd); + + cmd.End (); + } + } + + + VkMemoryPropertyFlags imgProp = VkMemoryPropertyFlags.DeviceLocal; + bool genMipMaps = true; + VkImageTiling tiling = VkImageTiling.Optimal; + + + + void updateMatrices () { + matrices.projection = Matrix4x4.CreatePerspectiveFieldOfView (Utils.DegreesToRadians (60f), (float)swapChain.Width / (float)swapChain.Height, 0.1f, 256.0f); + matrices.view = Matrix4x4.CreateTranslation (0, 0, -2.5f * zoom); + matrices.model = + Matrix4x4.CreateFromAxisAngle (Vector3.UnitZ, rotZ) * + Matrix4x4.CreateFromAxisAngle (Vector3.UnitY, rotY) * + Matrix4x4.CreateFromAxisAngle (Vector3.UnitX, rotX); + + uboMats.Update (matrices, (uint)Marshal.SizeOf ()); + } + + public override void UpdateView () { + updateMatrices (); + updateViewRequested = false; + } + + protected override void onMouseMove (double xPos, double yPos) { + double diffX = lastMouseX - xPos; + double diffY = lastMouseY - yPos; + if (GetButton (MouseButton.Left) == InputAction.Press) { + rotY -= rotSpeed * (float)diffX; + rotX += rotSpeed * (float)diffY; + } else if (GetButton (MouseButton.Right) == InputAction.Press) { + zoom += zoomSpeed * (float)diffY; + } + + updateViewRequested = true; + } + + protected override void onKeyDown (Key key, int scanCode, Modifier modifiers) { + switch (key) { + default: + base.onKeyDown (key, scanCode, modifiers); + break; + } + } + + protected override void OnResize () { + base.OnResize(); + + updateMatrices (); + + frameBuffers?.Dispose(); + frameBuffers = pipeline.RenderPass.CreateFrameBuffers(swapChain); + + buildCommandBuffers (); + } + + protected override void Dispose (bool disposing) { + dev.WaitIdle (); + + if (disposing) { + if (!isDisposed) { + pipeline.Dispose (); + dsLayout.Dispose (); + frameBuffers.Dispose(); + descriptorPool.Dispose (); + texture?.Dispose (); + vbo.Dispose (); + ibo.Dispose (); + uboMats.Dispose (); + } + } + + base.Dispose (disposing); + } + } +} diff --git a/samples/ImmutableSampler/mono_crash.21acb2c5e9.0.json b/samples/ImmutableSampler/mono_crash.21acb2c5e9.0.json new file mode 100644 index 0000000..bb0d242 --- /dev/null +++ b/samples/ImmutableSampler/mono_crash.21acb2c5e9.0.json @@ -0,0 +1,26588 @@ +{ + "protocol_version" : "0.0.6", + "configuration" : { + "version" : "(6.12.0.90) (tarball)", + "tlc" : "__thread", + "sigsgev" : "altstack", + "notifications" : "epoll", + "architecture" : "amd64", + "disabled_features" : "none", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "610", + "suspend" : "hybrid" + }, + "memory" : { + "minor_gc_time" : "150740364", + "major_gc_time" : "8205328", + "minor_gc_count" : "2799", + "major_gc_count" : "24", + "major_gc_time_concurrent" : "136937974" + }, + "threads" : [ + { + "is_managed" : true, + "offset_free_hash" : "0xa8899b942", + "offset_rich_hash" : "0xa8899bd73", + "crashed" : false, + "native_thread_id" : "0x7f063e123fc0", + "thread_info_addr" : "0x1b7f9d0", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7f063e6267b2", + "SP" : "0x7ffc17d27c30", + "BP" : "0x1b75c20" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002051", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00044" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x600203d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x600203c", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002037", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00019" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002039", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "3FCD524B-4943-4503-B022-3979F206DFCF", + "token" : "0x6000006", + "native_offset" : "0x0", + "filename" : "OmniSharp.exe", + "sizeofimage" : "0x8000", + "timestamp" : "0x9090bff7", + "il_offset" : "0x001aa" + } +, + { + "is_managed" : "true", + "guid" : "64676931-5B65-48DC-B5F6-B23C2C2CC918", + "token" : "0x60000d5", + "native_offset" : "0x0", + "filename" : "OmniSharp.Host.dll", + "sizeofimage" : "0x1a000", + "timestamp" : "0xe30e455e", + "il_offset" : "0x0000b" + } +, + { + "is_managed" : "true", + "guid" : "ABE0FC67-97A9-4A73-931E-EA5CECAFFD78", + "token" : "0x600031f", + "native_offset" : "0x0", + "filename" : "McMaster.Extensions.CommandLineUtils.dll", + "sizeofimage" : "0x2a000", + "timestamp" : "0xa23345f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "ABE0FC67-97A9-4A73-931E-EA5CECAFFD78", + "token" : "0x6000322", + "native_offset" : "0x0", + "filename" : "McMaster.Extensions.CommandLineUtils.dll", + "sizeofimage" : "0x2a000", + "timestamp" : "0xa23345f1", + "il_offset" : "0x000bf" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6004619", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "ABE0FC67-97A9-4A73-931E-EA5CECAFFD78", + "token" : "0x60000dd", + "native_offset" : "0x0", + "filename" : "McMaster.Extensions.CommandLineUtils.dll", + "sizeofimage" : "0x2a000", + "timestamp" : "0xa23345f1", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "ABE0FC67-97A9-4A73-931E-EA5CECAFFD78", + "token" : "0x60000dc", + "native_offset" : "0x0", + "filename" : "McMaster.Extensions.CommandLineUtils.dll", + "sizeofimage" : "0x2a000", + "timestamp" : "0xa23345f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "64676931-5B65-48DC-B5F6-B23C2C2CC918", + "token" : "0x6000002", + "native_offset" : "0x0", + "filename" : "OmniSharp.Host.dll", + "sizeofimage" : "0x1a000", + "timestamp" : "0xe30e455e", + "il_offset" : "0x00081" + } +, + { + "is_managed" : "true", + "guid" : "3FCD524B-4943-4503-B022-3979F206DFCF", + "token" : "0x6000004", + "native_offset" : "0x0", + "filename" : "OmniSharp.exe", + "sizeofimage" : "0x8000", + "timestamp" : "0x9090bff7", + "il_offset" : "0x00028" + } +, + { + "is_managed" : "true", + "guid" : "64676931-5B65-48DC-B5F6-B23C2C2CC918", + "token" : "0x6000020", + "native_offset" : "0x0", + "filename" : "OmniSharp.Host.dll", + "sizeofimage" : "0x1a000", + "timestamp" : "0xe30e455e", + "il_offset" : "0x0001c" + } +, + { + "is_managed" : "true", + "guid" : "3FCD524B-4943-4503-B022-3979F206DFCF", + "token" : "0x6000001", + "native_offset" : "0x0", + "filename" : "OmniSharp.exe", + "sizeofimage" : "0x8000", + "timestamp" : "0x9090bff7", + "il_offset" : "0x00005" + } +, + { + "is_managed" : "true", + "guid" : "3FCD524B-4943-4503-B022-3979F206DFCF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "OmniSharp.exe", + "sizeofimage" : "0x8000", + "timestamp" : "0x9090bff7", + "il_offset" : "0x0002a" + } + + ], + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x460319", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x64aeaa", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x64c690", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x655757", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x4b7ed5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f063e62b140", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f063e6267b2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7013e5", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x65fb59", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x66111f", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x6618f8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x6525fb", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x5eae93", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0xd5ed0e810", + "offset_rich_hash" : "0xd5ed0ed28", + "crashed" : false, + "native_thread_id" : "0x7f05a67f3700", + "thread_info_addr" : "0x7f062c004680", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f063e62a08c", + "SP" : "0x7f05a67f2350", + "BP" : "0x82" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x6003e17", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00012" + } +, + { + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60041bc", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00027" + } +, + { + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60041bb", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x002d1" + } +, + { + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60043b1", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002399", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00025" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002395", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002398", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002401", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00034" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002397", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0004a" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x600250d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001f1c", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00025" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec1", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0002b" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001f1d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0000f" + } +, + { + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0002a" + } + + ], +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x460319", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x64aeaa", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x64c690", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x655757", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x4b7ed5", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f063e62b140", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f063e62a08c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f063af6ec0b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f063af6d81e", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bdbb0700", +"thread_info_addr" : "0x7f063000d2d0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f063e62a08c", + "SP" : "0x7f05bdbaf350", + "BP" : "0xf" +}, +"managed_frames" : [ +{ + "is_managed" : "false", + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x6003e17", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00012" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60041bc", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00027" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60041bb", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x002d1" + } +, +{ + "is_managed" : "true", + "guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", + "token" : "0x60043b1", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x286000", + "timestamp" : "0xff5f288c", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002399", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00025" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002395", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002398", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00071" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002401", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00034" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6002397", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0004a" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x600250d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001f1c", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00025" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00071" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001ec1", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0002b" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x6001f1d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0000f" + } +, +{ + "is_managed" : "true", + "guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x472000", + "timestamp" : "0xe43f23f1", + "il_offset" : "0x0002a" + } + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059b31b700", +"thread_info_addr" : "0x7f05e045e6e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059b31acb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a396e700", +"thread_info_addr" : "0x7f05c40aeb60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a396dcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ad3e9700", +"thread_info_addr" : "0x7f05d80b4ad0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ad3e8350", +"BP" : "0x77" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05af3f9700", +"thread_info_addr" : "0x7f0620014900", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05af3f8350", +"BP" : "0x59" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x71cb46c3c", +"offset_rich_hash" : "0x71cb46d3d", +"crashed" : false, +"native_thread_id" : "0x7f061a6d7700", +"thread_info_addr" : "0x7f0608000b60", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7f063e626ad8", +"SP" : "0x7f061a6d6690", +"BP" : "0xa90860" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f43", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "DB71A9FB-86DD-481B-8E3E-56AEB4F7940D", +"token" : "0x6000109", +"native_offset" : "0x0", +"filename" : "OmniSharp.Shared.dll", +"sizeofimage" : "0x14000", +"timestamp" : "0xe904f920", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e626ad8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70138b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70bd74", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x652870", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5ea22b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bc9a7700", +"thread_info_addr" : "0x7f05f4029910", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bc9a6350", +"BP" : "0x18" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05be9b7700", +"thread_info_addr" : "0x7f05a8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05be9b6350", +"BP" : "0x7" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a75fa700", +"thread_info_addr" : "0x7f0610042250", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a75f9350", +"BP" : "0x7b" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ae1f0700", +"thread_info_addr" : "0x7f05b400bbc0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ae1ef350", +"BP" : "0x70" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x9bfc75a38", +"offset_rich_hash" : "0x9bfc75bc7", +"crashed" : false, +"native_thread_id" : "0x7f063a1ff700", +"thread_info_addr" : "0x7f0620000b60", +"thread_name" : "Timer-Scheduler", +"ctx" : { +"IP" : "0x7f063e626ad8", +"SP" : "0x7f063a1fdf40", +"BP" : "0x1b74f70" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002051", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600203d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600203c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002037", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600203a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60020f6", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e626ad8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70138b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66117e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6618f8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6525fb", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5eae93", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f0599f07700", +"thread_info_addr" : "0x7f060e28c670", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f0599f06cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f063ad54700", +"thread_info_addr" : "0x7f062c000b60", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7f063e626ad8", +"SP" : "0x7f063ad53bd0", +"BP" : "0xa90860" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e626ad8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70138b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70bd74", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a73c2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bd7ae700", +"thread_info_addr" : "0x7f062c0065b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bd7ad350", +"BP" : "0x10" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a63f1700", +"thread_info_addr" : "0x4714810", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a63f0350", +"BP" : "0x84" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05e5f8e700", +"thread_info_addr" : "0x7f05c4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05e5f8dcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a356c700", +"thread_info_addr" : "0x7f05cc0d40b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a356bcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05acfe7700", +"thread_info_addr" : "0x7f05dc002640", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05acfe6350", +"BP" : "0x79" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f06182b4700", +"thread_info_addr" : "0x7f05e0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f06182b3cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05aeff7700", +"thread_info_addr" : "0x7f06280e4800", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05aeff6350", +"BP" : "0x63" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f061a2d5700", +"thread_info_addr" : "0x7f0600000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f061a2d4cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bc5a5700", +"thread_info_addr" : "0x7f05fc0163e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bc5a4350", +"BP" : "0x1a" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05be5b5700", +"thread_info_addr" : "0x7f05d80ccc70", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05be5b4350", +"BP" : "0xa" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a71f8700", +"thread_info_addr" : "0x7f0620015c20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a71f7350", +"BP" : "0x7d" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05addee700", +"thread_info_addr" : "0x7f05b80148e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05added350", +"BP" : "0x72" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05afdfe700", +"thread_info_addr" : "0x7f060005d340", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05afdfd350", +"BP" : "0x28" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f058b0ff700", +"thread_info_addr" : "0x7f05dc51ece0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f058b0fecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bd3ac700", +"thread_info_addr" : "0x33e4db0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bd3ab350", +"BP" : "0x89" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f06191d3700", +"thread_info_addr" : "0x7f05f8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f06191d2cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a7fff700", +"thread_info_addr" : "0x7f05fc029000", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a7ffe350", +"BP" : "0x7a" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x90c3917e4", +"offset_rich_hash" : "0x90c391adc", +"crashed" : false, +"native_thread_id" : "0x7f063ab4f700", +"thread_info_addr" : "0x7f0630000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e626ad8", +"SP" : "0x7f063ab4dcb0", +"BP" : "0xa81000" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002052", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002044", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002045", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60020db", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fea", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fe8", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00021" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fd0", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00074" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fe5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e626ad8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x70138b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65f37c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x661849", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6525fb", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5eae93", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a316a700", +"thread_info_addr" : "0x7f05d426aa10", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a3169cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05acbe5700", +"thread_info_addr" : "0x7f05ec007f00", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05acbe4cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05aebf5700", +"thread_info_addr" : "0x7f05b000ee50", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05aebf4350", +"BP" : "0x13" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f063bb0f700", +"thread_info_addr" : "0x7f0634000b60", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x7f063e629174", +"SP" : "0x7f063bb0ed30", +"BP" : "0xa81480" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629174", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629278", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69660f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05be1b3700", +"thread_info_addr" : "0x7f05cc0d8ce0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05be1b2350", +"BP" : "0x9" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a6df6700", +"thread_info_addr" : "0x7f06280d42f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a6df5350", +"BP" : "0x7f" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ad9ec700", +"thread_info_addr" : "0x7f05c4012fb0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ad9eb350", +"BP" : "0x74" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a3f71700", +"thread_info_addr" : "0x7f05b000c680", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a3f70cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05af9fc700", +"thread_info_addr" : "0x7f060800c770", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05af9fb350", +"BP" : "0x2b" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059ab8e700", +"thread_info_addr" : "0x7f05f44c6e20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059ab8dcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f058acfd700", +"thread_info_addr" : "0x7f05ede8b770", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f058acfccb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bcfaa700", +"thread_info_addr" : "0x7f05e0010030", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bcfa9350", +"BP" : "0x15" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05e6e72700", +"thread_info_addr" : "0x7f05d8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05e6e71cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05befba700", +"thread_info_addr" : "0x7f05b8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05befb9350", +"BP" : "0x4" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a7bfd700", +"thread_info_addr" : "0x7f060000cca0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a7bfccb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f0618d90700", +"thread_info_addr" : "0x7f05f4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f0618d8fcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1b27ce3eaa", +"offset_rich_hash" : "0x1b27ce44de", +"crashed" : false, +"native_thread_id" : "0x7f05ac7e3700", +"thread_info_addr" : "0x7f05f401c4d0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f05ac7e0f80", +"BP" : "0x1b774a0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002051", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600203d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600203c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002037", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002039", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000dc5", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00053" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000cc5", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000cc8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000f12", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x000d3" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000f13", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000efe", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000efc", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6000efb", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x6000036", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x0007b" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x60000e3", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x600017b", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00042" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x6000051", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x0001b" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x6000050", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x00020" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x600004e", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "54ADA468-6EC2-4356-B119-FE112847CE6F", +"token" : "0x6000176", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x22000", +"timestamp" : "0xd77c4d4d", +"il_offset" : "0x00073" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004633", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004632", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600245b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60023ae", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00052" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002392", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002295", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600240d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002419", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60020fd", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fe8", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fd0", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00074" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fe5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6618f8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6525fb", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5eae93", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ae7f3700", +"thread_info_addr" : "0x7f05b4005220", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ae7f2350", +"BP" : "0x12" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f063a94a700", +"thread_info_addr" : "0x7f0624000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f063a949cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059a50a700", +"thread_info_addr" : "0x7f05f8d3c8f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059a509cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bddb1700", +"thread_info_addr" : "0x7f061c00b170", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bddb0350", +"BP" : "0xc" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a69f4700", +"thread_info_addr" : "0x7f0630047680", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a69f3350", +"BP" : "0x81" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a3b6f700", +"thread_info_addr" : "0x7f05c80c7880", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a3b6ecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ad5ea700", +"thread_info_addr" : "0x7f05cc0d2210", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ad5e9350", +"BP" : "0x76" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05e7fff700", +"thread_info_addr" : "0x7f05dc000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05e7ffecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05af5fa700", +"thread_info_addr" : "0x7f06140ab1e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05af5f9350", +"BP" : "0x4b" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xb52cfa564", +"offset_rich_hash" : "0xb52cfa7f0", +"crashed" : false, +"native_thread_id" : "0x7f061a9fe700", +"thread_info_addr" : "0x7f0610000b60", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f061a9fd2c0", +"BP" : "0x1b75980" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001efc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001eef", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e41", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b85", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b80", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00009" +} +, +{ +"is_managed" : "true", +"guid" : "93D49E4C-37E6-4B72-A22F-629901CA56D9", +"token" : "0x600036a", +"native_offset" : "0x0", +"filename" : "Microsoft.CodeAnalysis.Razor.Workspaces.dll", +"sizeofimage" : "0x32000", +"timestamp" : "0xcc81e431", +"il_offset" : "0x00001" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69a8cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5e8dc3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x21acb2c5e9", +"offset_rich_hash" : "0x21acb2e1be", +"crashed" : true, +"native_thread_id" : "0x7f05e67cf700", +"thread_info_addr" : "0x7f05cc000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f063e160ce1", +"SP" : "0x7f05e67cb590", +"BP" : "0x4" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004bf7", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600142b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x00002" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x6000a7d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x0008e" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x6000269", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600026f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x00039" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600026a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x0000d" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600027f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600032d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x00515" +} +, +{ +"is_managed" : "true", +"guid" : "68BF94E7-BB67-4A77-BBB8-CBBB6512D102", +"token" : "0x600033e", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x154000", +"timestamp" : "0x988ed264", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6001665", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002558", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x002fc" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014df", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002553", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014dd", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x600254f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x001f5" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014d8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x600254d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0015c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014d7", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x600254b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00187" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014d2", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00061" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002549", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0005f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004619", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014ad", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002547", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x002d0" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600460e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60014a6", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002541", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0041d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004633", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6004632", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002452", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60024e2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002527", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655965", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b8bec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b8dd9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4626d5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b800f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e160ce1", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e14a537", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x718ed4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6fc0f1", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x718dbb", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x71943d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x71947a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x60ba58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x59611e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5d0496", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5dcf4b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bcba8700", +"thread_info_addr" : "0x7f05e803c620", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bcba7350", +"BP" : "0x17" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bebb8700", +"thread_info_addr" : "0x7f05b4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bebb7350", +"BP" : "0x6" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a77fb700", +"thread_info_addr" : "0x7f060800d9e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a77facb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05ac3e1700", +"thread_info_addr" : "0x7f05f80a42a0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05ac3e0cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ae3f1700", +"thread_info_addr" : "0x7f05a80048a0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ae3f0350", +"BP" : "0x6e" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059a108700", +"thread_info_addr" : "0x7f06004b4780", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059a107cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f063a745700", +"thread_info_addr" : "0x7f0628000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f063a744cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bd9af700", +"thread_info_addr" : "0x7f062813c460", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bd9ae350", +"BP" : "0xd" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a65f2700", +"thread_info_addr" : "0x7f063400aca0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a65f1350", +"BP" : "0x83" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059b11a700", +"thread_info_addr" : "0x7f05ed8bab10", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059b119cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05e618f700", +"thread_info_addr" : "0x7f05d0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05e618ecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a376d700", +"thread_info_addr" : "0x7f05d052f170", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a376ccb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ad1e8700", +"thread_info_addr" : "0x7f05d4005240", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ad1e7350", +"BP" : "0x78" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f06184b5700", +"thread_info_addr" : "0x7f05ec000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f06184b4cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05af1f8700", +"thread_info_addr" : "0x7f061c04dbf0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05af1f7350", +"BP" : "0x5a" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f0618aba700", +"thread_info_addr" : "0x7f05e8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f0618ab9cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f061a4d6700", +"thread_info_addr" : "0x7f060c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f061a4d5cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bc7a6700", +"thread_info_addr" : "0x7f05f0985800", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bc7a5350", +"BP" : "0x19" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05be7b6700", +"thread_info_addr" : "0x7f05d09c27b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05be7b5350", +"BP" : "0x8" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a73f9700", +"thread_info_addr" : "0x7f0614267960", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a73f8350", +"BP" : "0x7c" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05adfef700", +"thread_info_addr" : "0x7f05b0006100", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05adfee350", +"BP" : "0x71" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xb04d82f4a", +"offset_rich_hash" : "0xb04d831d8", +"crashed" : false, +"native_thread_id" : "0x7f0639ffe700", +"thread_info_addr" : "0x7f0614000b60", +"thread_name" : "ProcessWriteQue", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f0639ffd260", +"BP" : "0x1b78310" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001efc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001eef", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e41", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b85", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "64676931-5B65-48DC-B5F6-B23C2C2CC918", +"token" : "0x600003d", +"native_offset" : "0x0", +"filename" : "OmniSharp.Host.dll", +"sizeofimage" : "0x1a000", +"timestamp" : "0xe30e455e", +"il_offset" : "0x0000c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69a8cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5e8dc3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05affff700", +"thread_info_addr" : "0x7f0604002680", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05afffe350", +"BP" : "0x1c" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xae0302df2", +"offset_rich_hash" : "0xae03030e9", +"crashed" : false, +"native_thread_id" : "0x7f05bd5ad700", +"thread_info_addr" : "0x7f05c4012740", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f05bd5ac280", +"BP" : "0x1b781c0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001efc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001eef", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e41", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x600427a", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002527", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69a8cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5e8dc3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a61f0700", +"thread_info_addr" : "0x7f05a80065b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a61ef350", +"BP" : "0x85" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1363e40de9", +"offset_rich_hash" : "0x1363e411dd", +"crashed" : false, +"native_thread_id" : "0x7f063a540700", +"thread_info_addr" : "0x7f061c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f063a53f080", +"BP" : "0x7f061c000b60" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x60058ce", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00010" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600588c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00002" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6005873", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00026" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6005872", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600540e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000b3" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6005410", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00028" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600593a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600548d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600548f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000a" +} +, +{ +"is_managed" : "true", +"guid" : "FA42DDEE-3B09-4AD2-9621-A886DF38C746", +"token" : "0x6000032", +"native_offset" : "0x0", +"filename" : "OmniSharp.Stdio.dll", +"sizeofimage" : "0xc000", +"timestamp" : "0x9343c74f", +"il_offset" : "0x00048" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600460e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "FA42DDEE-3B09-4AD2-9621-A886DF38C746", +"token" : "0x6000010", +"native_offset" : "0x0", +"filename" : "OmniSharp.Stdio.dll", +"sizeofimage" : "0xc000", +"timestamp" : "0x9343c74f", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600229b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002396", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fd0", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00074" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001fe5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x58246f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x580da6", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6aa8f1", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5db021", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xae0302df2", +"offset_rich_hash" : "0xae03030e9", +"crashed" : false, +"native_thread_id" : "0x7f05e5d8d700", +"thread_info_addr" : "0x7f05c8000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f05e5d8c280", +"BP" : "0x1b78150" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001efc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001eef", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e41", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x600427a", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002527", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69a8cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5e8dc3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05acde6700", +"thread_info_addr" : "0x7f05e00135f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05acde5cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a336b700", +"thread_info_addr" : "0x7f05d807b970", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a336acb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05aedf6700", +"thread_info_addr" : "0x7f05c8007bd0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05aedf5350", +"BP" : "0x64" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f058a4ff700", +"thread_info_addr" : "0x7f05f459b360", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f058a4fecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f061a0d4700", +"thread_info_addr" : "0x7f0604000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f061a0d3cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bc3a4700", +"thread_info_addr" : "0x7f05f80c1500", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bc3a3350", +"BP" : "0x1b" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05be3b4700", +"thread_info_addr" : "0x7f05d4933ef0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05be3b3350", +"BP" : "0xb" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a6ff7700", +"thread_info_addr" : "0x7f061c05cc80", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a6ff6350", +"BP" : "0x7e" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a4172700", +"thread_info_addr" : "0x7f05b40096c0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a4171cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05adbed700", +"thread_info_addr" : "0x7f05c80bfa20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05adbec350", +"BP" : "0x73" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05afbfd700", +"thread_info_addr" : "0x7f060db94680", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05afbfc350", +"BP" : "0x2a" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059ad8f700", +"thread_info_addr" : "0x7f05e8328860", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059ad8ecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f058aefe700", +"thread_info_addr" : "0x7f05e046bc50", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f058aefdcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bd1ab700", +"thread_info_addr" : "0x7f05a8002900", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bd1aa350", +"BP" : "0x11" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x8e30437f0", +"offset_rich_hash" : "0x8e3043a81", +"crashed" : false, +"native_thread_id" : "0x7f0618fd2700", +"thread_info_addr" : "0x7f05fc000b60", +"thread_name" : "In-proc Node (D", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f0618fd0f20", +"BP" : "0xa81000" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002052", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002044", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002047", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x60013c6", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00047" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6001619", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65f3f1", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x661849", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6525fb", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5eae93", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05e7073700", +"thread_info_addr" : "0x7f05d4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05e7072cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a7dfe700", +"thread_info_addr" : "0x7f06040560e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a7dfdcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xae0302df2", +"offset_rich_hash" : "0xae03030e9", +"crashed" : false, +"native_thread_id" : "0x7f0618f91700", +"thread_info_addr" : "0x7f05f0000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f063e6267b2", +"SP" : "0x7f0618f90280", +"BP" : "0x1b78230" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001efc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001eef", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ef1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e41", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001e40", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003b86", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x600427a", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x0004d" +} +, +{ +"is_managed" : "true", +"guid" : "080B3B77-30FE-4C78-89AA-F13E0D778492", +"token" : "0x6002527", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1f8000", +"timestamp" : "0xffac68fa", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6267b2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7013e5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x65fb59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x66111f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x69a8cd", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x5e8dc3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a2f69700", +"thread_info_addr" : "0x7f05dc04bc70", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a2f68cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05ac9e4700", +"thread_info_addr" : "0x7f05e8036830", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05ac9e3cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ae9f4700", +"thread_info_addr" : "0x7f05b8013790", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ae9f3350", +"BP" : "0x65" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059a70b700", +"thread_info_addr" : "0x7f05fc021cf0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059a70acb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bdfb2700", +"thread_info_addr" : "0x7f06241a58d0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bdfb1350", +"BP" : "0xe" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05a6bf5700", +"thread_info_addr" : "0x7f06240d50a0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05a6bf4350", +"BP" : "0x80" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f058a8ff700", +"thread_info_addr" : "0x7f05e83ee510", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f058a8fecb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a3d70700", +"thread_info_addr" : "0x7f05b8016010", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a3d6fcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ad7eb700", +"thread_info_addr" : "0x7f05d0006e00", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ad7ea350", +"BP" : "0x75" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05af7fb700", +"thread_info_addr" : "0x7f0610020440", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05af7fa350", +"BP" : "0x2c" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059a98d700", +"thread_info_addr" : "0x7f05f0a6d9c0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059a98ccb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bcda9700", +"thread_info_addr" : "0x7f05ec0451b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bcda8350", +"BP" : "0x16" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05bedb9700", +"thread_info_addr" : "0x7f05b0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05bedb8350", +"BP" : "0x5" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05a79fc700", +"thread_info_addr" : "0x7f060dba09e0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05a79fbcb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f05ac5e2700", +"thread_info_addr" : "0x7f05f09784b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f05ac5e1cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f0596bef700", +"thread_info_addr" : "0x7f063401ec70", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f0596bee350", +"BP" : "0x88" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xd5ed0e810", +"offset_rich_hash" : "0xd5ed0ed28", +"crashed" : false, +"native_thread_id" : "0x7f05ae5f2700", +"thread_info_addr" : "0x41c9e80", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e62a08c", +"SP" : "0x7f05ae5f1350", +"BP" : "0x6d" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x6003e17", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00012" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bc", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00027" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60041bb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x002d1" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x60043b1", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002399", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002395", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002398", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002401", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6002397", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x600250d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1c", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001ec1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x6001f1d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "9F0DF102-FE6E-4CFE-A29D-2E46F585D8A5", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x472000", +"timestamp" : "0xe43f23f1", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62a08c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6ec0b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063af6d81e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "3D97DDA7-73A5-4430-B892-E1D794E5D921", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x286000", +"timestamp" : "0xff5f288c", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f059a309700", +"thread_info_addr" : "0x7f0604133f60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f063e629388", +"SP" : "0x7f059a308cb0", +"BP" : "0xa81d88" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x460319", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64aeaa", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x64c690", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655757", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x4b7ed5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e62b140", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e629388", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e6294b3", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x6a662f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x655073", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e61fea7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f063e222def", +"native_offset" : "0x00000" +} + +] +} +] +} \ No newline at end of file diff --git a/samples/ImmutableSampler/shaders/main.frag b/samples/ImmutableSampler/shaders/main.frag new file mode 100644 index 0000000..bd6c02d --- /dev/null +++ b/samples/ImmutableSampler/shaders/main.frag @@ -0,0 +1,15 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable +#extension GL_ARB_shading_language_420pack : enable + +layout (binding = 1) uniform sampler2D samplerColor; + +layout (location = 0) in vec2 inUV; + +layout (location = 0) out vec4 outFragColor; + +void main() +{ + outFragColor = texture(samplerColor, inUV); +} \ No newline at end of file diff --git a/samples/ImmutableSampler/shaders/main.vert b/samples/ImmutableSampler/shaders/main.vert new file mode 100644 index 0000000..3b395bf --- /dev/null +++ b/samples/ImmutableSampler/shaders/main.vert @@ -0,0 +1,28 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable +#extension GL_ARB_shading_language_420pack : enable + +layout (location = 0) in vec3 inPos; +layout (location = 1) in vec3 inColor; + +layout (binding = 0) uniform UBO +{ + mat4 projectionMatrix; + mat4 viewMatrix; + mat4 modelMatrix; +} ubo; + +layout (location = 0) out vec3 outColor; + +out gl_PerVertex +{ + vec4 gl_Position; +}; + + +void main() +{ + outColor = inColor; + gl_Position = ubo.projectionMatrix * ubo.viewMatrix * ubo.modelMatrix * vec4(inPos.xyz, 1.0); +} diff --git a/samples/common/CrowWin.cs b/samples/common/CrowWin.cs index 539cf0c..ac02b4f 100644 --- a/samples/common/CrowWin.cs +++ b/samples/common/CrowWin.cs @@ -105,7 +105,7 @@ namespace Crow { } void crow_thread_func () { - vkvgDev = new vkvg.Device (instance.Handle, phy.Handle, dev.VkDev.Handle, presentQueue.qFamIndex, + vkvgDev = new vkvg.Device (instance.Handle, phy.Handle, Dev.Handle.Handle, presentQueue.qFamIndex, vkvg.SampleCount.Sample_4, presentQueue.index); crow = new Interface (vkvgDev, (int)swapChain.Width, (int)swapChain.Height); diff --git a/samples/common/SampleBase.cs b/samples/common/SampleBase.cs index 4f22dca..2104a69 100644 --- a/samples/common/SampleBase.cs +++ b/samples/common/SampleBase.cs @@ -1,13 +1,10 @@ using System; -using System.IO; -using System.Linq; -using System.Reflection; -using System.Runtime.InteropServices; using Vulkan; -namespace vke { +namespace vke +{ public abstract class SampleBase : VkWindow { - public SampleBase (string name = "VkWindow", uint _width = 800, uint _height = 600, bool vSync = true) : + public SampleBase (string name = "VkWindow", uint _width = 800, uint _height = 600, bool vSync = false) : base (name, _width, _height, vSync){} protected override void initVulkan() { diff --git a/samples/compute/main.cs b/samples/compute/main.cs index a281384..e91ccd9 100644 --- a/samples/compute/main.cs +++ b/samples/compute/main.cs @@ -13,7 +13,7 @@ namespace SimpleCompute { static void Main (string[] args) { using (Program vke = new Program ()) vke.Run (); - } + } Instance instance; PhysicalDevice phy; @@ -50,7 +50,7 @@ namespace SimpleCompute { createRandomDatas (); inBuff = new HostBuffer (dev, VkBufferUsageFlags.StorageBuffer, datas); - outBuff = new HostBuffer (dev, VkBufferUsageFlags.StorageBuffer, data_size); + outBuff = new HostBuffer (dev, VkBufferUsageFlags.StorageBuffer, data_size); dsPool = new DescriptorPool (dev, 1, new VkDescriptorPoolSize (VkDescriptorType.StorageBuffer, 2)); dsLayout = new DescriptorSetLayout (dev, @@ -89,13 +89,13 @@ namespace SimpleCompute { Console.Write ("IN :"); for (int i = 0; i < data_size; i++) Console.Write ($"{datas[i]} "); - + Console.WriteLine ();Console.WriteLine (); Console.Write ("OUT:"); for (int i = 0; i < data_size; i++) Console.Write ($"{results[i]} "); - + Console.WriteLine (); outBuff.Unmap (); } diff --git a/samples/getInfos/getInfos.csproj b/samples/getInfos/getInfos.csproj new file mode 100644 index 0000000..f72683b --- /dev/null +++ b/samples/getInfos/getInfos.csproj @@ -0,0 +1,9 @@ + + + false + + + + + + \ No newline at end of file diff --git a/samples/getInfos/main.cs b/samples/getInfos/main.cs new file mode 100644 index 0000000..9304c61 --- /dev/null +++ b/samples/getInfos/main.cs @@ -0,0 +1,35 @@ +// Copyright (c) 2020 Jean-Philippe Bruyère +// +// This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT) +using System; +using System.Runtime.InteropServices; +using System.Linq; +using Vulkan; +using vke; + +//very simple compute example that just do an addition on every items of a random list of numbers. +namespace SimpleCompute { + class Program { + static void Main (string[] args) { + Instance instance = new Instance (); + PhysicalDevice phy = instance.GetAvailablePhysicalDevice ().FirstOrDefault (); + /*Device dev = new Device (phy); + + dev.Activate (default (VkPhysicalDeviceFeatures)); + + dev.WaitIdle (); + + dev.Dispose ();*/ + foreach (VkFormat format in Enum.GetValues (typeof(VkFormat))) { + if (phy.TryGetImageFormatProperties (format, VkImageTiling.Optimal, + VkImageUsageFlags.DepthStencilAttachment, out VkImageFormatProperties props)) { + Console.WriteLine ($"{format} : max samples {props.sampleCounts}"); + } else { + Console.WriteLine ($"{format} : NOT SUPPORTED"); + } + } + + instance.Dispose (); + } + } +} diff --git a/samples/getInfos/shaders/compute.comp b/samples/getInfos/shaders/compute.comp new file mode 100644 index 0000000..10cfddd --- /dev/null +++ b/samples/getInfos/shaders/compute.comp @@ -0,0 +1,23 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer buffIn { + int dataIn[]; +}; + +layout(binding = 1) buffer buffOut { + int dataOut[]; +}; + +//layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; + +void main() +{ + uint i = gl_GlobalInvocationID.x; + int d = dataIn[i]; + + for (int j=0; j<8; j++) + d += 1; + dataOut[i] = d; +} diff --git a/samples/getInfos/shaders/computeTest.comp b/samples/getInfos/shaders/computeTest.comp new file mode 100644 index 0000000..f24bee3 --- /dev/null +++ b/samples/getInfos/shaders/computeTest.comp @@ -0,0 +1,80 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer buffIn { + vec4 dataIn[]; +}; + +layout(binding = 1) buffer buffOut { + vec4 dataOut[]; +}; + +layout(set = 1, binding = 0) buffer VBO { + vec2 vertices[]; +}; + +layout(set = 1, binding = 1) buffer IBO { + uint indices[]; +}; + + +layout(push_constant) uniform PushConsts { + int iStepSize; + int imgDim; + int pointCount; +}; + +const ivec2 dirs[] = ivec2[8] ( + ivec2( 1, 0), + ivec2( 1, 1), + ivec2( 0, 1), + ivec2(-1, 1), + ivec2(-1, 0), + ivec2(-1,-1), + ivec2( 0,-1), + ivec2( 1,-1) +); + +layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; + + +vec4 getPixel (ivec2 uv) { + return dataIn[uv.y * imgDim + uv.x]; +} +void setPixel (ivec2 uv, vec4 pix) { + dataOut[uv.y * imgDim + uv.x] = pix; +} + +void main() +{ + ivec2 uv = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y); + vec4 d = getPixel (uv); + + ivec2 thisSeedPos; + if (d.r > 0.0) + thisSeedPos = ivec2(int(d.g), int(d.b)); + else//no seed in current pixel + thisSeedPos = ivec2(-1); + + for (int j=0; j<8; j++){ + ivec2 otherUV = uv + iStepSize * dirs[j]; + if (otherUV.x < 0 || otherUV.y < 0 || otherUV.x >= imgDim || otherUV.y >= imgDim) + continue; + + vec4 other = getPixel (otherUV); + + if (other.r > 0.0) {//seed in other + ivec2 otherSeedPos = ivec2(int(other.g), int(other.b)); + if (thisSeedPos.x < 0) {//replace current + d = other; + thisSeedPos = otherSeedPos; + }else if (distance (uv, thisSeedPos) > distance (uv, otherSeedPos)) { + d = other; + thisSeedPos = otherSeedPos; + } + } + } + + setPixel (uv, d); +} diff --git a/samples/getInfos/shaders/delaunay.comp b/samples/getInfos/shaders/delaunay.comp new file mode 100644 index 0000000..410dcee --- /dev/null +++ b/samples/getInfos/shaders/delaunay.comp @@ -0,0 +1,70 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer buffIn { + vec4 dataIn[]; +}; + +layout(binding = 1) buffer buffOut { + vec4 dataOut[]; +}; + +layout(push_constant) uniform PushConsts { + int iStepSize; + int imgDim; +}; + +const ivec2 dirs[] = ivec2[8] ( + ivec2( 1, 0), + ivec2( 1, 1), + ivec2( 0, 1), + ivec2(-1, 1), + ivec2(-1, 0), + ivec2(-1,-1), + ivec2( 0,-1), + ivec2( 1,-1) +); + +layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; + + +vec4 getPixel (ivec2 uv) { + return dataIn[uv.y * imgDim + uv.x]; +} +void setPixel (ivec2 uv, vec4 pix) { + dataOut[uv.y * imgDim + uv.x] = pix; +} + +void main() +{ + ivec2 uv = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y); + vec4 d = getPixel (uv); + + ivec2 thisSeedPos; + if (d.r > 0.0) + thisSeedPos = ivec2(int(d.g), int(d.b)); + else//no seed in current pixel + thisSeedPos = ivec2(-1); + + for (int j=0; j<8; j++){ + ivec2 otherUV = uv + iStepSize * dirs[j]; + if (otherUV.x < 0 || otherUV.y < 0 || otherUV.x >= imgDim || otherUV.y >= imgDim) + continue; + + vec4 other = getPixel (otherUV); + + if (other.r > 0.0) {//seed in other + ivec2 otherSeedPos = ivec2(int(other.g), int(other.b)); + if (thisSeedPos.x < 0) {//replace current + d = other; + thisSeedPos = otherSeedPos; + }else if (distance (uv, thisSeedPos) > distance (uv, otherSeedPos)) { + d = other; + thisSeedPos = otherSeedPos; + } + } + } + + setPixel (uv, d); +} diff --git a/samples/getInfos/shaders/init.comp b/samples/getInfos/shaders/init.comp new file mode 100644 index 0000000..fc615ee --- /dev/null +++ b/samples/getInfos/shaders/init.comp @@ -0,0 +1,36 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer buffIn { + vec4 dataIn[]; +}; + +layout(binding = 1) buffer buffOut { + vec4 dataOut[]; +}; + +layout(set = 1, binding = 0) buffer VBO { + vec2 vertices[]; +}; + +layout(set = 1, binding = 1) buffer IBO { + uint indices[]; +}; + +layout(push_constant) uniform PushConsts { + int iStepSize; + int imgDim; + int pointCount; +}; + + +layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; + +void main() +{ + vec2 v = vertices[gl_GlobalInvocationID.x]; + ivec2 uv = ivec2(int(v.x), int(v.y)); + dataIn[uv.y * imgDim + uv.x] = vec4 (gl_GlobalInvocationID.x + 1, uv.x, uv.y, 1.0); +} + diff --git a/samples/getInfos/shaders/mandelbrot.comp b/samples/getInfos/shaders/mandelbrot.comp new file mode 100644 index 0000000..a03f4a0 --- /dev/null +++ b/samples/getInfos/shaders/mandelbrot.comp @@ -0,0 +1,56 @@ +#version 450 +#extension GL_ARB_separate_shader_objects : enable + +#define WIDTH 3200 +#define HEIGHT 2400 +#define WORKGROUP_SIZE 32 +layout (local_size_x = WORKGROUP_SIZE, local_size_y = WORKGROUP_SIZE, local_size_z = 1 ) in; + +struct Pixel{ + vec4 value; +}; + +layout(std140, binding = 0) buffer buf +{ + Pixel imageData[]; +}; + +void main() { + + /* + In order to fit the work into workgroups, some unnecessary threads are launched. + We terminate those threads here. + */ + if(gl_GlobalInvocationID.x >= WIDTH || gl_GlobalInvocationID.y >= HEIGHT) + return; + + float x = float(gl_GlobalInvocationID.x) / float(WIDTH); + float y = float(gl_GlobalInvocationID.y) / float(HEIGHT); + + /* + What follows is code for rendering the mandelbrot set. + */ + vec2 uv = vec2(x,y); + float n = 0.0; + vec2 c = vec2(-.445, 0.0) + (uv - 0.5)*(2.0+ 1.7*0.2 ), + z = vec2(0.0); + const int M =128; + for (int i = 0; i 2) break; + n++; + } + + // we use a simple cosine palette to determine color: + // http://iquilezles.org/www/articles/palettes/palettes.htm + float t = float(n) / float(M); + vec3 d = vec3(0.3, 0.3 ,0.5); + vec3 e = vec3(-0.2, -0.3 ,-0.5); + vec3 f = vec3(2.1, 2.0, 3.0); + vec3 g = vec3(0.0, 0.1, 0.0); + vec4 color = vec4( d + e*cos( 6.28318*(f*t+g) ) ,1.0); + + // store the rendered mandelbrot set into a storage buffer: + imageData[WIDTH * gl_GlobalInvocationID.y + gl_GlobalInvocationID.x].value = color; +} \ No newline at end of file diff --git a/samples/getInfos/shaders/normalize.comp b/samples/getInfos/shaders/normalize.comp new file mode 100644 index 0000000..2bc6aa6 --- /dev/null +++ b/samples/getInfos/shaders/normalize.comp @@ -0,0 +1,73 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer buffIn { + vec4 dataIn[]; +}; + +layout(binding = 1) buffer buffOut { + vec4 dataOut[]; +}; + +layout(set = 1, binding = 0) buffer VBO { + vec2 vertices[]; +}; + +layout(set = 1, binding = 1) buffer IBO { + uint indices[]; +}; + +layout(push_constant) uniform PushConsts { + int iStepSize; + int imgDim; + int pointCount; +}; + +layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; + +vec4 getPixel (ivec2 uv) { + return dataIn[uv.y * imgDim + uv.x]; +} +void setPixel (ivec2 uv, vec4 pix) { + dataOut[uv.y * imgDim + uv.x] = pix; +} + +const vec4[] colors = vec4[]( + vec4(1,0,0,1), + vec4(0,1,0,1), + vec4(0,0,1,1), + vec4(1,0,1,1), + vec4(0,1,1,1), + vec4(1,1,0,1), + vec4(0.5,0,0,1), + vec4(0,0.5,0,1), + vec4(0,0,0.5,1), + vec4(0.5,0,0.5,1), + vec4(0,0.5,0.5,1), + vec4(0.5,0.5,0,1), + vec4(0,0.5,0.5,1), + vec4(0.1,0.9,0.2,1), + vec4(0.3,0.7,0.4,1), + vec4(0.5,0.5,0.6,1), + vec4(0.7,0.3,0.8,1), + vec4(0.9,0.1,0.0,1) + ); + +void main() +{ + ivec2 uv = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y); + vec4 d = getPixel (uv); + + if (d.r > 0.0) { + if (int(d.g) == uv.x && int(d.b) == uv.y) + d.a = 1.0; + else + d.a = 0.4; + + d.rgb = colors [int(d.r)].rgb; + } + + setPixel (uv, d); +} + diff --git a/samples/getInfos/shaders/simpletexture.frag b/samples/getInfos/shaders/simpletexture.frag new file mode 100644 index 0000000..a081876 --- /dev/null +++ b/samples/getInfos/shaders/simpletexture.frag @@ -0,0 +1,15 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable +#extension GL_ARB_shading_language_420pack : enable + +layout (set = 0, binding = 0) uniform sampler2D samplerColor; + +layout (location = 0) in vec2 inUV; + +layout (location = 0) out vec4 outFragColor; + +void main() +{ + outFragColor = texture(samplerColor, inUV); +} diff --git a/samples/getInfos/shaders/test.comp b/samples/getInfos/shaders/test.comp new file mode 100644 index 0000000..8ab1ec7 --- /dev/null +++ b/samples/getInfos/shaders/test.comp @@ -0,0 +1,21 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable + +layout(binding = 0) buffer readonly buff { + vec4 data[]; +}; +layout(binding = 1) buffer writeonly buffOut { + vec4 dataOut[]; +}; +layout(push_constant) uniform PushConsts { + int iStepSize; + int imgDim; +}; + + +void main() +{ + ivec2 uv = ivec2(gl_GlobalInvocationID.x, gl_GlobalInvocationID.y); + +} diff --git a/samples/getInfos/shaders/triangle2.frag b/samples/getInfos/shaders/triangle2.frag new file mode 100644 index 0000000..3f905f7 --- /dev/null +++ b/samples/getInfos/shaders/triangle2.frag @@ -0,0 +1,13 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable +#extension GL_ARB_shading_language_420pack : enable + +//layout (location = 0) in vec3 inColor; + +layout (location = 0) out vec4 outFragColor; + +void main() +{ + outFragColor = vec4(1.0, 1.0, 1.0, 1.0); +} \ No newline at end of file diff --git a/samples/getInfos/shaders/triangle2.vert b/samples/getInfos/shaders/triangle2.vert new file mode 100644 index 0000000..2922694 --- /dev/null +++ b/samples/getInfos/shaders/triangle2.vert @@ -0,0 +1,24 @@ +#version 450 + +#extension GL_ARB_separate_shader_objects : enable +#extension GL_ARB_shading_language_420pack : enable + +layout (location = 0) in vec2 inPos; + +layout(push_constant) uniform PushConsts { + int imgDim; + int xPad; + int yPad; + int zoom; +}; + +out gl_PerVertex +{ + vec4 gl_Position; +}; + + +void main() +{ + gl_Position = vec4(inPos.xy * vec2(2) / vec2(imgDim) - vec2(1), 0.0, 1.0); +} diff --git a/samples/shadow/modelWithVkvgStats.cs b/samples/shadow/modelWithVkvgStats.cs index f4ea123..5730207 100644 --- a/samples/shadow/modelWithVkvgStats.cs +++ b/samples/shadow/modelWithVkvgStats.cs @@ -107,7 +107,7 @@ namespace modelWithVkvgStats { } Program () : base () { - vkvgDev = new vkvg.Device (instance.Handle, phy.Handle, dev.VkDev.Handle, presentQueue.qFamIndex, + vkvgDev = new vkvg.Device (instance.Handle, phy.Handle, Dev.Handle.Handle, presentQueue.qFamIndex, vkvg.SampleCount.Sample_4, presentQueue.index); camera.Type = CamType.FirstPerson; diff --git a/vk_layer_settings.txt b/vk_layer_settings.txt new file mode 100644 index 0000000..8e2d12c --- /dev/null +++ b/vk_layer_settings.txt @@ -0,0 +1,488 @@ +################################################################################ +# +# This file contains per-layer settings that configure layer behavior at +# execution time. Comments in this file are denoted with the "#" char. +# Settings lines are of the form: +# ". = " +# +# is typically the official layer name, minus the VK_LAYER +# prefix and all lower-camel-case -- i.e., for VK_LAYER_KHRONOS_validation, +# the layer identifier is 'khronos_validation'. +# +################################################################################ +################################################################################ +# Validation Layer Common Settings: +# ================================= +# +# DEBUG_ACTION: +# ============= +# .debug_action : This is a comma-delited list of options +# indicating what actions are to be taken when a layer wants to report +# information. +# Possible settings values are defined in the vk_layer.h header file. +# These settings are: +# VK_DBG_LAYER_ACTION_IGNORE - Take no action -- has no effect if specified with +# other options. +# VK_DBG_LAYER_ACTION_LOG_MSG - Log a txt message to stdout or to a log filename +# specified via the .log_filename setting (see below). +# VK_DBG_LAYER_ACTION_CALLBACK - Call user defined callback function(s) that +# have been registered via the VK_EXT_debug_report extension. Since +# app must register callback, this is a NOOP for the settings file. +# VK_DBG_LAYER_ACTION_DEBUG_OUTPUT [Windows only] - Log a txt message using the +# Windows OutputDebugString function -- messages will show up in the +# Visual Studio output window, for instance. +# VK_DBG_LAYER_ACTION_BREAK - Trigger a breakpoint if a debugger is in use. +# +# REPORT_FLAGS: +# ============= +# .report_flags : This is a comma-delineated list of options +# telling the layer what types of messages it should report back. +# Options are: +# info - Report informational messages. +# warn - Report warnings from using the API in a manner which may lead to +# undefined behavior or to warn the user of common trouble spots. +# A warning does NOT necessarily signify illegal application behavior. +# perf - Report using the API in a way that may cause suboptimal performance. +# error - Report errors in API usage. +# debug - For layer development. Report messages for debugging layer +# behavior. +# +# MESSAGE_ID_FILTER: +# ================== +# .message_id_filter: This is a comma-delineated list of VUIDs +# or VUID identifers which are to be IGNORED by the layers. These can be in +# any combination of the normal VUID string form, +# "VUID-vkCmdPipelineBarrier-image-02635", +# or the hexadecimal or decimal representation of the VUID id returned from +# a validation message, for example: +# 0xdf3391a2 or 3744698786. +# +# DUPLICATE_MESSAGE_LIMIT: +# ======================= +# .duplicate_message_limit: This is an unsigned integer +# which signifies the limit for the number of times any validation +# message can be output by the layers. Any non-zero value will be respected, +# and the default is no limit. +# +# LOG_FILENAME: +# ============= +# .log_filename : output filename. Can be relative to +# location of vk_layer_settings.txt file, or an absolute path. If no +# filename is specified or if filename has invalid path, then stdout +# is used by default. +# +# DISABLES: +# ========= +# .disables : comma separated list of feature/flag/disable enums +# These can include VkValidationFeatureDisableEXT flags defined in the Vulkan +# specification, or ValidationCheckDisables enums defined in chassis.h. +# Effects of setting these flags are described in the specification (or the +# source code in the case of the ValidationCheckDisables). The most useful +# flags are briefly described here: +# VK_VALIDATION_FEATURE_DISABLE_UNIQUE_HANDLES_EXT - disables handle wrapping. +# Disable this feature if you are running into crashes when authoring new extensions +# or developing new Vulkan objects/structures +# VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT - disables thread checks. It may +# help with performance to run with thread-checking disabled most of the time, +# enabling it occasionally for a quick sanity check, or when debugging difficult +# application behaviors. +# VK_VALIDATION_FEATURE_DISABLE_CORE_CHECKS_EXT - disables the main, heavy-duty +# validation checks. This may be valuable early in the development cycle to +# reduce validation output while correcting paramter/object usage errors. +# VK_VALIDATION_FEATURE_DISABLE_API_PARAMETERS_EXT - disables stateless parameter +# checks. This may not always be necessary late in a development cycle. +# VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT - disables object tracking. +# This may not always be necessary late in a development cycle. +# +# ENABLES: +# ======== +# .enables : comma separated list of feature enable enums +# These can include VkValidationFeatureEnableEXT flags defined in the Vulkan +# specification, where their effects are described. The most useful +# flags are briefly described here: +# VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT - enables intrusive GPU-assisted +# shader validation in khronos validation layers +# VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT - enables best practices warning +# validation +# VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT - enables processing of +# debug printf instructions in shaders and sending debug strings to the debug callback +# VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT - enables checks to +# identify resource access conflicts due to missing or incorrect synchronization +# +# CUSTOM_STYPE_LIST: +# ================== +# .custom_stype_list: This is a comma-delimited list of uin32_t +# value-pairs describing custom structure types. Unrecognized structures encountered +# in wrapped pNext chains are typically removed. Specifying the sType value and size +# in bytes in this list will allow the layers to properly preserve the containing +# pNext chain. Multiple structs can be specified. For instance, in the following +# example, two custom structs are declared, the first in decimal and the second in +# hexadecimal: +# khronos_validation.custom_stype_list=1100297000,32,0x478b1428,0x20 + +# VK_LAYER_KHRONOS_validation Settings + +khronos_validation.debug_action = VK_DBG_LAYER_ACTION_LOG_MSG +khronos_validation.report_flags = error,warn,perf,info +khronos_validation.log_filename = stdout + +# Example entry showing how to filter specific VUIDs from layer output +#khronos_validation.message_id_filter = 3744698786,0xdf3391a2,"VUID-vkCmdPipelineBarrier-image-02635" + +# Example entry showing how to declare custom non-Vulkan structure types +#khronos_validation.custom_stype_list=1100297000,32,0x478b1428,0x20 + +# Example entry showing how to limit the number of repeated validation messages +#khronos_validation.duplicate_message_limit = 25 + +# Example entry showing how to disable threading checks and validation at DestroyPipeline time +#khronos_validation.disables = VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT,VALIDATION_CHECK_DISABLE_DESTROY_PIPELINE + +# Example entry showing how to Enable GPU-Assisted Validation +#khronos_validation.enables = VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT,VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT +# Example entry showing how to disable buffer out of bounds checking +#khronos_validation.gpuav_buffer_oob = false + +# Example entry showing how to Enable Best Practices Validation +#khronos_validation.enables = VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT + +# Example entry showing how to enable Debug Printf messages +#khronos_validation.enables = VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT +# Example showing how to set the size in bytes of the buffer used by debug printf (default 1024 bytes) +#khronos_validation.printf_buffer_size = 1024 +# Example of how to set the verbosity of debug printf messages (default not verbose) +#khronos_validation.printf_verbose = false +# Example of how to redirect debug printf messages from the debug callback to stdout +#khronos_validation.printf_to_stdout = true + +################################################################################ +################################################################################ +# +# This file contains per-layer settings that configure layer behavior at +# execution time. Comments in this file are denoted with the "#" char. +# Settings lines are of the form: +# ". = " +# +# is typically the official layer name, minus the VK_LAYER +# prefix and all lower-camel-case -- i.e., for VK_LAYER_LUNARG_api_dump, the +# layer identifier is 'lunarg_api_dump'. +# +################################################################################ +################################################################################ +# VK_LAYER_LUNARG_api_dump Settings: +# ================================== +# +# OUTPUT_FORMAT: +# ========= +# .output_format : Specifies the format used for output; +# can be HTML, JSON, or Text (default -- outputs plain text). +# +# DETAILED: +# ========= +# .detailed : Setting this to TRUE causes parameter details +# to be dumped in addition to API calls. +# +# NO_ADDR: +# ======== +# .no_addr : Setting this to TRUE causes "address" to be +# dumped in place of hex addresses. +# +# FILE: +# ===== +# .file : Setting this to TRUE indicates that output +# should be written to file instead of STDOUT. +# +# LOG_FILENAME: +# ============= +# .log_filename : Specifies the file to dump to when +# "file = TRUE". The default is "vk_apidump.txt". +# +# FLUSH: +# ====== +# .flush : Setting this to TRUE causes IO to be flushed +# each API call that is written. +# +# INDENT SIZE: +# ============== +# .indent_size : Specifies the number of spaces that a tab +# is equal to. +# +# SHOW TYPES: +# ============== +# .show_types : Setting this to TRUE causes types to be +# dumped in addition to values. +# +# NAME SIZE: +# ============== +# .name_size : The number of characters the name of a +# variable should consume, assuming more are not required. +# +# TYPE SIZE: +# ============== +# .type_size : The number of characters the type of a +# variable should consume, assuming more are not requires. +# +# USE_SPACES: +# ============== +# .use_spaces : Setting this to TRUE causes all tabs +# characters to be replaced with spaces. +# +# SHOW_SHADER: +# ============== +# .show_shader : Setting this to TRUE causes the shader +# binary code in pCode to be also written to output. +# +# OUTPUT_RANGE: +# ============== +# .output_range : Comma separated list of ranges to dump. +# Range format is "S-C-I" with S being the start frame, C is the count of +# frames, and I the interval between dumped frames. A count of 0 will +# output every frame after the start of the range. Examples: "2-6-2" would +# will dump frames 2, 4, and 6. "3,4,6-0" will dump frames 3,4,6 and every +# frame after it. + +# VK_LAYER_LUNARG_api_dump Settings +lunarg_api_dump.output_format = json +lunarg_api_dump.detailed = TRUE +lunarg_api_dump.no_addr = FALSE +lunarg_api_dump.file = true +lunarg_api_dump.log_filename = vk_apidump.json +lunarg_api_dump.flush = TRUE +lunarg_api_dump.indent_size = 4 +lunarg_api_dump.show_types = TRUE +lunarg_api_dump.name_size = 32 +lunarg_api_dump.type_size = 0 +lunarg_api_dump.use_spaces = TRUE +lunarg_api_dump.show_shader = FALSE +lunarg_api_dump.output_range = 0-0 +lunarg_api_dump.show_timestamp = TRUE + +################################################################################ +# VK_LAYER_LUNARG_device_simulation Settings: +# =========================================== +# +# FILENAME: +# ========= +# .filename : Name of one or more configuration file(s) to load. +# Added in v1.2.1: This variable can have a delimited list of files to be loaded. +# On Windows, the delimiter is ';' else it is ':'. Files are loaded in order. +# Later files can override settings from earlier files. +# +# DEBUG_ENABLE: +# ============= +# .debug_enable : A non-zero integer enables debug message output. +# +# EXIT_ON_ERROR: +# ============== +# .exit_on_error : A non-zero integer enables exit-on-error. + +# VK_LAYER_LUNARG_device_simulation Settings +lunarg_device_simulation.filename = +lunarg_device_simulation.debug_enable = 0 +lunarg_device_simulation.exit_on_error = 0 + +################################################################################ +# VK_LAYER_LUNARG_screenshot Settings: +# ==================================== +# +# FRAMES: +# ======= +# .frames : Comma separated list of frames to output as +# screen shots or a range of frames with a start, count, and optional +# interval separated by a dash. Setting the variable to \"all\" will output +# every frame. Example: \"5-8-2\" will output frame 5, continue until frame 13, +# dumping every other frame. Example: \"3,8-2\" will output frames 3, 8, and 9. +# +# DIR: +# ==== +# .dir : This can be set to specify the directory in which to +# create the screenshot files. +# +# FORMAT: +# ======= +# .format : This can be set to a color space for the output. +# It must be one of the following values: "UNORM", "SNORM", "USCALED", "SSCALED", +# "UINT", "SINT", "SRGB" or "USE_SWAPCHAIN_COLORSPACE". + +# VK_LAYER_LUNARG_screenshot Settings +lunarg_screenshot.frames = 0-0 +lunarg_screenshot.dir = +lunarg_screenshot.format = USE_SWAPCHAIN_COLORSPACE +############################################################################### +# VK_LAYER_LUNARG_gfxreconstruct Layer Settings +# +# A settings file may be provided to the GFXReconstruct capture layer by +# setting the following Desktop environment variable or Android system +# property: +# Desktop environment variable: VK_LAYER_SETTINGS_PATH +# Android system property: debug.gfxrecon.settings_path +# +# The environment variable/system property may be set as either the path to +# the folder containing a file named vk_layer_settings.txt or the full path to +# a file with a custom name. When set to a folder, the capture layer will try +# to open a file in that folder named vk_layer_settings.txt. When set to a +# file, the capture layer will try to open a file with the specified name. +# +# This settings file may be combined with settings files for other layers. The +# capture layer will ignore entries that do not start with the +# 'lunarg_gfxreconstruct.' prefix. +############################################################################### + +# Capture File Name | STRING | Path to use when creating the capture file. +# Default is: gfxrecon_capture.gfxr +#lunarg_gfxreconstruct.capture_file = "gfxrecon_capture.gfxr" + +# Capture Specific Frames | STRING | Specify one or more comma-separated frame +# ranges to capture. Each range will be written to its own file. A frame range +# can be specified as a single value, to specify a single frame to capture, or +# as two hyphenated values, to specify the first and last frame to capture. +# Frame ranges should be specified in ascending order and cannot overlap. Note +# that frame numbering is 1-based (i.e. the first frame is frame 1). +# Example: 200,301-305 will create two capture files, one containing a +# single frame and one containing five frames. +# Default is: Empty string (all frames are captured). +#lunarg_gfxreconstruct.capture_frames = "" + +# Hotkey Capture Trigger | STRING | Specify a hotkey (any one of F1-F12, TAB, +# CONTROL) that will be used to start/stop capture. Example: F3 will set the +# capture trigger to F3 hotkey. One capture file will be generated for each +# pair of start/stop hotkey presses. +# Note: Only available on Desktop. +# Default is: Empty string (hotkey capture trigger is disabled). +#lunarg_gfxreconstruct.capture_trigger = "" + +# Capture File Compression Type | STRING | Compression format to use with the +# capture file. +# Valid values are: LZ4, ZLIB, ZSTD, and NONE. +# Default is: LZ4 +#lunarg_gfxreconstruct.capture_compression_type = "LZ4" + +# Capture File Timestamp | BOOL | Add a timestamp to the capture file name. +# Default is: true +lunarg_gfxreconstruct.capture_file_timestamp = false + +# Capture File Flush After Write | BOOL | Flush output stream after each packet +# is written to the capture file. +# Default is: false +#lunarg_gfxreconstruct.capture_file_flush = false + +# Log Level | STRING | Specify the highest level message to log. The specified +# level and all levels listed after it will be enabled for logging. For +# example, choosing the warning level will also enable the error and fatal +# levels. +# Options are: debug, info, warning, error, and fatal. +# Default is: info +#lunarg_gfxreconstruct.log_level = "info" + +# Log Output to Console | BOOL | Log messages will be written to stdout. +# Default is: true +lunarg_gfxreconstruct.log_output_to_console = true + +# Log File | STRING | When set, log messages will be written to a file at the +# specified path. +# Default is: Empty string (file logging disabled). +#lunarg_gfxreconstruct.log_file = "" + +# Log Detailed | BOOL | Include name and line number from the file responsible +# for the log message. +# Default is: false +#lunarg_gfxreconstruct.log_detailed = false + +# Log Allow Indents | BOOL | Apply additional indentation formatting to log +# messages. +# Default is: false +#lunarg_gfxreconstruct.log_allow_indents = false + +# Log Break on Error | BOOL | Trigger a debug break when logging an error. +# Default is: false +#lunarg_gfxreconstruct.log_break_on_error = false + +# Log File Create New | BOOL | Specifies that log file initialization should +# overwrite an existing file when true, or append to an existing file when +# false. +# Default is: true +#lunarg_gfxreconstruct.log_file_create_new = true + +# Log File Flush After Write | BOOL | Flush the log file to disk after each +# write when true. +# Default is: false +#lunarg_gfxreconstruct.log_file_flush_after_write = false + +# Log File Keep Open | BOOL | Keep the log file open between log messages when +# true, or close and reopen the log file for each message when false. +# Default is: true +#lunarg_gfxreconstruct.log_file_keep_open = true + +# Log Output to Debug Console | BOOL | Windows only option. Log messages will +# be written to the Debug Console with OutputDebugStringA. +# Note: Only available on Windows. +# Default is: false +#lunarg_gfxreconstruct.log_output_to_os_debug_string = false + +# Memory Tracking Mode | STRING | Specifies the memory tracking mode to use for +# detecting modifications to mapped Vulkan memory objects. +# Available options are: page_guard, assisted, and unassisted. +# * page_guard: tracks modifications to individual memory pages, which +# are written to the capture file on calls to +# vkFlushMappedMemoryRanges, vkUnmapMemory, and vkQueueSubmit. +# Tracking modifications requires allocating shadow memory for all +# mapped memory. +# * assisted: expects the application to call vkFlushMappedMemoryRanges +# after memory is modified; the memory ranges specified to the +# vkFlushMappedMemoryRanges call will be written to the capture file +# during the call. +# * unassisted: writes the full content of mapped memory to the capture +# file on calls to vkUnmapMemory and vkQueueSubmit. It is very +# inefficient and may be unusable with real-world applications that +# map large amounts of memory. +# Default is page_guard +#lunarg_gfxreconstruct.memory_tracking_mode = "page_guard" + +# Page Guard Copy on Map | BOOL | When the page_guard memory tracking mode is +# enabled, copies the content of the mapped memory to the shadow memory +# immediately after the memory is mapped. +# Default is: true +#lunarg_gfxreconstruct.page_guard_copy_on_map = true + +# Page Guard Separate Read Tracking | BOOL | When the page_guard memory +# tracking mode is enabled, copies the content of pages accessed for read from +# mapped memory to shadow memory on each read. Can overwrite unprocessed shadow +# memory content when an application is reading from and writing to the same +# page. +# Default is: true +#lunarg_gfxreconstruct.page_guard_separate_read = true + +# Page Guard External Memory | BOOL | When the page_guard memory tracking mode +# is enabled, use the VK_EXT_external_memory_host extension to eliminate the +# need for shadow memory allocations. For each memory allocation from a host +# visible memory type, the capture layer will create an allocation from system +# memory, which it can monitor for write access, and provide that allocation to +# vkAllocateMemory as external memory. +# Note: Only available on Windows. +# Default is false +#lunarg_gfxreconstruct.page_guard_external_memory = false +################################################################################ +# +# This file contains per-layer settings that configure layer behavior at +# execution time. Comments in this file are denoted with the "#" char. +# Settings lines are of the form: +# ". = " +# +# is typically the official layer name, minus the VK_LAYER +# prefix and all lower-camel-case -- i.e., for VK_LAYER_LUNARG_api_dump, the +# layer identifier is 'lunarg_api_dump'. +# +################################################################################ +################################################################################ +# VK_LAYER_KHRONOS_synchronization2 Settings: +# ================================== +# +# FORCE_ENABLE: +# ========= +# .force_enable: If TRUE, the layers implementation will always +# be used. If FALSE (default), the layers implementation will only be used if the +# underlying driver does not implement the extension. +# + +# VK_LAYER_KHRONOS_synchronization2 Settings +khronos_synchronization2.force_enable = FALSE diff --git a/vke.net.sln b/vke.net.sln index c19d4ed..5d4ccbe 100644 --- a/vke.net.sln +++ b/vke.net.sln @@ -46,6 +46,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "pbr", "samples\pbr\pbr.cspr EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tesselation", "samples\Tesselation\Tesselation.csproj", "{FCE58652-47B9-4A3C-90B0-3B2EE2C8042D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalMemmories", "samples\ExternalMemmories\ExternalMemmories.csproj", "{85CD9813-E182-4ED1-8D2C-38467657BEF3}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution BuildPackages|Any CPU = BuildPackages|Any CPU @@ -147,6 +149,14 @@ Global {FCE58652-47B9-4A3C-90B0-3B2EE2C8042D}.Release|Any CPU.Build.0 = Release|Any CPU {FCE58652-47B9-4A3C-90B0-3B2EE2C8042D}.ReleaseSpirVTasks|Any CPU.ActiveCfg = Debug|Any CPU {FCE58652-47B9-4A3C-90B0-3B2EE2C8042D}.ReleaseSpirVTasks|Any CPU.Build.0 = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.BuildPackages|Any CPU.ActiveCfg = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.BuildPackages|Any CPU.Build.0 = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.Release|Any CPU.Build.0 = Release|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.ReleaseSpirVTasks|Any CPU.ActiveCfg = Debug|Any CPU + {85CD9813-E182-4ED1-8D2C-38467657BEF3}.ReleaseSpirVTasks|Any CPU.Build.0 = Debug|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -164,6 +174,7 @@ Global {D9A41382-444E-44ED-B638-3D8F06F2FBC2} = {16439374-B8DB-4643-8116-EB3358B49A12} {7EB2430B-6BC0-4AE9-B1FA-57C3DB2AE1C5} = {16439374-B8DB-4643-8116-EB3358B49A12} {FCE58652-47B9-4A3C-90B0-3B2EE2C8042D} = {16439374-B8DB-4643-8116-EB3358B49A12} + {85CD9813-E182-4ED1-8D2C-38467657BEF3} = {16439374-B8DB-4643-8116-EB3358B49A12} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {1360F94D-CF3C-4121-A8D7-E227F41668F1} diff --git a/vke/src/ExtensionMethods.cs b/vke/src/ExtensionMethods.cs index 93c6800..972932f 100644 --- a/vke/src/ExtensionMethods.cs +++ b/vke/src/ExtensionMethods.cs @@ -25,96 +25,13 @@ namespace vke { return true; } - #region pinning - /// - /// list of pinned GCHandles used to pass value from managed to unmanaged code. - /// - public static Dictionary handles = new Dictionary(); - - /// - /// Unpin the specified object and free the GCHandle associated. - /// - public static void Unpin (this object obj) { - if (!handles.ContainsKey (obj)) { - Debug.WriteLine ("Trying to unpin unpinned object: {0}.", obj); - return; - } - handles[obj].Free (); - handles.Remove (obj); - } - - /// - /// Pin the specified object and return a pointer. MUST be Unpined as soon as possible. - /// - public static IntPtr Pin (this object obj) { - if (handles.ContainsKey (obj)) { - Debug.WriteLine ("Trying to pin already pinned object: {0}", obj); - return handles[obj].AddrOfPinnedObject (); - } - - GCHandle hnd = GCHandle.Alloc (obj, GCHandleType.Pinned); - handles.Add (obj, hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this List obj) { - if (handles.ContainsKey (obj)) - Debug.WriteLine ("Pinning already pinned object: {0}", obj); - - GCHandle hnd = GCHandle.Alloc (obj.ToArray(), GCHandleType.Pinned); - handles.Add (obj, hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this T[] obj) { - if (handles.ContainsKey (obj)) - Debug.WriteLine ("Pinning already pinned object: {0}", obj); - - GCHandle hnd = GCHandle.Alloc (obj, GCHandleType.Pinned); - handles.Add (obj, hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this string obj) { - if (handles.ContainsKey (obj)) { - Debug.WriteLine ("Trying to pin already pinned object: {0}", obj); - return handles[obj].AddrOfPinnedObject (); - } - byte[] n = System.Text.Encoding.UTF8.GetBytes(obj +'\0'); - GCHandle hnd = GCHandle.Alloc (n, GCHandleType.Pinned); - handles.Add (obj, hnd); - return hnd.AddrOfPinnedObject (); - } - - //pin with pinning context - public static IntPtr Pin (this object obj, PinnedObjects ctx) { - GCHandle hnd = GCHandle.Alloc (obj, GCHandleType.Pinned); - ctx.Handles.Add (hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this IList obj, PinnedObjects ctx) { - GCHandle hnd = GCHandle.Alloc (obj.ToArray (), GCHandleType.Pinned); - ctx.Handles.Add (hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this T[] obj, PinnedObjects ctx) { - GCHandle hnd = GCHandle.Alloc (obj, GCHandleType.Pinned); - ctx.Handles.Add (hnd); - return hnd.AddrOfPinnedObject (); - } - public static IntPtr Pin (this string obj, PinnedObjects ctx) { - byte[] n = System.Text.Encoding.UTF8.GetBytes (obj + '\0'); - GCHandle hnd = GCHandle.Alloc (n, GCHandleType.Pinned); - ctx.Handles.Add (hnd); - return hnd.AddrOfPinnedObject (); - } - - #endregion - #region DebugMarkers public static void SetDebugMarkerName (this VkCommandBuffer obj, Device dev, string name) { if (!dev.debugUtilsEnabled) return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.CommandBuffer, (ulong)obj.Handle.ToInt64 ()) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkImageView obj, Device dev, string name) { @@ -122,7 +39,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.ImageView, (ulong)obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkSampler obj, Device dev, string name) { @@ -130,7 +47,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.Sampler, (ulong)obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkPipeline obj, Device dev, string name) { @@ -138,7 +55,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.Pipeline, obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkDescriptorSet obj, Device dev, string name) { @@ -146,7 +63,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.DescriptorSet, (ulong)obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkSemaphore obj, Device dev, string name) { @@ -154,7 +71,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.Semaphore, (ulong)obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } public static void SetDebugMarkerName (this VkFence obj, Device dev, string name) { @@ -162,7 +79,7 @@ namespace vke { return; VkDebugUtilsObjectNameInfoEXT dmo = new VkDebugUtilsObjectNameInfoEXT (VkObjectType.Fence, (ulong)obj.Handle) { pObjectName = name.Pin () }; - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (dev.Handle, ref dmo)); name.Unpin (); } #endregion @@ -174,7 +91,7 @@ namespace vke { SpecializationInfo specializationInfo = null, string entryPoint = "main") { using (shaderc.Result res = comp.Compile (shaderPath, shaderKind)) { - if (res.Status != shaderc.Status.Success) + if (res.Status != shaderc.Status.Success) throw new Exception ($"Shaderc compilation failure: {res.ErrorMessage}"); VkShaderStageFlags stageFlags = Utils.ShaderKindToStageFlag (shaderKind); return new ShaderInfo (dev, stageFlags, res.CodePointer, (UIntPtr)res.CodeLength, specializationInfo, entryPoint); @@ -185,7 +102,7 @@ namespace vke { #region temp public static void Dump (this Memory mem) { Span s = mem.Span; - for (int i = 0; i < s.Length; i++) + for (int i = 0; i < s.Length; i++) Console.Write (s[i].ToString("X2") + (i % 32 == 0 ? "\n" : " ")); } #endregion diff --git a/vke/src/MemoryPool.cs b/vke/src/MemoryPool.cs index b5196e1..76a1901 100644 --- a/vke/src/MemoryPool.cs +++ b/vke/src/MemoryPool.cs @@ -46,7 +46,7 @@ namespace vke { bufferImageGranularity = dev.phy.Limits.bufferImageGranularity; memInfo.allocationSize = size; memInfo.memoryTypeIndex = memoryTypeIndex; - Utils.CheckResult (vkAllocateMemory (dev.VkDev, ref memInfo, IntPtr.Zero, out vkMemory)); + Utils.CheckResult (vkAllocateMemory (Dev.Handle, ref memInfo, IntPtr.Zero, out vkMemory)); } /// /// Allocate memory for a new resource in this memory pool. @@ -140,13 +140,13 @@ namespace vke { /// Size. /// Offset. public void Map (ulong size = Vk.WholeSize, ulong offset = 0) { - Utils.CheckResult (vkMapMemory (dev.VkDev, vkMemory, offset, size, 0, ref mappedPointer)); + Utils.CheckResult (vkMapMemory (Dev.Handle, vkMemory, offset, size, 0, ref mappedPointer)); } /// /// Unmap previously mapped memory of this pool. /// public void Unmap () { - vkUnmapMemory (dev.VkDev, vkMemory); + vkUnmapMemory (Dev.Handle, vkMemory); mappedPointer = IntPtr.Zero; } @@ -160,7 +160,7 @@ namespace vke { } else System.Diagnostics.Debug.WriteLine ("MemoryPool disposed by Finalizer."); - vkFreeMemory (dev.VkDev, vkMemory, IntPtr.Zero); + vkFreeMemory (Dev.Handle, vkMemory, IntPtr.Zero); disposedValue = true; } } diff --git a/vke/src/PinnedObjects.cs b/vke/src/PinnedObjects.cs deleted file mode 100644 index 525a311..0000000 --- a/vke/src/PinnedObjects.cs +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2019 Jean-Philippe Bruyère -// -// This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT) -using System; -using System.Collections.Generic; -using System.Runtime.InteropServices; - -namespace vke { - /// - /// Keep pinned object gc handles and free them on dispose. - /// - public class PinnedObjects : IDisposable { - public readonly List Handles = new List (); - - public void Dispose () { - for (int i = Handles.Count - 1; i >= 0; i--) - Handles[i].Free (); - GC.SuppressFinalize (this); - } - } -} diff --git a/vke/src/base/Activable.cs b/vke/src/base/Activable.cs index 9b746e9..02dec89 100644 --- a/vke/src/base/Activable.cs +++ b/vke/src/base/Activable.cs @@ -74,7 +74,7 @@ namespace vke { VkDebugUtilsObjectNameInfoEXT dmo = DebugUtilsInfo; dmo.pObjectName = name.Pin(); - Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (Dev.VkDev, ref dmo)); + Utils.CheckResult (vkSetDebugUtilsObjectNameEXT (Dev.Handle, ref dmo)); name.Unpin (); } /// diff --git a/vke/src/base/Buffer.cs b/vke/src/base/Buffer.cs index 263ed52..74f74bc 100644 --- a/vke/src/base/Buffer.cs +++ b/vke/src/base/Buffer.cs @@ -47,7 +47,7 @@ namespace vke { /// public sealed override void Activate () { if (state != ActivableState.Activated) { - Utils.CheckResult (vkCreateBuffer (Dev.VkDev, ref createInfo, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateBuffer (Dev.Handle, ref createInfo, IntPtr.Zero, out handle)); #if MEMORY_POOLS Dev.resourceManager.Add (this); #else @@ -61,14 +61,14 @@ namespace vke { #region Implement abstract members of the Resource abstract class. internal override void updateMemoryRequirements () { - vkGetBufferMemoryRequirements (Dev.VkDev, handle, out memReqs); + vkGetBufferMemoryRequirements (Dev.Handle, handle, out memReqs); } internal override void bindMemory () { #if MEMORY_POOLS - Utils.CheckResult (vkBindBufferMemory (Dev.VkDev, handle, memoryPool.vkMemory, poolOffset)); + Utils.CheckResult (vkBindBufferMemory (Dev.Handle, handle, memoryPool.vkMemory, poolOffset)); #else - Utils.CheckResult (vkBindBufferMemory (Dev.VkDev, handle, vkMemory, 0)); + Utils.CheckResult (vkBindBufferMemory (Dev.Handle, handle, vkMemory, 0)); #endif } #endregion @@ -145,7 +145,7 @@ namespace vke { protected override void Dispose (bool disposing) { if (state == ActivableState.Activated) { base.Dispose (disposing); - vkDestroyBuffer (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyBuffer (Dev.Handle, handle, IntPtr.Zero); } state = ActivableState.Disposed; } diff --git a/vke/src/base/CommandPool.cs b/vke/src/base/CommandPool.cs index a77d800..1278fa6 100644 --- a/vke/src/base/CommandPool.cs +++ b/vke/src/base/CommandPool.cs @@ -49,7 +49,7 @@ namespace vke { VkCommandPoolCreateInfo infos = VkCommandPoolCreateInfo.New(); infos.queueFamilyIndex = QFamIndex; infos.flags = Flags; - Utils.CheckResult (vkCreateCommandPool (Dev.VkDev, ref infos, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateCommandPool (Dev.Handle, ref infos, IntPtr.Zero, out handle)); } base.Activate (); } @@ -65,9 +65,9 @@ namespace vke { infos.level = VkCommandBufferLevel.Primary; infos.commandBufferCount = 1; - Utils.CheckResult (vkAllocateCommandBuffers (Dev.VkDev, ref infos, out buff)); + Utils.CheckResult (vkAllocateCommandBuffers (Dev.Handle, ref infos, out buff)); - return new PrimaryCommandBuffer (Dev.VkDev, this, buff); + return new PrimaryCommandBuffer (Dev.Handle, this, buff); } /// /// Allocates single primary command buffer. @@ -81,9 +81,9 @@ namespace vke { infos.level = VkCommandBufferLevel.Secondary; infos.commandBufferCount = 1; - Utils.CheckResult (vkAllocateCommandBuffers (Dev.VkDev, ref infos, out buff)); + Utils.CheckResult (vkAllocateCommandBuffers (Dev.Handle, ref infos, out buff)); - return new SecondaryCommandBuffer (Dev.VkDev, this, buff); + return new SecondaryCommandBuffer (Dev.Handle, this, buff); } /// @@ -97,11 +97,11 @@ namespace vke { infos.level = VkCommandBufferLevel.Primary; infos.commandBufferCount = count; VkCommandBuffer[] buffs = new VkCommandBuffer[count]; - Utils.CheckResult (vkAllocateCommandBuffers (Dev.VkDev, ref infos, buffs.Pin())); + Utils.CheckResult (vkAllocateCommandBuffers (Dev.Handle, ref infos, buffs.Pin())); buffs.Unpin (); PrimaryCommandBuffer[] cmds = new PrimaryCommandBuffer[count]; for (int i = 0; i < count; i++) - cmds[i] = new PrimaryCommandBuffer (Dev.VkDev, this, buffs[i]); + cmds[i] = new PrimaryCommandBuffer (Dev.Handle, this, buffs[i]); return cmds; } @@ -113,7 +113,7 @@ namespace vke { /// /// Set `ReleaseResources` flag to recycles all of the resources from the command pool back to the system. public void Reset (VkCommandPoolResetFlags flags = 0) { - Vk.vkResetCommandPool (Dev.VkDev, handle, flags); + Vk.vkResetCommandPool (Dev.Handle, handle, flags); } /// /// Allocates a new command buffer and automatically start it. @@ -132,7 +132,7 @@ namespace vke { public void FreeCommandBuffers (params CommandBuffer[] cmds) { if (cmds.Length == 1) { VkCommandBuffer hnd = cmds[0].Handle; - vkFreeCommandBuffers (Dev.VkDev, handle, 1, ref hnd); + vkFreeCommandBuffers (Dev.Handle, handle, 1, ref hnd); return; } int sizeElt = Marshal.SizeOf (); @@ -145,7 +145,7 @@ namespace vke { count++; } if (count > 0) - vkFreeCommandBuffers (Dev.VkDev, handle, (uint)count, cmdsPtr); + vkFreeCommandBuffers (Dev.Handle, handle, (uint)count, cmdsPtr); Marshal.FreeHGlobal (cmdsPtr); } @@ -159,7 +159,7 @@ namespace vke { if (!disposing) System.Diagnostics.Debug.WriteLine ("VKE CommandPool disposed by finalizer"); if (state == ActivableState.Activated) - vkDestroyCommandPool (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyCommandPool (Dev.Handle, handle, IntPtr.Zero); base.Dispose (disposing); } #endregion diff --git a/vke/src/base/ComputePipeline.cs b/vke/src/base/ComputePipeline.cs index b3c6ec5..a202f11 100644 --- a/vke/src/base/ComputePipeline.cs +++ b/vke/src/base/ComputePipeline.cs @@ -38,7 +38,7 @@ namespace vke { info.basePipelineHandle = 0; info.basePipelineIndex = 0; - Utils.CheckResult (Vk.vkCreateComputePipelines (Dev.VkDev, Cache == null ? VkPipelineCache.Null : Cache.handle, 1, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (Vk.vkCreateComputePipelines (Dev.Handle, Cache == null ? VkPipelineCache.Null : Cache.handle, 1, ref info, IntPtr.Zero, out handle)); } } base.Activate (); diff --git a/vke/src/base/DescriptorPool.cs b/vke/src/base/DescriptorPool.cs index 081c0ea..4cbafd9 100644 --- a/vke/src/base/DescriptorPool.cs +++ b/vke/src/base/DescriptorPool.cs @@ -48,7 +48,7 @@ namespace vke { info.pPoolSizes = PoolSizes.Pin (); info.maxSets = MaxSets; - Utils.CheckResult (vkCreateDescriptorPool (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateDescriptorPool (Dev.Handle, ref info, IntPtr.Zero, out handle)); PoolSizes.Unpin (); } base.Activate (); @@ -69,20 +69,20 @@ namespace vke { allocInfo.descriptorSetCount = (uint)descriptorSet.descriptorSetLayouts.Count; allocInfo.pSetLayouts = descriptorSet.descriptorSetLayouts.Pin(); - Utils.CheckResult (vkAllocateDescriptorSets (Dev.VkDev, ref allocInfo, out descriptorSet.handle)); + Utils.CheckResult (vkAllocateDescriptorSets (Dev.Handle, ref allocInfo, out descriptorSet.handle)); descriptorSet.descriptorSetLayouts.Unpin (); } public void FreeDescriptorSet (params DescriptorSet[] descriptorSets) { if (descriptorSets.Length == 1) { - Utils.CheckResult (vkFreeDescriptorSets (Dev.VkDev, handle, 1, ref descriptorSets[0].handle)); + Utils.CheckResult (vkFreeDescriptorSets (Dev.Handle, handle, 1, ref descriptorSets[0].handle)); return; } - Utils.CheckResult (vkFreeDescriptorSets (Dev.VkDev, handle, (uint)descriptorSets.Length, descriptorSets.Pin())); + Utils.CheckResult (vkFreeDescriptorSets (Dev.Handle, handle, (uint)descriptorSets.Length, descriptorSets.Pin())); descriptorSets.Unpin (); } public void Reset () { - Utils.CheckResult (vkResetDescriptorPool (Dev.VkDev, handle, 0)); + Utils.CheckResult (vkResetDescriptorPool (Dev.Handle, handle, 0)); } public override string ToString () { @@ -94,7 +94,7 @@ namespace vke { if (!disposing) System.Diagnostics.Debug.WriteLine ($"CVKL DescriptorPool '{name}' disposed by finalizer"); if (state == ActivableState.Activated) - vkDestroyDescriptorPool (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyDescriptorPool (Dev.Handle, handle, IntPtr.Zero); base.Dispose (disposing); } #endregion diff --git a/vke/src/base/DescriptorSetLayout.cs b/vke/src/base/DescriptorSetLayout.cs index 3bcc963..3b29edc 100644 --- a/vke/src/base/DescriptorSetLayout.cs +++ b/vke/src/base/DescriptorSetLayout.cs @@ -38,7 +38,7 @@ namespace vke { public override void Activate () { if (state != ActivableState.Activated) { VkDescriptorSetLayoutCreateInfo info = new VkDescriptorSetLayoutCreateInfo (Flags, (uint)Bindings.Count, Bindings.Pin()); - Utils.CheckResult (vkCreateDescriptorSetLayout (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateDescriptorSetLayout (Dev.Handle, ref info, IntPtr.Zero, out handle)); Bindings.Unpin (); } base.Activate (); @@ -53,7 +53,7 @@ namespace vke { if (!disposing) System.Diagnostics.Debug.WriteLine ("VKE DescriptorSetLayout disposed by finalizer"); if (state == ActivableState.Activated) - vkDestroyDescriptorSetLayout (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyDescriptorSetLayout (Dev.Handle, handle, IntPtr.Zero); base.Dispose (disposing); } #endregion diff --git a/vke/src/base/DescriptorSetWrites.cs b/vke/src/base/DescriptorSetWrites.cs index 80961dc..604f718 100644 --- a/vke/src/base/DescriptorSetWrites.cs +++ b/vke/src/base/DescriptorSetWrites.cs @@ -85,7 +85,7 @@ namespace vke { wds.descriptorType = binding.descriptorType; wds.descriptorCount = binding.descriptorCount; wds.dstBinding = binding.binding; - WriteDescriptorSets.Add (wds); + WriteDescriptorSets.Add (wds); } /// @@ -129,8 +129,8 @@ namespace vke { WriteDescriptorSets[wdsPtr] = wds; wdsPtr++; } - vkUpdateDescriptorSets (dev.VkDev, (uint)WriteDescriptorSets.Count, WriteDescriptorSets.Pin (pinCtx), 0, IntPtr.Zero); - } + vkUpdateDescriptorSets (dev.Handle, (uint)WriteDescriptorSets.Count, WriteDescriptorSets.Pin (pinCtx), 0, IntPtr.Zero); + } } /// /// execute the descriptors writes targeting descriptorSets setted on AddWriteInfo call @@ -178,37 +178,37 @@ namespace vke { Device dev; List WriteDescriptorSets = new List (); List descriptors = new List (); - + public DescriptorSetWrites2 (Device device) { dev = device; } public void AddWriteInfo (DescriptorSet destSet, VkDescriptorSetLayoutBinding binding, VkDescriptorBufferInfo descriptor) { - if (!descriptors.Contains (descriptor)) + if (!descriptors.Contains (descriptor)) descriptors.Add (descriptor); VkWriteDescriptorSet wds = VkWriteDescriptorSet.New(); wds.descriptorType = binding.descriptorType; wds.descriptorCount = binding.descriptorCount; wds.dstBinding = binding.binding; - wds.dstSet = destSet.handle; - wds.pBufferInfo = descriptor.Pin (); - - WriteDescriptorSets.Add (wds); + wds.dstSet = destSet.handle; + wds.pBufferInfo = descriptor.Pin (); + + WriteDescriptorSets.Add (wds); } public void AddWriteInfo (DescriptorSet destSet, VkDescriptorSetLayoutBinding binding, VkDescriptorImageInfo descriptor) { - if (!descriptors.Contains (descriptor)) + if (!descriptors.Contains (descriptor)) descriptors.Add (descriptor); VkWriteDescriptorSet wds = VkWriteDescriptorSet.New(); wds.descriptorType = binding.descriptorType; wds.descriptorCount = binding.descriptorCount; wds.dstBinding = binding.binding; - wds.dstSet = destSet.handle; + wds.dstSet = destSet.handle; wds.pImageInfo = descriptor.Pin (); - - WriteDescriptorSets.Add (wds); + + WriteDescriptorSets.Add (wds); } public void Update () { - vkUpdateDescriptorSets (dev.VkDev, (uint)WriteDescriptorSets.Count, WriteDescriptorSets.Pin (), 0, IntPtr.Zero); + vkUpdateDescriptorSets (dev.Handle, (uint)WriteDescriptorSets.Count, WriteDescriptorSets.Pin (), 0, IntPtr.Zero); WriteDescriptorSets.Unpin (); } diff --git a/vke/src/base/Device.cs b/vke/src/base/Device.cs index 6560165..cb96241 100644 --- a/vke/src/base/Device.cs +++ b/vke/src/base/Device.cs @@ -20,7 +20,9 @@ namespace vke { public readonly PhysicalDevice phy; /**Vulkan physical device class*/ VkDevice dev; + [Obsolete("Use Handle instead")] public VkDevice VkDev => dev; /**Vulkan logical device handle*/ + public VkDevice Handle => dev; /**Vulkan logical device handle*/ internal List queues = new List (); @@ -68,6 +70,8 @@ namespace vke { for (int i = 0; i < extensions.Length; i++) { if (phy.GetDeviceExtensionSupported (extensions[i])) deviceExtensions.Add (new FixedUtf8String (extensions[i])); + else + Console.WriteLine ($"Unsupported device extension: {extensions[i]}"); } VkDeviceCreateInfo deviceCreateInfo = VkDeviceCreateInfo.New (); diff --git a/vke/src/base/Fence.cs b/vke/src/base/Fence.cs index d1fe6c0..80c5a9c 100644 --- a/vke/src/base/Fence.cs +++ b/vke/src/base/Fence.cs @@ -25,7 +25,7 @@ namespace vke { public sealed override void Activate () { if (state != ActivableState.Activated) { - Utils.CheckResult (vkCreateFence (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateFence (Dev.Handle, ref info, IntPtr.Zero, out handle)); } base.Activate (); } @@ -34,13 +34,13 @@ namespace vke { /// /// Time out before cancelling the wait. public void Wait (ulong timeOut = UInt64.MaxValue) { - vkWaitForFences (Dev.VkDev, 1, ref handle, 1, timeOut); + vkWaitForFences (Dev.Handle, 1, ref handle, 1, timeOut); } /// /// put this fence in the unsignaled state. /// public void Reset () { - vkResetFences (Dev.VkDev, 1, ref handle); + vkResetFences (Dev.Handle, 1, ref handle); } public override string ToString () { @@ -52,7 +52,7 @@ namespace vke { #region IDisposable Support protected override void Dispose (bool disposing) { if (state == ActivableState.Activated) - vkDestroyFence (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyFence (Dev.Handle, handle, IntPtr.Zero); if (!disposing) System.Diagnostics.Debug.WriteLine ("VKE Activable object disposed by finalizer"); base.Dispose (disposing); @@ -64,12 +64,12 @@ namespace vke { public class Fences : Collection, IDisposable { public void Wait (ulong timeOut = UInt64.MaxValue) { VkFence[] fences = Items.Cast ().ToArray (); - vkWaitForFences (Items[0].Dev.VkDev, (uint)Count, fences.Pin (), 1, timeOut); + vkWaitForFences (Items[0].Dev.Handle, (uint)Count, fences.Pin (), 1, timeOut); fences.Unpin (); } public void Reset () { VkFence[] fences = Items.Cast ().ToArray (); - vkResetFences (Items[0].Dev.VkDev, (uint)Count, fences.Pin ()); + vkResetFences (Items[0].Dev.Handle, (uint)Count, fences.Pin ()); fences.Unpin (); } diff --git a/vke/src/base/FrameBuffer.cs b/vke/src/base/FrameBuffer.cs index f2bdd69..5885024 100644 --- a/vke/src/base/FrameBuffer.cs +++ b/vke/src/base/FrameBuffer.cs @@ -93,7 +93,7 @@ namespace vke { if (PNext != null) createInfo.pNext = PNext.GetPointer(); - Utils.CheckResult (vkCreateFramebuffer (renderPass.Dev.VkDev, ref createInfo, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateFramebuffer (renderPass.Dev.Handle, ref createInfo, IntPtr.Zero, out handle)); views.Unpin (); if (PNext != null) diff --git a/vke/src/base/GraphicPipeline.cs b/vke/src/base/GraphicPipeline.cs index bb9c3e1..4db0a33 100644 --- a/vke/src/base/GraphicPipeline.cs +++ b/vke/src/base/GraphicPipeline.cs @@ -109,7 +109,7 @@ namespace vke { info.pTessellationState = tessellationInfo.Pin (pctx); } - Utils.CheckResult (vkCreateGraphicsPipelines (Dev.VkDev, Cache == null ? VkPipelineCache.Null : Cache.handle, 1, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateGraphicsPipelines (Dev.Handle, Cache == null ? VkPipelineCache.Null : Cache.handle, 1, ref info, IntPtr.Zero, out handle)); } } base.Activate (); diff --git a/vke/src/base/HostBuffer.cs b/vke/src/base/HostBuffer.cs index 19d59e6..89cebce 100644 --- a/vke/src/base/HostBuffer.cs +++ b/vke/src/base/HostBuffer.cs @@ -106,7 +106,7 @@ namespace vke { #endif size = (ulong)((endIndex - startIndex) * TSize) }; - vkFlushMappedMemoryRanges (Dev.VkDev, 1, ref mr); + vkFlushMappedMemoryRanges (Dev.Handle, 1, ref mr); } /// /// Retrieve a Span<T> on native memory of the buffer. Automatically Map it if not yet done. diff --git a/vke/src/base/Image.cs b/vke/src/base/Image.cs index 9c5e815..7e41054 100644 --- a/vke/src/base/Image.cs +++ b/vke/src/base/Image.cs @@ -25,7 +25,7 @@ namespace vke { internal VkImage handle; VkImageCreateInfo info = VkImageCreateInfo.New (); - uint[] queueFalillies; + uint[] queuesFamillies; /// /// if true, the vkImage handle will not be destroyed on dispose, useful to create image for swapchain @@ -82,6 +82,36 @@ namespace vke { VkImageType type = VkImageType.Image2D, VkSampleCountFlags samples = VkSampleCountFlags.SampleCount1, VkImageTiling tiling = VkImageTiling.Optimal, uint mipsLevels = 1, uint layers = 1, uint depth = 1, VkImageCreateFlags createFlags = 0, VkSharingMode sharingMode = VkSharingMode.Exclusive, params uint[] queuesFamillies) + : this (device, format, usage, _memoryPropertyFlags, width, height, 0, type, samples, tiling, + mipsLevels, layers, depth, createFlags, sharingMode, queuesFamillies) { } + /// + /// Create a new exportable Image, see VK_KHR_external_memory for more information. + /// + /// + /// if exportHandleType is not 0, image will be exportable depending on the HandleType bitmask provided. + /// Initial layout will be automatically set to Undefined if tiling is optimal and Preinitialized if tiling is linear. + /// + /// The logical device that create the image. + /// format and type of the texel blocks that will be contained in the image + /// bitmask describing the intended usage of the image. + /// Memory property flags. + /// number of data in the X dimension of the image. + /// number of data in the Y dimension of the image. + /// zero, or a bitmask of @ref VkExternalMemoryHandleTypeFlags specifying one or more external memory handle types. + /// value specifying the basic dimensionality of the image. Layers in array textures do not count as a dimension for the purposes of the image type. + /// number of sample per texel. + /// tiling arrangement of the texel blocks in memory. + /// describes the number of levels of detail available for minified sampling of the image. + /// number of layers in the image. + /// number of data in the Z dimension of the image + /// bitmask describing additional parameters of the image. + /// value specifying the sharing mode of the image when it will be accessed by multiple queue families. + /// list of queue families that will access this image (ignored if sharingMode is not CONCURRENT). + public Image (Device device, VkFormat format, VkImageUsageFlags usage, VkMemoryPropertyFlags _memoryPropertyFlags, + uint width, uint height, VkExternalMemoryHandleTypeFlags exportHandleType, + VkImageType type = VkImageType.Image2D, VkSampleCountFlags samples = VkSampleCountFlags.SampleCount1, + VkImageTiling tiling = VkImageTiling.Optimal, uint mipsLevels = 1, uint layers = 1, uint depth = 1, + VkImageCreateFlags createFlags = 0, VkSharingMode sharingMode = VkSharingMode.Exclusive, params uint[] queuesFamillies) : base (device, _memoryPropertyFlags) { info.imageType = type; @@ -98,12 +128,16 @@ namespace vke { info.sharingMode = sharingMode; info.flags = createFlags; - this.queueFalillies = queuesFamillies; + this.queuesFamillies = queuesFamillies; lastKnownLayout = info.initialLayout; + this.importExportHandleTypes = exportHandleType; Activate (); } - + public Image (Device device, VkMemoryPropertyFlags memoryProperties, VkImageCreateInfo info, params uint[] queuesFamillies) : + base (device, memoryProperties) { + this.info = info; + } /// /// Import vkImage handle into a new Image class, native handle will be preserve on destruction. /// @@ -398,24 +432,35 @@ namespace vke { #endregion internal override void updateMemoryRequirements () { - vkGetImageMemoryRequirements (Dev.VkDev, handle, out memReqs); + vkGetImageMemoryRequirements (Dev.Handle, handle, out memReqs); } internal override void bindMemory () { #if MEMORY_POOLS - Utils.CheckResult (vkBindImageMemory (Dev.VkDev, handle, memoryPool.vkMemory, poolOffset)); + Utils.CheckResult (vkBindImageMemory (Dev.Handle, handle, memoryPool.vkMemory, poolOffset)); #else - Utils.CheckResult (vkBindImageMemory (Dev.VkDev, handle, vkMemory, 0)); + Utils.CheckResult (vkBindImageMemory (Dev.Handle, handle, vkMemory, 0)); #endif } public sealed override void Activate () { if (state != ActivableState.Activated) { - if (info.sharingMode == VkSharingMode.Concurrent && queueFalillies?.Length > 0) { - info.queueFamilyIndexCount = (uint)queueFalillies.Length; - info.pQueueFamilyIndices = queueFalillies.Pin (); - Utils.CheckResult (vkCreateImage (Dev.VkDev, ref info, IntPtr.Zero, out handle)); - queueFalillies.Unpin (); + VkExternalMemoryImageCreateInfo externalImgInfo = VkExternalMemoryImageCreateInfo.New (); + if (importExportHandleTypes > 0 && importedHandle != IntPtr.Zero) { + externalImgInfo.handleTypes = importExportHandleTypes; + info.pNext = externalImgInfo.Pin (); + } + + if (info.sharingMode == VkSharingMode.Concurrent && queuesFamillies?.Length > 0) { + info.queueFamilyIndexCount = (uint)queuesFamillies.Length; + info.pQueueFamilyIndices = queuesFamillies.Pin (); + Utils.CheckResult (vkCreateImage (Dev.Handle, ref info, IntPtr.Zero, out handle)); + queuesFamillies.Unpin (); } else - Utils.CheckResult (vkCreateImage (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateImage (Dev.Handle, ref info, IntPtr.Zero, out handle)); + + if (importExportHandleTypes > 0 && importedHandle != IntPtr.Zero) + externalImgInfo.Unpin (); + + info.pNext = IntPtr.Zero; #if MEMORY_POOLS Dev.resourceManager.Add (this); #else @@ -428,6 +473,19 @@ namespace vke { base.Activate (); } + public Image ExportTo (Device targetdev, VkExternalMemoryHandleTypeFlags handleTypes) { + VkMemoryHostPointerPropertiesEXT hostPointerProps = VkMemoryHostPointerPropertiesEXT.New(); + VkResult res = vkGetMemoryHostPointerPropertiesEXT (Dev.Handle, handleTypes, importedHandle, out hostPointerProps); + if (res != VkResult.Success) + return null; + Image img = new Image (targetdev, memoryFlags, this.info, queuesFamillies); + img.importExportHandleTypes = handleTypes; + img.importedHandle = (IntPtr)Memory.Handle; + img.importedMemoryTypeBits = hostPointerProps.memoryTypeBits; + img.Activate (); + return img; + } + public void CreateView (VkImageViewType type = VkImageViewType.ImageView2D, VkImageAspectFlags aspectFlags = VkImageAspectFlags.Color, int layerCount = -1, uint baseMipLevel = 0, int levelCount = -1, uint baseArrayLayer = 0, VkComponentSwizzle r = VkComponentSwizzle.R, @@ -435,6 +493,9 @@ namespace vke { VkComponentSwizzle b = VkComponentSwizzle.B, VkComponentSwizzle a = VkComponentSwizzle.A) { + if (type == VkImageViewType.ImageView2D) + layerCount = 1; + VkImageView view = default (VkImageView); VkImageViewCreateInfo viewInfo = VkImageViewCreateInfo.New (); viewInfo.image = handle; @@ -450,7 +511,7 @@ namespace vke { viewInfo.subresourceRange.baseArrayLayer = baseArrayLayer; viewInfo.subresourceRange.layerCount = layerCount < 0 ? info.arrayLayers : (uint)layerCount; - Utils.CheckResult (vkCreateImageView (Dev.VkDev, ref viewInfo, IntPtr.Zero, out view)); + Utils.CheckResult (vkCreateImageView (Dev.Handle, ref viewInfo, IntPtr.Zero, out view)); if (Descriptor.imageView.Handle != 0) Dev.DestroyImageView (Descriptor.imageView); @@ -491,7 +552,7 @@ namespace vke { sampInfo.compareOp = VkCompareOp.Never; sampInfo.borderColor = VkBorderColor.FloatOpaqueWhite; - Utils.CheckResult (vkCreateSampler (Dev.VkDev, ref sampInfo, IntPtr.Zero, out sampler)); + Utils.CheckResult (vkCreateSampler (Dev.Handle, ref sampInfo, IntPtr.Zero, out sampler)); if (Descriptor.sampler.Handle != 0) Dev.DestroySampler (Descriptor.sampler); @@ -762,7 +823,7 @@ namespace vke { mipLevel = mipLevel, arrayLayer = arrayLayer }; - vkGetImageSubresourceLayout (Dev.VkDev, this.handle, ref subresource, out VkSubresourceLayout result); + vkGetImageSubresourceLayout (Dev.Handle, this.handle, ref subresource, out VkSubresourceLayout result); return result; } diff --git a/vke/src/base/Instance.cs b/vke/src/base/Instance.cs index ec372b0..4301963 100644 --- a/vke/src/base/Instance.cs +++ b/vke/src/base/Instance.cs @@ -104,8 +104,8 @@ namespace vke { Vk.LoadInstanceFunctionPointers (inst); } } - public string[] SupportedExtensions () => SupportedExtensions (IntPtr.Zero); - public string[] SupportedExtensions (IntPtr layer) { + public static string[] SupportedExtensions () => SupportedExtensions (IntPtr.Zero); + public static string[] SupportedExtensions (IntPtr layer) { Utils.CheckResult (vkEnumerateInstanceExtensionProperties (layer, out uint count, IntPtr.Zero)); int sizeStruct = Marshal.SizeOf (); diff --git a/vke/src/base/PNextNode.cs b/vke/src/base/PNextNode.cs index 9afd001..3037202 100644 --- a/vke/src/base/PNextNode.cs +++ b/vke/src/base/PNextNode.cs @@ -3,6 +3,7 @@ // This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT) using System; using System.Reflection; +using Vulkan; namespace vke { public abstract class PNextNode { diff --git a/vke/src/base/PhysicalDevice.cs b/vke/src/base/PhysicalDevice.cs index b48a9f7..57a50b0 100644 --- a/vke/src/base/PhysicalDevice.cs +++ b/vke/src/base/PhysicalDevice.cs @@ -68,7 +68,6 @@ namespace vke { public bool HasSwapChainSupport { get; private set; } public IntPtr Handle => phy; - public bool GetDeviceExtensionSupported (string extName) => SupportedExtensions (IntPtr.Zero).Contains (extName); #region CTOR internal PhysicalDevice (IntPtr vkPhy) @@ -94,6 +93,8 @@ namespace vke { } #endregion + public bool GetDeviceExtensionSupported (string extName) => SupportedExtensions ().Contains (extName); + public string [] SupportedExtensions () => SupportedExtensions (IntPtr.Zero); public string [] SupportedExtensions (IntPtr layer) { CheckResult (vkEnumerateDeviceExtensionProperties (phy, layer, out uint count, IntPtr.Zero)); diff --git a/vke/src/base/Pipeline.cs b/vke/src/base/Pipeline.cs index 3461eca..c07a73b 100644 --- a/vke/src/base/Pipeline.cs +++ b/vke/src/base/Pipeline.cs @@ -74,7 +74,7 @@ namespace vke { } else System.Diagnostics.Debug.WriteLine ($"Pipeline '{name}' disposed by finalizer"); - vkDestroyPipeline (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyPipeline (Dev.Handle, handle, IntPtr.Zero); } else if (disposing) System.Diagnostics.Debug.WriteLine ($"Calling dispose on unactive Pipeline: {name}"); diff --git a/vke/src/base/PipelineCache.cs b/vke/src/base/PipelineCache.cs index 4abd45f..abc739b 100644 --- a/vke/src/base/PipelineCache.cs +++ b/vke/src/base/PipelineCache.cs @@ -67,7 +67,7 @@ namespace vke { } } - Utils.CheckResult (vkCreatePipelineCache (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreatePipelineCache (Dev.Handle, ref info, IntPtr.Zero, out handle)); if (info.pInitialData != IntPtr.Zero) Marshal.FreeHGlobal (info.pInitialData); @@ -95,9 +95,9 @@ namespace vke { File.Delete (path); UIntPtr dataSize; - Utils.CheckResult (vkGetPipelineCacheData (Dev.VkDev, handle, out dataSize, IntPtr.Zero)); + Utils.CheckResult (vkGetPipelineCacheData (Dev.Handle, handle, out dataSize, IntPtr.Zero)); byte[] pData = new byte[(int)dataSize]; - Utils.CheckResult (vkGetPipelineCacheData (Dev.VkDev, handle, out dataSize, pData.Pin ())); + Utils.CheckResult (vkGetPipelineCacheData (Dev.Handle, handle, out dataSize, pData.Pin ())); pData.Unpin (); using (FileStream fs = File.Open (path, FileMode.CreateNew)) @@ -113,7 +113,7 @@ namespace vke { if (state == ActivableState.Activated) { if (SaveOnDispose) Save (); - vkDestroyPipelineCache (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyPipelineCache (Dev.Handle, handle, IntPtr.Zero); } base.Dispose (disposing); } diff --git a/vke/src/base/PipelineLayout.cs b/vke/src/base/PipelineLayout.cs index 0b68a63..206a0ef 100644 --- a/vke/src/base/PipelineLayout.cs +++ b/vke/src/base/PipelineLayout.cs @@ -57,7 +57,7 @@ namespace vke { info.pushConstantRangeCount = (uint)PushConstantRanges.Count; info.pPushConstantRanges = PushConstantRanges.Pin(); } - Utils.CheckResult (vkCreatePipelineLayout (Dev.VkDev, ref info, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreatePipelineLayout (Dev.Handle, ref info, IntPtr.Zero, out handle)); if (dsls.Length > 0) dsls.Unpin (); @@ -80,7 +80,7 @@ namespace vke { } else System.Diagnostics.Debug.WriteLine ("VKE Activable PipelineLayout disposed by finalizer"); - vkDestroyPipelineLayout (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyPipelineLayout (Dev.Handle, handle, IntPtr.Zero); }else if (disposing) System.Diagnostics.Debug.WriteLine ("Calling dispose on unactive PipelineLayout"); diff --git a/vke/src/base/QueryPool.cs b/vke/src/base/QueryPool.cs index 482c32d..f17c46b 100644 --- a/vke/src/base/QueryPool.cs +++ b/vke/src/base/QueryPool.cs @@ -110,7 +110,7 @@ namespace vke { public override void Activate () { if (state != ActivableState.Activated) { VkQueryPoolCreateInfo infos = createInfos; - Utils.CheckResult (vkCreateQueryPool (Dev.VkDev, ref infos, IntPtr.Zero, out handle)); + Utils.CheckResult (vkCreateQueryPool (Dev.Handle, ref infos, IntPtr.Zero, out handle)); } base.Activate (); } @@ -118,7 +118,7 @@ namespace vke { public ulong[] GetResults () { ulong[] results = new ulong[resultLength * createInfos.queryCount]; IntPtr ptr = results.Pin (); - vkGetQueryPoolResults (Dev.VkDev, handle, 0, createInfos.queryCount, (UIntPtr)(resultLength * createInfos.queryCount* sizeof (ulong)), ptr, sizeof (ulong), VkQueryResultFlags.QueryResult64); + vkGetQueryPoolResults (Dev.Handle, handle, 0, createInfos.queryCount, (UIntPtr)(resultLength * createInfos.queryCount* sizeof (ulong)), ptr, sizeof (ulong), VkQueryResultFlags.QueryResult64); results.Unpin (); return results; } @@ -133,7 +133,7 @@ namespace vke { if (!disposing) System.Diagnostics.Debug.WriteLine ("VKE QueryPool disposed by finalizer"); if (state == ActivableState.Activated) - vkDestroyQueryPool (Dev.VkDev, handle, IntPtr.Zero); + vkDestroyQueryPool (Dev.Handle, handle, IntPtr.Zero); base.Dispose (disposing); } #endregion diff --git a/vke/src/base/Queue.cs b/vke/src/base/Queue.cs index 49b99b2..bdcab88 100644 --- a/vke/src/base/Queue.cs +++ b/vke/src/base/Queue.cs @@ -59,7 +59,7 @@ namespace vke { public class Queue { - internal VkQueue handle; + protected VkQueue handle; internal Device dev; public Device Dev => dev; @@ -67,6 +67,7 @@ namespace vke { public uint qFamIndex; public uint index;//index in queue family public float priority; + public VkQueue Handle => handle; protected Queue () { } public Queue (Device _dev, VkQueueFlags requestedFlags, float _priority = 0.0f) { @@ -76,6 +77,8 @@ namespace vke { qFamIndex = searchQFamily (requestedFlags); dev.queues.Add (this); } + public CommandPool CreateCommandPool (VkCommandPoolCreateFlags flags = 0) + => new CommandPool (dev, qFamIndex, flags); /// /// End command recording, submit, and wait queue idle /// @@ -109,7 +112,7 @@ namespace vke { } internal void updateHandle () { - vkGetDeviceQueue (dev.VkDev, qFamIndex, index, out handle); + vkGetDeviceQueue (Dev.Handle, qFamIndex, index, out handle); } } } diff --git a/vke/src/base/Resource.cs b/vke/src/base/Resource.cs index 216a3d1..77a8d4d 100644 --- a/vke/src/base/Resource.cs +++ b/vke/src/base/Resource.cs @@ -21,6 +21,9 @@ namespace vke { public ulong poolOffset; #else protected VkDeviceMemory vkMemory; + protected VkExternalMemoryHandleTypeFlags importExportHandleTypes; + protected IntPtr importedHandle = IntPtr.Zero; + public VkDeviceMemory Memory => vkMemory; #endif /// Double linked list in memory pool @@ -37,11 +40,12 @@ namespace vke { protected IntPtr mappedData; public IntPtr MappedData => mappedData; + protected VkMemoryPropertyFlags memoryFlags; + public VkMemoryPropertyFlags MemoryFlags => memoryFlags; - public readonly VkMemoryPropertyFlags MemoryFlags; - + protected Resource (Device device) : base (device) {} protected Resource (Device device, VkMemoryPropertyFlags memoryFlags) : base (device) { - MemoryFlags = memoryFlags; + this.memoryFlags = memoryFlags; } internal abstract void updateMemoryRequirements (); @@ -60,11 +64,32 @@ namespace vke { size = AllocatedDeviceMemorySize }; #if !MEMORY_POOLS + protected uint importedMemoryTypeBits = 0; protected void allocateMemory () { VkMemoryAllocateInfo memInfo = VkMemoryAllocateInfo.New (); memInfo.allocationSize = memReqs.size; - memInfo.memoryTypeIndex = Dev.GetMemoryTypeIndex (memReqs.memoryTypeBits, MemoryFlags); - Utils.CheckResult (vkAllocateMemory (Dev.VkDev, ref memInfo, IntPtr.Zero, out vkMemory)); + /*if (importedMemoryTypeBits > 0) + memReqs.memoryTypeBits = importedMemoryTypeBits;*/ + memInfo.memoryTypeIndex = Dev.GetMemoryTypeIndex (memReqs.memoryTypeBits, memoryFlags); + + if (importExportHandleTypes > 0) { + if (importedHandle != IntPtr.Zero) { + VkImportMemoryHostPointerInfoEXT importInfo = VkImportMemoryHostPointerInfoEXT.New (); + importInfo.pHostPointer = importedHandle.Pin(); + importInfo.handleType = importExportHandleTypes; + memInfo.pNext = importInfo.Pin (); + Utils.CheckResult (vkAllocateMemory (Dev.Handle, ref memInfo, IntPtr.Zero, out vkMemory)); + importedHandle.Unpin(); + importInfo.Unpin (); + } else { + VkExportMemoryAllocateInfo exportInfo = VkExportMemoryAllocateInfo.New (); + exportInfo.handleTypes = importExportHandleTypes; + memInfo.pNext = exportInfo.Pin (); + Utils.CheckResult (vkAllocateMemory (Dev.Handle, ref memInfo, IntPtr.Zero, out vkMemory)); + exportInfo.Unpin (); + } + } else + Utils.CheckResult (vkAllocateMemory (Dev.Handle, ref memInfo, IntPtr.Zero, out vkMemory)); } #endif public bool IsMapped => mappedData != IntPtr.Zero; @@ -74,13 +99,13 @@ namespace vke { memoryPool.Map (); mappedData = new IntPtr (memoryPool.MappedData.ToInt64 () + (long)(poolOffset + offset)); #else - Utils.CheckResult (vkMapMemory (Dev.VkDev, vkMemory, offset, AllocatedDeviceMemorySize, 0, ref mappedData)); + Utils.CheckResult (vkMapMemory (Dev.Handle, vkMemory, offset, AllocatedDeviceMemorySize, 0, ref mappedData)); #endif } public void Unmap () { #if MEMORY_POOLS #else - vkUnmapMemory (Dev.VkDev, vkMemory); + vkUnmapMemory (Dev.Handle, vkMemory); mappedData = IntPtr.Zero; #endif } @@ -93,7 +118,7 @@ namespace vke { } public void Flush () { VkMappedMemoryRange range = MapRange; - vkFlushMappedMemoryRanges (Dev.VkDev, 1, ref range); + vkFlushMappedMemoryRanges (Dev.Handle, 1, ref range); } #region IDisposable Support @@ -106,7 +131,7 @@ namespace vke { #if MEMORY_POOLS memoryPool.Remove (this); #else - vkFreeMemory (Dev.VkDev, vkMemory, IntPtr.Zero); + vkFreeMemory (Dev.Handle, vkMemory, IntPtr.Zero); #endif } diff --git a/vke/src/base/SwapChain.cs b/vke/src/base/SwapChain.cs index 33f890e..c07813d 100644 --- a/vke/src/base/SwapChain.cs +++ b/vke/src/base/SwapChain.cs @@ -120,7 +120,7 @@ namespace vke { } else createInfos.imageExtent = capabilities.currentExtent; - Utils.CheckResult (vkCreateSwapchainKHR (Dev.VkDev, ref createInfos, IntPtr.Zero, out VkSwapchainKHR newSwapChain)); + Utils.CheckResult (vkCreateSwapchainKHR (Dev.Handle, ref createInfos, IntPtr.Zero, out VkSwapchainKHR newSwapChain)); if (Handle.Handle != 0) _destroy (); @@ -129,11 +129,11 @@ namespace vke { presentComplete.SetDebugMarkerName (Dev, "Semaphore PresentComplete"); Handle = newSwapChain; - Utils.CheckResult (vkGetSwapchainImagesKHR (Dev.VkDev, Handle, out uint imageCount, IntPtr.Zero)); + Utils.CheckResult (vkGetSwapchainImagesKHR (Dev.Handle, Handle, out uint imageCount, IntPtr.Zero)); if (imageCount == 0) throw new Exception ("Swapchain image count is 0."); VkImage[] imgs = new VkImage[imageCount]; - Utils.CheckResult (vkGetSwapchainImagesKHR (Dev.VkDev, Handle, out imageCount, imgs.Pin ())); + Utils.CheckResult (vkGetSwapchainImagesKHR (Dev.Handle, Handle, out imageCount, imgs.Pin ())); imgs.Unpin (); images = new Image[imgs.Length]; @@ -150,7 +150,7 @@ namespace vke { /// Swapchain image index or -1 if failed /// an optional fence to signal. public int GetNextImage (Fence fence = null) { - VkResult res = vkAcquireNextImageKHR (Dev.VkDev, Handle, UInt64.MaxValue, presentComplete, fence, out currentImageIndex); + VkResult res = vkAcquireNextImageKHR (Dev.Handle, Handle, UInt64.MaxValue, presentComplete, fence, out currentImageIndex); if (res == VkResult.ErrorOutOfDateKHR || res == VkResult.SuboptimalKHR) { Create (); return -1; @@ -162,7 +162,7 @@ namespace vke { void _destroy () { for (int i = 0; i < ImageCount; i++) images[i].Dispose (); - vkDestroySwapchainKHR (Dev.VkDev, Handle, IntPtr.Zero); + vkDestroySwapchainKHR (Dev.Handle, Handle, IntPtr.Zero); Dev.DestroySemaphore (presentComplete); } diff --git a/vke/vke.csproj b/vke/vke.csproj index 4b624b8..f38ab87 100644 --- a/vke/vke.csproj +++ b/vke/vke.csproj @@ -48,7 +48,7 @@ - +