diff --git a/Assets/Scenes/Scene1.unity b/Assets/Scenes/Scene1.unity index 70cdd15..fe020d9 100644 --- a/Assets/Scenes/Scene1.unity +++ b/Assets/Scenes/Scene1.unity @@ -254,7 +254,7 @@ TilemapRenderer: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 635587383} - m_Enabled: 1 + m_Enabled: 0 m_CastShadows: 0 m_ReceiveShadows: 0 m_DynamicOccludee: 1 @@ -3598,6 +3598,37 @@ Tilemap: e31: 0 e32: 0 e33: 1 +--- !u!1 &1028602778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1028602779} + m_Layer: 0 + m_Name: GameManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1028602779 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028602778} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.64744174, y: 6.375536, z: -0.10777246} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1427431534 GameObject: m_ObjectHideFlags: 0 @@ -8751,3 +8782,4 @@ SceneRoots: m_Roots: - {fileID: 465062962} - {fileID: 2046344527} + - {fileID: 1028602779} diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 0000000..8605df2 --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b6f8a5b9f79a49d99ff8fae037c998b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs new file mode 100644 index 0000000..97a7df2 --- /dev/null +++ b/Assets/Scripts/GameManager.cs @@ -0,0 +1,83 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class GameManager : MonoBehaviour +{ + public Ghost[] ghosts; + public Pacman pacman; + public Transform pellets; + + public int score {get; private set;} + public int lives {get; private set;} + + + private void Start() + { + NewGame(); + } + + private void NewGame() + { + SetScore(0); + SetLives(3); + NewRound(); + } + + private void NewRound() + { + foreach (Transform pellet in this.pellets) + { + pellet.gameObject.SetActive(true); + } + + ResetState(); + } + + private void ResetState() + { + for (int i = 0; i < ghosts.Length; i++) + { + ghosts[i].gameObject.SetActive(true); + } + + this.pacman.gameObject.SetActive(true); + } + + private void GameOver() + { + for (int i = 0; i < ghosts.Length; i++) + { + ghosts[i].gameObject.SetActive(false); + } + + this.pacman.gameObject.SetActive(false); + } + + private void SetScore(int score) + { + this.score = score; + } + + private void SetLives(int lives) + { + this.lives = lives; + } + + public void GhostEaten(Ghost ghost) + { + SetScore(this.score + ghost.points); + } + + public void PacmanEaten() + { + this.pacman.gameObject.SetActive(false); + SetLives(this.lives - 1); + + if (this.lives > 0){ + Invoke(nameof(ResetState), 3.0f); + } else { + GameOver(); + } + } +} diff --git a/Assets/Scripts/GameManager.cs.meta b/Assets/Scripts/GameManager.cs.meta new file mode 100644 index 0000000..c1ef8af --- /dev/null +++ b/Assets/Scripts/GameManager.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 589bd1e63045b4e3997d03c525507826 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Ghost.cs b/Assets/Scripts/Ghost.cs new file mode 100644 index 0000000..b7e9480 --- /dev/null +++ b/Assets/Scripts/Ghost.cs @@ -0,0 +1,8 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class NewBehaviourScript : MonoBehaviour +{ + public int points = 200; +} diff --git a/Assets/Scripts/Ghost.cs.meta b/Assets/Scripts/Ghost.cs.meta new file mode 100644 index 0000000..c4262c9 --- /dev/null +++ b/Assets/Scripts/Ghost.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8d1191079784c40359fce5829f6c6274 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/Pacman.cs b/Assets/Scripts/Pacman.cs new file mode 100644 index 0000000..c18837a --- /dev/null +++ b/Assets/Scripts/Pacman.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Pacman : MonoBehaviour +{ + // Start is called before the first frame update + void Start() + { + + } + + // Update is called once per frame + void Update() + { + + } +} diff --git a/Assets/Scripts/Pacman.cs.meta b/Assets/Scripts/Pacman.cs.meta new file mode 100644 index 0000000..5292491 --- /dev/null +++ b/Assets/Scripts/Pacman.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b08b1ca5b32f34f77903d997e7a4b867 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/mono_crash.0.0.json b/mono_crash.0.0.json new file mode 100644 index 0000000..7dc3ddf --- /dev/null +++ b/mono_crash.0.0.json @@ -0,0 +1,5451 @@ +{ + "protocol_version" : "0.0.6", + "configuration" : { + "version" : "(6.13.0) (explicit/16ec7cb2)", + "tlc" : "__thread", + "sigsgev" : "normal", + "notifications" : "kqueue", + "architecture" : "arm64", + "disabled_features" : "com,shared_perfcounters", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "disabled", + "suspend" : "preemptive" + }, + "memory" : { + "Resident Size" : "289046528", + "Virtual Size" : "422854918144", + "minor_gc_time" : "0", + "major_gc_time" : "2098790", + "minor_gc_count" : "0", + "major_gc_count" : "3", + "major_gc_time_concurrent" : "0" + }, + "threads" : [ + { + "is_managed" : true, + "offset_free_hash" : "0x1491dfc50a", + "offset_rich_hash" : "0x1491dfc8cc", + "crashed" : false, + "native_thread_id" : "0x2b1d03000", + "thread_info_addr" : "0x2a9ef4800", + "thread_name" : "Burst-CompilerThread-3", + "ctx" : { + "IP" : "0x188a1506c", + "SP" : "0x2b1d01ad0", + "BP" : "0x2b1d01b60" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0xffffffff" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000c7" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000a1" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c6", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0006e" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0003c" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c0", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000b8d", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00024" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000bdf", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00070" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x0002b" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00065" + } + + ], + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a090519c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c518", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c874", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c63c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09463cc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a81a24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a525fc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a8bd94", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a48b10", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a48788", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a376e8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09e1e2c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c6", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c0", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000b8d", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000bdf", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0894d84", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a1b24c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a1ce5c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d378", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d130", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcc80", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a52034", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a4ce3c", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x2e7357000", + "thread_info_addr" : "0x2e13c6200", + "thread_name" : "tid_33903", + "ctx" : { + "IP" : "0x188a1506c", + "SP" : "0x2e7356c20", + "BP" : "0x2e7356cb0" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a090519c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c518", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c874", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c63c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09463cc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a81a24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a52628", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a8bd6c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a95a48", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09949c8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d284", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d130", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcc80", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a52034", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a4ce3c", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x2a133b000", + "thread_info_addr" : "0x13006ec00", + "thread_name" : "Debugger agent", + "ctx" : { + "IP" : "0x188a1a1c0", + "SP" : "0x2a133aaa0", + "BP" : "0x2a133aae0" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a090519c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c518", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c874", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c63c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09463cc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a81a24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0975598", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a096c194", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d284", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d130", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcc80", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a52034", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x188a4ce3c", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x1491dfc50a", + "offset_rich_hash" : "0x1491dfc8cc", + "crashed" : false, + "native_thread_id" : "0x2acdab000", + "thread_info_addr" : "0x130b9ba00", + "thread_name" : "Burst-CompilerThread-1", + "ctx" : { + "IP" : "0x188a1506c", + "SP" : "0x2acda9ad0", + "BP" : "0x2acda9b60" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0xffffffff" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000c7" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000a1" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c6", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0006e" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0003c" + } +, + { + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c0", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000b8d", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00024" + } +, + { + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000bdf", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00070" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x0002b" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00065" + } + + ], +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x2a090519c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c518", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c874", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c63c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09463cc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x188a81a24", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x188a525fc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a8bd94", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a48b10", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a48788", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a376e8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09e1e2c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c6", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c0", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000b8d", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000bdf", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0894d84", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a1b24c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a1ce5c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d378", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d130", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abccf8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abcc80", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x188a52034", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x188a4ce3c", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491dfc50a", +"offset_rich_hash" : "0x1491dfc8cc", +"crashed" : false, +"native_thread_id" : "0x2b78d3000", +"thread_info_addr" : "0x13249d800", +"thread_name" : "Burst-CompilerThread-5", +"ctx" : { + "IP" : "0x188a1506c", + "SP" : "0x2b78d1ad0", + "BP" : "0x2b78d1b60" +}, +"managed_frames" : [ +{ + "is_managed" : "false", + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0xffffffff" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000c7" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x000a1" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c6", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0006e" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x0003c" + } +, +{ + "is_managed" : "true", + "guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", + "token" : "0x60026c0", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0x814d5962", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000b8d", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00024" + } +, +{ + "is_managed" : "true", + "guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", + "token" : "0x6000bdf", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x1aa000", + "timestamp" : "0x8ae67a69", + "il_offset" : "0x00070" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00014" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00071" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x0002b" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00008" + } +, +{ + "is_managed" : "true", + "guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xd7d06e8b", + "il_offset" : "0x00065" + } + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48b10", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48788", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a376e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e1e2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491dfc50a", +"offset_rich_hash" : "0x1491dfc8cc", +"crashed" : false, +"native_thread_id" : "0x2b7ceb000", +"thread_info_addr" : "0x2a5e58000", +"thread_name" : "Burst-CompilerThread-7", +"ctx" : { +"IP" : "0x188a1506c", +"SP" : "0x2b7ce9ad0", +"BP" : "0x2b7ce9b60" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00070" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48b10", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48788", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a376e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e1e2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2ab02b000", +"thread_info_addr" : "0x132348000", +"thread_name" : "Thread Pool I/O Selector", +"ctx" : { +"IP" : "0x188a1c9d4", +"SP" : "0x2ab02aae0", +"BP" : "0x2ab02ace0" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8e810", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a41a54", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4146c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2e7923000", +"thread_info_addr" : "0x1303bc400", +"thread_name" : "tid_25303", +"ctx" : { +"IP" : "0x188a117f0", +"SP" : "0x2e7922d50", +"BP" : "0x2e7922d60" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1888a0eac", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1888a155c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107a286a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1053a4a50", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1057ab4e0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1057ab47c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10595e0d4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x30dc13000", +"thread_info_addr" : "0x11d02f400", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x188a11808", +"SP" : "0x30dc12db0", +"BP" : "0x30dc12e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09951c0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x30b707000", +"thread_info_addr" : "0x13185b000", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x188a11808", +"SP" : "0x30b706db0", +"BP" : "0x30b706e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09951c0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : true, +"native_thread_id" : "0x1df231000", +"thread_info_addr" : "0x1308aa400", +"thread_name" : "tid_103", +"ctx" : { +"IP" : "0x10795ba30", +"SP" : "0x16b000f00", +"BP" : "0x16b000f70" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ce64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0947218", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0909334", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0891ac4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10795ba30", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1079785b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10656d9b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107986de8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107592a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107592e70", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107592b60", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107986cf4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18c436810", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18c43645c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18cae39f4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10797d0cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107964ed0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x189c70b98", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b4ba20", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b4b6c8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b4b200", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b2e744", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b2d9ac", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1930dc448", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1930dc0d8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1930dbfdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18c30a8a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18cae4980", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18c2fdd50", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x18c2d5014", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10797d9a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10797dd04", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1886d10e0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2a112f000", +"thread_info_addr" : "0x1308c2e00", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x188a117f0", +"SP" : "0x2a112edd0", +"BP" : "0x2a112ee50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a7616c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491dfc50a", +"offset_rich_hash" : "0x1491dfc8cc", +"crashed" : false, +"native_thread_id" : "0x2b76c7000", +"thread_info_addr" : "0x2a5e3ac00", +"thread_name" : "Burst-CompilerThread-4", +"ctx" : { +"IP" : "0x188a1506c", +"SP" : "0x2b76c5ad0", +"BP" : "0x2b76c5b60" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00070" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48b10", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48788", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a376e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e1e2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491dfc50a", +"offset_rich_hash" : "0x1491dfc8cc", +"crashed" : false, +"native_thread_id" : "0x2acfb7000", +"thread_info_addr" : "0x2a9ee6a00", +"thread_name" : "Burst-CompilerThread-2", +"ctx" : { +"IP" : "0x188a1506c", +"SP" : "0x2acfb5ad0", +"BP" : "0x2acfb5b60" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00070" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48b10", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48788", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a376e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e1e2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491dfc50a", +"offset_rich_hash" : "0x1491dfc8cc", +"crashed" : false, +"native_thread_id" : "0x2b7adf000", +"thread_info_addr" : "0x2a5e41e00", +"thread_name" : "Burst-CompilerThread-6", +"ctx" : { +"IP" : "0x188a1506c", +"SP" : "0x2b7addad0", +"BP" : "0x2b7addb60" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00070" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48b10", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48788", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a376e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e1e2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c6", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026c0", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000b8d", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x6000bdf", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x15de3beb54", +"offset_rich_hash" : "0x15de3beed9", +"crashed" : false, +"native_thread_id" : "0x2b7ef7000", +"thread_info_addr" : "0x130c6d200", +"thread_name" : "Burst-ProgressReporter", +"ctx" : { +"IP" : "0x188a1506c", +"SP" : "0x2b7ef6090", +"BP" : "0x2b7ef6120" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f52", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001ea2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001ea1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026b4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026b3", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026af", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x600117f", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x000c9" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a525fc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bd94", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48248", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4807c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a774bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e0730", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f52", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001ea2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001ea1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026b4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026b3", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x60026af", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "74B8D24C-73D2-45B5-952C-698AE125060A", +"token" : "0x600117f", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x1aa000", +"timestamp" : "0x8ae67a69", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2ff7a3000", +"thread_info_addr" : "0x11d05b400", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x188a11808", +"SP" : "0x2ff7a2db0", +"BP" : "0x2ff7a2e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09951c0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xabcb0c000", +"offset_rich_hash" : "0xabcb0c170", +"crashed" : false, +"native_thread_id" : "0x2b958f000", +"thread_info_addr" : "0x13049ec00", +"thread_name" : "tid_26603", +"ctx" : { +"IP" : "0x188a11874", +"SP" : "0x2b958d810", +"BP" : "0x2b958d860" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x6002c9f", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x0003a" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00067" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a23cf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a1a4b0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a11bf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b2fbf4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b2e4bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188b2d9ac", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188bab704", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a441c924", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "181E47A7-B791-40EA-BD9F-CD79FECAE66A", +"token" : "0x6002c9f", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0x814d5962", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x6001f7e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A9C3DED0-9DCB-4B3E-A021-286A5A859400", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xd7d06e8b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0894d84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b24c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1ce5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x30da07000", +"thread_info_addr" : "0x11c076200", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x188a11808", +"SP" : "0x30da06db0", +"BP" : "0x30da06e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09951c0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d284", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d130", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcc80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x16b94b000", +"thread_info_addr" : "0x1309c5800", +"thread_name" : "tid_14803", +"ctx" : { +"IP" : "0x188a117f0", +"SP" : "0x16b94ace0", +"BP" : "0x16b94acf0" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a090519c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c518", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c874", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c63c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09463cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a81a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1888a0eac", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1888a155c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x107a286a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1056f5118", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1056f6164", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10595e0d4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a52034", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x188a4ce3c", +"native_offset" : "0x00000" +} + +] +} +] +} \ No newline at end of file