Browse Source

ref(native): Partially remove symbolic codepath (#13224)

Since Symbolicator is now used for 100% of projects, we can kill the old codepath.
Markus Unterwaditzer 5 years ago
parent
commit
169f0c5255

+ 0 - 269
src/sentry/lang/native/cfi.py

@@ -1,269 +0,0 @@
-from __future__ import absolute_import
-
-import logging
-import six
-
-from symbolic import FrameInfoMap, FrameTrust, ObjectLookup
-
-from sentry.attachments import attachment_cache
-from sentry.coreapi import cache_key_for_event
-from sentry.lang.native.minidump import process_minidump, frames_from_minidump_thread, \
-    MINIDUMP_ATTACHMENT_TYPE
-from sentry.lang.native.utils import parse_addr, rebase_addr
-from sentry.models import Project, ProjectDebugFile
-from sentry.utils.cache import cache
-from sentry.utils.hashlib import hash_values
-from sentry.utils.safe import get_path
-
-
-logger = logging.getLogger('sentry.minidumps')
-
-# Frame trust values achieved through the use of CFI
-CFI_TRUSTS = ('cfi', )
-
-# Minimum frame trust value that we require to omit CFI reprocessing
-MIN_TRUST = FrameTrust.fp
-
-# Placeholder used to indicate that no CFI could be used to stackwalk a thread
-NO_CFI_PLACEHOLDER = '__no_cfi__'
-
-
-class ThreadRef(object):
-    """Cacheable and mutable reference to stack frames of an event thread."""
-
-    def __init__(self, frames, modules):
-        self.raw_frames = frames
-        self.modules = modules
-        self.resolved_frames = None
-        self._cache_key = self._get_cache_key()
-
-    def _get_frame_key(self, frame):
-        module = self.modules.find_object(frame['instruction_addr'])
-
-        # If we cannot resolve a module for this frame, this means we're dealing
-        # with an absolute address here. Since this address changes with every
-        # crash and would poison our cache, we skip it for the key calculation.
-        if not module:
-            return None
-
-        return (
-            module.debug_id,
-            rebase_addr(frame['instruction_addr'], module)
-        )
-
-    def _get_cache_key(self):
-        values = [self._get_frame_key(f) for f in self.raw_frames]
-        # XXX: The seed is hard coded for a future refactor
-        return 'st:%s' % hash_values(values, seed='MinidumpCfiProcessor')
-
-    def _frame_from_cache(self, entry):
-        debug_id, offset, trust = entry[:3]
-        module = self.modules.get_object(debug_id)
-
-        # The debug_id can be None or refer to a missing module. If the module
-        # was missing, the stored offset was absolute as well. Otherwise, we
-        # have no choice but to assume an absolute address. In practice, the
-        # latter hopefully never happens.
-        addr = module.addr + parse_addr(offset) if module else parse_addr(offset)
-
-        return module, {
-            'instruction_addr': '0x%x' % addr,
-            'package': module.code_file if module else None,
-            'trust': trust,
-        }
-
-    def load_from_cache(self):
-        """Attempts to load the reprocessed stack trace from the cache. The
-        return value is ``True`` for a cache hit, and ``False`` for a miss.
-        The loaded addresses are rebased to the provided code modules.
-        """
-
-        cached = cache.get(self._cache_key)
-        if cached is None:
-            return False
-
-        if cached == NO_CFI_PLACEHOLDER:
-            self.resolved_frames = NO_CFI_PLACEHOLDER
-        else:
-            self.resolved_frames = [self._frame_from_cache(c) for c in cached]
-
-        return True
-
-    def save_to_cache(self):
-        """Stores the reprocessed stack trace to the cache. For frames with
-        known code modules only relative offsets are stored, otherwise the
-        absolute address as fallback."""
-        if self.resolved_frames is None:
-            raise RuntimeError('save_to_cache called before resolving frames')
-
-        if self.resolved_frames == NO_CFI_PLACEHOLDER:
-            cache.set(self._cache_key, NO_CFI_PLACEHOLDER)
-            return
-
-        values = []
-        for module, frame in self.resolved_frames:
-            module_id = module and module.debug_id
-            addr = frame['instruction_addr']
-            if module:
-                addr = '0x%x' % rebase_addr(addr, module)
-            values.append((module_id, addr, frame['trust']))
-
-        cache.set(self._cache_key, values)
-
-    def load_from_minidump(self, thread):
-        """Loads the stack trace from a minidump process state thread."""
-
-        # Convert the entire thread into frames conforming to the `Frame`
-        # interface. Note that this is done with the same function as the
-        # initial ingestion to avoid normalization conflicts.
-        frames = frames_from_minidump_thread(thread)
-
-        # Filter out stack traces that did not improve during reprocessing. For
-        # these cases we only store a marker. This also prevents us from
-        # destroying absolute addresses when restoring from the cache. Stack
-        # traces containing CFI frames are mapped to their modules and stored.
-        if any(frame['trust'] in CFI_TRUSTS for frame in frames):
-            self.resolved_frames = [(self.modules.find_object(f['instruction_addr']), f)
-                                    for f in frames]
-        else:
-            self.resolved_frames = NO_CFI_PLACEHOLDER
-
-    def apply_to_event(self):
-        """Writes the loaded stack trace back to the event's payload. Returns
-        ``True`` if the payload was changed, otherwise ``False``."""
-        if self.resolved_frames is None:
-            raise RuntimeError('apply_to_event called before resolving frames')
-
-        if self.resolved_frames == NO_CFI_PLACEHOLDER:
-            return False
-
-        self.raw_frames[:] = [frame for module, frame in self.resolved_frames]
-        return True
-
-    @property
-    def needs_cfi(self):
-        """Indicates whether this thread requires reprocessing with CFI due to
-        scanned stack frames."""
-        return any(
-            getattr(FrameTrust, f.get('trust', ''), 0) < MIN_TRUST
-            for f in self.raw_frames
-        )
-
-
-class ThreadProcessingHandle(object):
-    """Helper object for processing all event threads.
-
-    This class offers a view on all threads in the given event payload,
-    including the crashing exception thread. Use ``iter_threads`` to iterate
-    pointers to the original threads' stack traces. Likewise, ``iter_modules``
-    returns references to all modules (images) loaded into the process.
-
-    The handle keeps track of changes to the original data. To signal mutation,
-    call ``indicate_change``. Finally, ``result`` returns the changed data or
-    None if it was not changed.
-    """
-
-    def __init__(self, data):
-        self.data = data
-        self.modules = self._get_modules()
-        self.changed = False
-
-    def _get_modules(self):
-        modules = get_path(self.data, 'debug_meta', 'images', filter=True)
-        return ObjectLookup(modules or [])
-
-    def iter_modules(self):
-        """Returns an iterator over all code modules (images) loaded by the
-        process at the time of the crash. The values are of type ``ObjectRef``.
-        """
-        return self.modules.iter_objects()
-
-    def iter_threads(self):
-        """Returns an iterator over all threads of the process at the time of
-        the crash, including the crashing thread. The values are of type
-        ``ThreadRef``."""
-        for thread in get_path(self.data, 'threads', 'values', filter=True, default=()):
-            if thread.get('crashed'):
-                # XXX: Assumes that the full list of threads is present in the
-                # original crash report. This is guaranteed by KSCrash and our
-                # minidump utility.
-                exceptions = get_path(self.data, 'exception', 'values', filter=True)
-                frames = get_path(exceptions, 0, 'stacktrace', 'frames')
-            else:
-                frames = get_path(thread, 'stacktrace', 'frames')
-
-            tid = thread.get('id')
-            if tid and frames:
-                yield tid, ThreadRef(frames, self.modules)
-
-    def indicate_change(self):
-        """Signals mutation of the data."""
-        self.changed = True
-
-    def result(self):
-        """Returns ``data`` if ``indicate_change`` was called, otherwise None.
-        """
-        if self.changed:
-            return self.data
-
-
-def reprocess_minidump_with_cfi(data):
-    """Reprocesses a minidump event if CFI(call frame information) is available
-    and viable. The event is only processed if there are stack traces that
-    contain scanned frames.
-    """
-
-    handle = ThreadProcessingHandle(data)
-
-    # Check stacktrace caches first and skip all that do not need CFI. This is
-    # either if a thread is trusted (i.e. it does not contain scanned frames) or
-    # since it can be fetched from the cache.
-    threads = {}
-    for tid, thread in handle.iter_threads():
-        if not thread.needs_cfi:
-            continue
-
-        if thread.load_from_cache():
-            if thread.apply_to_event():
-                handle.indicate_change()
-            continue
-
-        threads[tid] = thread
-
-    if not threads:
-        return handle.result()
-
-    # Check if we have a minidump to reprocess
-    cache_key = cache_key_for_event(data)
-    attachments = attachment_cache.get(cache_key) or []
-    minidump = next((a for a in attachments if a.type == MINIDUMP_ATTACHMENT_TYPE), None)
-    if not minidump:
-        return handle.result()
-
-    # Determine modules loaded into the process during the crash
-    debug_ids = [module.debug_id for module in handle.iter_modules()]
-    if not debug_ids:
-        return handle.result()
-
-    # Load CFI caches for all loaded modules (even unreferenced ones)
-    project = Project.objects.get_from_cache(id=data['project'])
-    cficaches = ProjectDebugFile.difcache.get_cficaches(project, debug_ids)
-    if not cficaches:
-        return handle.result()
-
-    # Reprocess the minidump with CFI
-    cfi_map = FrameInfoMap.new()
-    for debug_id, cficache in six.iteritems(cficaches):
-        cfi_map.add(debug_id, cficache)
-    state = process_minidump(minidump.data, cfi=cfi_map)
-
-    # Merge existing stack traces with new ones from the minidump
-    for minidump_thread in state.threads():
-        thread = threads.get(minidump_thread.thread_id)
-        if thread:
-            thread.load_from_minidump(minidump_thread)
-            thread.save_to_cache()
-            if thread.apply_to_event():
-                handle.indicate_change()
-
-    return handle.result()

+ 4 - 46
src/sentry/lang/native/plugin.py

@@ -11,7 +11,6 @@ from sentry import options
 from sentry.cache import default_cache
 from sentry.coreapi import cache_key_for_event
 from sentry.plugins import Plugin2
-from sentry.lang.native.cfi import reprocess_minidump_with_cfi
 from sentry.lang.native.minidump import get_attached_minidump, is_minidump_event, merge_symbolicator_minidump_response
 from sentry.lang.native.symbolizer import Symbolizer, SymbolicationFailed
 from sentry.lang.native.symbolicator import run_symbolicator, merge_symbolicator_image, create_minidump_task, handle_symbolicator_response_status
@@ -33,21 +32,6 @@ SYMBOLICATOR_FRAME_ATTRS = ("instruction_addr", "package", "lang", "symbol",
                             "line_addr")
 
 
-def _is_symbolicator_enabled(project, data):
-    if not options.get('symbolicator.enabled'):
-        return False
-
-    if project.get_option('sentry:symbolicator-enabled'):
-        return True
-
-    percentage = options.get('sentry:symbolicator-percent-opt-in') or 0
-    if percentage > 0:
-        id_bit = int(data['event_id'][4:6], 16)
-        return id_bit < percentage * 256
-
-    return False
-
-
 def request_id_cache_key_for_event(data):
     return u'symbolicator:{1}:{0}'.format(data['project'], data['event_id'])
 
@@ -64,14 +48,6 @@ class NativeStacktraceProcessor(StacktraceProcessor):
     def __init__(self, *args, **kwargs):
         StacktraceProcessor.__init__(self, *args, **kwargs)
 
-        # If true, the project has been opted into using the symbolicator
-        # service for native symbolication, which also means symbolic is not
-        # used at all anymore.
-        # The (iOS) symbolserver is still used regardless of this value.
-        self.use_symbolicator = _is_symbolicator_enabled(self.project, self.data)
-
-        metrics.incr('native.use_symbolicator', tags={'value': self.use_symbolicator})
-
         self.arch = cpu_name_from_data(self.data)
         self.signal = signal_from_data(self.data)
 
@@ -170,12 +146,10 @@ class NativeStacktraceProcessor(StacktraceProcessor):
             'symbolserver_match': None,
 
             # `[]` is used to indicate to the symbolizer that the symbolicator
-            # deliberately discarded this frame, while `None` means the
-            # symbolicator didn't run (because `self.use_symbolicator` is
-            # false).
+            # deliberately discarded this frame.
             # If the symbolicator did run and was not able to symbolize the
             # frame, this value will be a list with the raw frame as only item.
-            'symbolicator_match': [] if self.use_symbolicator else None,
+            'symbolicator_match': []
         }
 
         if obj is not None:
@@ -196,23 +170,12 @@ class NativeStacktraceProcessor(StacktraceProcessor):
         if not self.available:
             return False
 
-        referenced_images = set(
-            pf.data['debug_id'] for pf in processing_task.iter_processable_frames(self)
-            if pf.cache_value is None and pf.data['debug_id'] is not None
-        )
-
-        self.sym = Symbolizer(
-            self.project,
-            self.object_lookup,
-            referenced_images=referenced_images,
-            use_symbolicator=self.use_symbolicator
-        )
+        self.sym = Symbolizer()
 
         if options.get('symbolserver.enabled'):
             self.fetch_ios_system_symbols(processing_task)
 
-        if self.use_symbolicator:
-            self.run_symbolicator(processing_task)
+        self.run_symbolicator(processing_task)
 
     def run_symbolicator(self, processing_task):
         # TODO(markus): Make this work with minidumps. An unprocessed minidump
@@ -402,11 +365,6 @@ def reprocess_minidump(data):
     if default_cache.get(minidump_is_reprocessed_cache_key):
         return
 
-    if not _is_symbolicator_enabled(project, data):
-        rv = reprocess_minidump_with_cfi(data)
-        default_cache.set(minidump_is_reprocessed_cache_key, True, 3600)
-        return rv
-
     minidump = get_attached_minidump(data)
 
     if not minidump:

+ 6 - 97
src/sentry/lang/native/symbolizer.py

@@ -2,13 +2,12 @@ from __future__ import absolute_import
 
 import six
 
-from symbolic import SymbolicError, ObjectLookup, LineInfo, parse_addr
+from symbolic import LineInfo, parse_addr
 
 from sentry.utils.safe import trim
 from sentry.utils.compat import implements_to_string
-from sentry.models import EventError, ProjectDebugFile
-from sentry.lang.native.utils import image_name, rebase_addr
-from sentry.utils.in_app import is_known_third_party, is_optional_package
+from sentry.models import EventError
+from sentry.lang.native.utils import image_name
 from sentry.constants import MAX_SYM
 
 FATAL_ERRORS = (
@@ -91,25 +90,10 @@ class SymbolicationFailed(Exception):
 
 
 class Symbolizer(object):
-    """This symbolizer dispatches to both symbolic and the system symbols
+    """This symbolizer dispatches to both symbolicator and the system symbols
     we have in the database and reports errors slightly differently.
     """
 
-    def __init__(self, project, object_lookup, referenced_images, use_symbolicator,
-                 on_dif_referenced=None):
-        if not isinstance(object_lookup, ObjectLookup):
-            object_lookup = ObjectLookup(object_lookup)
-        self.object_lookup = object_lookup
-
-        self.symcaches = self.symcaches_conversion_errors = None
-
-        if not use_symbolicator:
-            self.symcaches, self.symcaches_conversion_errors = \
-                ProjectDebugFile.difcache.get_symcaches(
-                    project, referenced_images,
-                    on_dif_referenced=on_dif_referenced,
-                    with_conversion_errors=True)
-
     def _process_frame(self, sym, package=None, addr_off=0):
         frame = {
             'sym_addr': '0x%x' % (sym.sym_addr + addr_off,),
@@ -133,46 +117,6 @@ class Symbolizer(object):
 
         return frame
 
-    def _symbolize_app_frame(self, instruction_addr, obj, sdk_info=None, trust=None):
-        symcache = None
-        if self.symcaches is not None:
-            symcache = self.symcaches.get(obj.debug_id)
-
-        if symcache is None:
-            # In case we know what error happened on symcache conversion
-            # we can report it to the user now.
-            if self.symcaches_conversion_errors is not None and \
-               obj.debug_id in self.symcaches_conversion_errors:
-                raise SymbolicationFailed(
-                    message=self.symcaches_conversion_errors[obj.debug_id],
-                    type=EventError.NATIVE_BAD_DSYM,
-                    obj=obj
-                )
-
-            if is_optional_package(obj.code_file, sdk_info=sdk_info):
-                type = EventError.NATIVE_MISSING_OPTIONALLY_BUNDLED_DSYM
-            else:
-                type = EventError.NATIVE_MISSING_DSYM
-
-            raise SymbolicationFailed(type=type, obj=obj)
-
-        try:
-            rv = symcache.lookup(rebase_addr(instruction_addr, obj))
-        except SymbolicError as e:
-            raise SymbolicationFailed(
-                type=EventError.NATIVE_BAD_DSYM, message=six.text_type(e), obj=obj
-            )
-
-        if not rv:
-            # For some frameworks we are willing to ignore missing symbol
-            # errors. Also, ignore scanned stack frames when symbols are
-            # available to complete breakpad's stack scanning heuristics.
-            if trust == 'scan' or is_optional_package(obj.code_file, sdk_info=sdk_info):
-                return []
-            raise SymbolicationFailed(
-                type=EventError.NATIVE_MISSING_SYMBOL, obj=obj)
-        return [self._process_frame(s, addr_off=obj.addr) for s in reversed(rv)]
-
     def _convert_symbolserver_match(self, instruction_addr, symbolserver_match):
         """Symbolizes a frame with system symbols only."""
         if symbolserver_match is None:
@@ -195,29 +139,6 @@ class Symbolizer(object):
     def symbolize_frame(self, instruction_addr, sdk_info=None,
                         symbolserver_match=None, symbolicator_match=None,
                         trust=None):
-        app_err = None
-
-        # A missing symbolicator match indicates that the symbolicator was not
-        # active for this event. Symbolize the app frame directly using
-        # symbolic.
-        # TODO: Remove this after fully switching to symbolicator
-        if symbolicator_match is None:
-            obj = self.object_lookup.find_object(instruction_addr)
-            if obj is None:
-                if trust == 'scan':
-                    return []
-                raise SymbolicationFailed(type=EventError.NATIVE_UNKNOWN_IMAGE)
-
-            # Try to always prefer the images from the application storage.
-            # If the symbolication fails we keep the error for later
-            try:
-                match = self._symbolize_app_frame(
-                    instruction_addr, obj, sdk_info=sdk_info, trust=trust)
-                if match:
-                    return match
-            except SymbolicationFailed as err:
-                app_err = err
-
         # If the symbolicator was used, trust its result. Errors that were
         # generated during symbolication are merged into the event's error
         # array separately and do not need to be handled here. The match
@@ -235,20 +156,8 @@ class Symbolizer(object):
         #
         # TODO: Remove this fallback once symbolicator supports iOS system
         # symbols and fully trust the symbolicator response.
-        elif all(x["status"] == "symbolicated" for x in symbolicator_match) or symbolicator_match == []:
+        if all(x["status"] == "symbolicated" for x in symbolicator_match) or symbolicator_match == []:
             return symbolicator_match
 
         # Then we check the symbolserver for a match.
-        match = self._convert_symbolserver_match(instruction_addr, symbolserver_match)
-
-        # If we do not get a match and the image was from an app bundle
-        # and we got an error first, we now fail with the original error
-        # as we did indeed encounter a symbolication error.  If however
-        # the match was empty we just accept it as a valid symbolication
-        # that just did not return any results but without error.
-        if app_err is not None \
-                and not match \
-                and (not obj.code_file or not is_known_third_party(obj.code_file, sdk_info=sdk_info)):
-            raise app_err
-
-        return match
+        return self._convert_symbolserver_match(instruction_addr, symbolserver_match)

+ 0 - 186
tests/sentry/lang/native/test_processor.py

@@ -1,186 +0,0 @@
-from __future__ import absolute_import
-
-from mock import patch
-
-from sentry.lang.native.plugin import NativeStacktraceProcessor
-from sentry.stacktraces.processing import process_stacktraces
-from sentry.testutils import TestCase
-
-OBJECT_NAME = (
-    "/var/containers/Bundle/Application/B33C37A8-F933-4B6B-9FFA-152282BFDF13/"
-    "SentryTest.app/SentryTest"
-)
-
-SDK_INFO = {"sdk_name": "iOS", "version_major": 9,
-            "version_minor": 3, "version_patchlevel": 0}
-
-
-def patched_symbolize_app_frame(self, instruction_addr, img, sdk_info=None, trust=None):
-    if instruction_addr != 4295123756:
-        return []
-    return [
-        {
-            'filename': 'Foo.swift',
-            'abs_path': 'Foo.swift',
-            'lineno': 42,
-            'colno': 23,
-            'package': OBJECT_NAME,
-            'function': 'real_main',
-        }
-    ]
-
-
-def patched_convert_symbolserver_match(self, instruction_addr, symbolserver_match):
-    if 6016 <= instruction_addr < 6020:
-        return [
-            {
-                'abs_path': None,
-                'filename': None,
-                'package': '/usr/lib/whatever.dylib',
-                'function': 'whatever_system',
-            }
-        ]
-    return []
-
-
-class BasicResolvingFileTest(TestCase):
-    @patch(
-        'sentry.lang.native.symbolizer.Symbolizer._symbolize_app_frame',
-        new=patched_symbolize_app_frame
-    )
-    @patch(
-        'sentry.lang.native.symbolizer.Symbolizer._convert_symbolserver_match',
-        new=patched_convert_symbolserver_match
-    )
-    def test_frame_resolution(self):
-        event_data = {
-            "user": {
-                "ip_address": "31.172.207.97"
-            },
-            "extra": {},
-            "project": self.project.id,
-            "platform": "cocoa",
-            "debug_meta": {
-                "images": [
-                    {
-                        "type": "apple",
-                        "cpu_subtype": 0,
-                        "uuid": "C05B4DDD-69A7-3840-A649-32180D341587",
-                        "image_vmaddr": 4294967296,
-                        "image_addr": 4295121760,
-                        "cpu_type": 16777228,
-                        "image_size": 32768,
-                        "name": OBJECT_NAME,
-                    }, {
-                        "type": "apple",
-                        "cpu_subtype": 0,
-                        "cpu_type": 16777228,
-                        "uuid": "B78CB4FB-3A90-4039-9EFD-C58932803AE5",
-                        "image_vmaddr": 0,
-                        "image_addr": 6000,
-                        "cpu_type": 16777228,
-                        "image_size": 32768,
-                        'name': '/usr/lib/whatever.dylib',
-                    }
-                ],
-                "sdk_info":
-                SDK_INFO,
-            },
-            "exception": {
-                "values": [
-                    {
-                        "stacktrace": {
-                            "frames": [
-                                {
-                                    "function": "<redacted>",
-                                    "abs_path": None,
-                                    "package": "/usr/lib/system/libdyld.dylib",
-                                    "filename": None,
-                                    "lineno": None,
-                                    "in_app": False,
-                                    "instruction_addr": 6010,
-                                }, {
-                                    "function": "main",
-                                    "instruction_addr": 4295123760
-                                }, {
-                                    "function": "whatever_system",
-                                    "instruction_addr": 6020,
-                                    "symbol_addr": 6016,
-                                }, {
-                                    "platform": "javascript",
-                                    "function": "merge",
-                                    "abs_path": "/scripts/views.js",
-                                    "vars": {},
-                                    "module": None,
-                                    "filename": "../../sentry/scripts/views.js",
-                                    "colno": 16,
-                                    "in_app": True,
-                                    "lineno": 268
-                                }
-                            ]
-                        },
-                        "type":
-                        "NSRangeException",
-                        "mechanism": {
-                            "type": "mach",
-                            "meta": {
-                                "signal": {
-                                    "number": 6,
-                                    "code": 0,
-                                    "name": "SIGABRT",
-                                    "code_name": None
-                                },
-                                "mach_exception": {
-                                    "subcode": 0,
-                                    "code": 0,
-                                    "exception": 10,
-                                    "name": "EXC_CRASH"
-                                }
-                            }
-                        },
-                        "value": (
-                            "*** -[__NSArray0 objectAtIndex:]: index 3 "
-                            "beyond bounds for empty NSArray"
-                        )
-                    }
-                ]
-            },
-            "contexts": {
-                "device": {
-                    "type": "device",
-                    "model_id": "N102AP",
-                    "model": "iPod7,1",
-                    "arch": "arm64",
-                    "family": "iPod"
-                },
-                "os": {
-                    "type": "os",
-                    "version": "9.3.2",
-                    "rooted": False,
-                    "build": "13F69",
-                    "name": "iOS"
-                }
-            }
-        }
-
-        def make_processors(data, infos):
-            return [NativeStacktraceProcessor(data, infos)]
-
-        event_data = process_stacktraces(
-            event_data, make_processors=make_processors)
-
-        bt = event_data['exception']['values'][0]['stacktrace']
-        frames = bt['frames']
-
-        assert frames[0]['function'] == '<redacted>'
-        assert frames[0]['instruction_addr'] == 6010
-
-        assert frames[1]['function'] == 'real_main'
-        assert frames[1]['lineno'] == 42
-        assert frames[1]['colno'] == 23
-        assert frames[1]['package'] == OBJECT_NAME
-        assert frames[1]['instruction_addr'] == 4295123760
-
-        assert frames[2]['function'] == 'whatever_system'
-        assert frames[2]['package'] == '/usr/lib/whatever.dylib'
-        assert frames[2]['instruction_addr'] == 6020

+ 0 - 383
tests/symbolicator/snapshots/SymbolicMinidumpIntegrationTest/test_full_minidump.pysnap

@@ -1,383 +0,0 @@
----
-created: '2019-05-03T08:10:26.398964Z'
-creator: sentry
-source: tests/symbolicator/test_minidump_full.py
----
-contexts:
-  device:
-    arch: x86
-    type: device
-  os:
-    build: ''
-    name: Windows
-    type: os
-    version: 10.0.14393
-debug_meta:
-  images:
-  - code_file: C:\projects\breakpad-tools\windows\Release\crash.exe
-    code_id: 5AB380779000
-    debug_file: C:\projects\breakpad-tools\windows\Release\crash.pdb
-    debug_id: 3249d99d-0c40-4931-8610-f4e4fb0b6936-1
-    image_addr: '0x2a0000'
-    image_size: 36864
-    type: pe
-  - code_file: C:\Windows\System32\dbghelp.dll
-    code_id: 57898E12145000
-    debug_file: dbghelp.pdb
-    debug_id: 9c2a902b-6fdf-40ad-8308-588a41d572a0-1
-    image_addr: '0x70850000'
-    image_size: 1331200
-    type: pe
-  - code_file: C:\Windows\System32\msvcp140.dll
-    code_id: 589ABC846c000
-    debug_file: msvcp140.i386.pdb
-    debug_id: bf5257f7-8c26-43dd-9bb7-901625e1136a-1
-    image_addr: '0x709a0000'
-    image_size: 442368
-    type: pe
-  - code_file: C:\Windows\System32\apphelp.dll
-    code_id: 57898EEB92000
-    debug_file: apphelp.pdb
-    debug_id: 8daf7773-372f-460a-af38-944e193f7e33-1
-    image_addr: '0x70a10000'
-    image_size: 598016
-    type: pe
-  - code_file: C:\Windows\System32\dbgcore.dll
-    code_id: 57898DAB25000
-    debug_file: dbgcore.pdb
-    debug_id: aec7ef2f-df4b-4642-a471-4c3e5fe8760a-1
-    image_addr: '0x70b70000'
-    image_size: 151552
-    type: pe
-  - code_file: C:\Windows\System32\VCRUNTIME140.dll
-    code_id: 589ABC7714000
-    debug_file: vcruntime140.i386.pdb
-    debug_id: 0ed80a50-ecda-472b-86a4-eb6c833f8e1b-1
-    image_addr: '0x70c60000'
-    image_size: 81920
-    type: pe
-  - code_file: C:\Windows\System32\CRYPTBASE.dll
-    code_id: 57899141a000
-    debug_file: cryptbase.pdb
-    debug_id: 147c51fb-7ca1-408f-85b5-285f2ad6f9c5-1
-    image_addr: '0x73ba0000'
-    image_size: 40960
-    type: pe
-  - code_file: C:\Windows\System32\sspicli.dll
-    code_id: 59BF30E31f000
-    debug_file: wsspicli.pdb
-    debug_id: 51e432b1-0450-4b19-8ed1-6d4335f9f543-1
-    image_addr: '0x73bb0000'
-    image_size: 126976
-    type: pe
-  - code_file: C:\Windows\System32\advapi32.dll
-    code_id: 5A49BB7677000
-    debug_file: advapi32.pdb
-    debug_id: 0c799483-b549-417d-8433-4331852031fe-1
-    image_addr: '0x73c70000'
-    image_size: 487424
-    type: pe
-  - code_file: C:\Windows\System32\msvcrt.dll
-    code_id: 57899155be000
-    debug_file: msvcrt.pdb
-    debug_id: 6f6409b3-d520-43c7-9b2f-62e00bfe761c-1
-    image_addr: '0x73cf0000'
-    image_size: 778240
-    type: pe
-  - code_file: C:\Windows\System32\sechost.dll
-    code_id: 598942C741000
-    debug_file: sechost.pdb
-    debug_id: 6f6a05dd-0a80-478b-a419-9b88703bf75b-1
-    image_addr: '0x74450000'
-    image_size: 266240
-    type: pe
-  - code_file: C:\Windows\System32\kernel32.dll
-    code_id: 590285E9e0000
-    debug_file: wkernel32.pdb
-    debug_id: d3474559-96f7-47d6-bf43-c176b2171e68-1
-    image_addr: '0x75050000'
-    image_size: 917504
-    type: pe
-  - code_file: C:\Windows\System32\bcryptPrimitives.dll
-    code_id: 59B0DF8F5a000
-    debug_file: bcryptprimitives.pdb
-    debug_id: 287b19c3-9209-4a2b-bb8f-bcc37f411b11-1
-    image_addr: '0x75130000'
-    image_size: 368640
-    type: pe
-  - code_file: C:\Windows\System32\rpcrt4.dll
-    code_id: 5A49BB75c1000
-    debug_file: wrpcrt4.pdb
-    debug_id: ae131c67-27a7-4fa1-9916-b5a4aef41190-1
-    image_addr: '0x75810000'
-    image_size: 790528
-    type: pe
-  - code_file: C:\Windows\System32\ucrtbase.dll
-    code_id: 59BF2B5Ae0000
-    debug_file: ucrtbase.pdb
-    debug_id: 6bedcbce-0a3a-40e9-8040-81c2c8c6cc2f-1
-    image_addr: '0x758f0000'
-    image_size: 917504
-    type: pe
-  - code_file: C:\Windows\System32\KERNELBASE.dll
-    code_id: 59BF2BCF1a1000
-    debug_file: wkernelbase.pdb
-    debug_id: 8462294a-c645-402d-ac82-a4e95f61ddf9-1
-    image_addr: '0x76db0000'
-    image_size: 1708032
-    type: pe
-  - code_file: C:\Windows\System32\ntdll.dll
-    code_id: 59B0D8F3183000
-    debug_file: wntdll.pdb
-    debug_id: 971f98e5-ce60-41ff-b2d7-235bbeb34578-1
-    image_addr: '0x77170000'
-    image_size: 1585152
-    type: pe
-errors:
-- name: timestamp
-  type: past_timestamp
-  value: 1521713273.0
-exception:
-  values:
-  - mechanism:
-      handled: false
-      synthetic: true
-      type: minidump
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: cfi
-      - in_app: false
-        instruction_addr: '0x2a2d97'
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-        trust: cfi
-      - in_app: false
-        instruction_addr: '0x2a2a3d'
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x10ff670'
-        ebx: '0xfe5000'
-        ecx: '0x10ff670'
-        edi: '0x13bfd78'
-        edx: '0x7'
-        eflags: '0x10246'
-        eip: '0x2a2a3d'
-        esi: '0x759c6314'
-        esp: '0x10ff644'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: cfi
-      - abs_path: f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl
-        filename: exe_common.inl
-        function: __scrt_common_main_seh
-        in_app: false
-        instruction_addr: '0x2a2d96'
-        lineno: 283
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-        trust: cfi
-      - abs_path: c:\projects\breakpad-tools\windows\crash\main.cpp
-        filename: main.cpp
-        function: main
-        in_app: false
-        instruction_addr: '0x2a2a3d'
-        lineno: 35
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x10ff670'
-        ebx: '0xfe5000'
-        ecx: '0x10ff670'
-        edi: '0x13bfd78'
-        edx: '0x7'
-        eflags: '0x10246'
-        eip: '0x2a2a3d'
-        esi: '0x759c6314'
-        esp: '0x10ff644'
-    thread_id: 1636
-    type: EXCEPTION_ACCESS_VIOLATION_WRITE
-    value: 'Fatal Error: EXCEPTION_ACCESS_VIOLATION_WRITE'
-stacktrace: null
-threads:
-  values:
-  - crashed: true
-    id: 1636
-  - crashed: false
-    id: 3580
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771e016c'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x159faa4'
-        ebx: '0x13b0990'
-        ecx: '0x0'
-        edi: '0x13b4af0'
-        edx: '0x0'
-        eflags: '0x216'
-        eip: '0x771e016c'
-        esi: '0x13b4930'
-        esp: '0x159f900'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771e016c'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x159faa4'
-        ebx: '0x13b0990'
-        ecx: '0x0'
-        edi: '0x13b4af0'
-        edx: '0x0'
-        eflags: '0x216'
-        eip: '0x771e016c'
-        esi: '0x13b4930'
-        esp: '0x159f900'
-  - crashed: false
-    id: 2600
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771e016c'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x169fb98'
-        ebx: '0x13b0990'
-        ecx: '0x0'
-        edi: '0x13b7c28'
-        edx: '0x0'
-        eflags: '0x202'
-        eip: '0x771e016c'
-        esi: '0x13b7a68'
-        esp: '0x169f9f4'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771d0f44'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771d0f79'
-        package: C:\Windows\System32\ntdll.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x750662c4'
-        package: C:\Windows\System32\kernel32.dll
-        trust: fp
-      - in_app: false
-        instruction_addr: '0x771e016c'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x169fb98'
-        ebx: '0x13b0990'
-        ecx: '0x0'
-        edi: '0x13b7c28'
-        edx: '0x0'
-        eflags: '0x202'
-        eip: '0x771e016c'
-        esi: '0x13b7a68'
-        esp: '0x169f9f4'
-  - crashed: false
-    id: 2920
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771df3dc'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x179f2b8'
-        ebx: '0x17b1aa0'
-        ecx: '0x0'
-        edi: '0x17b1a90'
-        edx: '0x0'
-        eflags: '0x206'
-        eip: '0x771df3dc'
-        esi: '0x2cc'
-        esp: '0x179f2ac'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x771df3dc'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        eax: '0x0'
-        ebp: '0x179f2b8'
-        ebx: '0x17b1aa0'
-        ecx: '0x0'
-        edi: '0x17b1a90'
-        edx: '0x0'
-        eflags: '0x206'
-        eip: '0x771df3dc'
-        esi: '0x2cc'
-        esp: '0x179f2ac'

+ 0 - 44
tests/symbolicator/snapshots/SymbolicResolvingIntegrationTest/test_debug_id_resolving.pysnap

@@ -1,44 +0,0 @@
----
-created: '2019-04-16T08:02:50.732813Z'
-creator: sentry
-source: tests/symbolicator/test_native_plugin.py
----
-contexts:
-  device:
-    arch: x86
-    type: device
-  os:
-    build: ''
-    name: Windows
-    type: os
-    version: 10.0.14393
-debug_meta:
-  images:
-  - code_file: C:\projects\breakpad-tools\windows\Release\crash.exe
-    debug_id: 3249d99d-0c40-4931-8610-f4e4fb0b6936-1
-    image_addr: '0x2a0000'
-    image_size: 36864
-    type: symbolic
-errors: null
-exception:
-  values:
-  - raw_stacktrace:
-      frames:
-      - function: <unknown>
-        in_app: false
-        instruction_addr: '0x2a2a3d'
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-    stacktrace:
-      frames:
-      - abs_path: c:\projects\breakpad-tools\windows\crash\main.cpp
-        filename: main.cpp
-        function: main
-        in_app: false
-        instruction_addr: '0x2a2a3d'
-        lineno: 35
-        package: C:\projects\breakpad-tools\windows\Release\crash.exe
-    thread_id: 1636
-    type: EXCEPTION_ACCESS_VIOLATION_WRITE
-    value: 'Fatal Error: EXCEPTION_ACCESS_VIOLATION_WRITE'
-stacktrace: null
-threads: null

+ 0 - 44
tests/symbolicator/snapshots/SymbolicResolvingIntegrationTest/test_missing_dsym.pysnap

@@ -1,44 +0,0 @@
----
-created: '2019-04-24T21:02:26.624518Z'
-creator: sentry
-source: tests/symbolicator/test_native_plugin.py
----
-contexts: null
-debug_meta:
-  images:
-  - arch: x86_64
-    code_file: Foo.app/Contents/Foo
-    debug_id: 502fc0a5-1ec1-3e47-9998-684fa139dca7
-    image_addr: '0x100000000'
-    image_size: 4096
-    image_vmaddr: '0x100000000'
-    type: macho
-  sdk_info:
-    sdk_name: macOS
-    version_major: 10
-    version_minor: 12
-    version_patchlevel: 4
-errors:
-- image_arch: x86_64
-  image_path: Foo.app/Contents/Foo
-  image_uuid: 502fc0a5-1ec1-3e47-9998-684fa139dca7
-  message: None
-  type: native_missing_dsym
-exception:
-  values:
-  - raw_stacktrace:
-      frames:
-      - function: unknown
-        in_app: false
-        instruction_addr: '0x100000fa0'
-        package: Foo.app/Contents/Foo
-    stacktrace:
-      frames:
-      - function: unknown
-        in_app: false
-        instruction_addr: '0x100000fa0'
-        package: Foo.app/Contents/Foo
-    type: Fail
-    value: fail
-stacktrace: null
-threads: null

+ 0 - 42
tests/symbolicator/snapshots/SymbolicResolvingIntegrationTest/test_real_resolving.pysnap

@@ -1,42 +0,0 @@
----
-created: '2019-04-16T08:02:52.259172Z'
-creator: sentry
-source: tests/symbolicator/test_native_plugin.py
----
-contexts: null
-debug_meta:
-  images:
-  - arch: x86_64
-    code_file: Foo.app/Contents/Foo
-    debug_id: 502fc0a5-1ec1-3e47-9998-684fa139dca7
-    image_addr: '0x100000000'
-    image_size: 4096
-    image_vmaddr: '0x100000000'
-    type: macho
-  sdk_info:
-    sdk_name: macOS
-    version_major: 10
-    version_minor: 12
-    version_patchlevel: 4
-errors: null
-exception:
-  values:
-  - raw_stacktrace:
-      frames:
-      - function: unknown
-        in_app: false
-        instruction_addr: '0x100000fa0'
-        package: Foo.app/Contents/Foo
-    stacktrace:
-      frames:
-      - abs_path: /tmp/hello.c
-        filename: hello.c
-        function: main
-        in_app: false
-        instruction_addr: '0x100000fa0'
-        lineno: 1
-        package: Foo.app/Contents/Foo
-    type: Fail
-    value: fail
-stacktrace: null
-threads: null

+ 0 - 5583
tests/symbolicator/snapshots/SymbolicUnrealIntegrationTest/test_unreal_crash_with_attachments.pysnap

@@ -1,5583 +0,0 @@
----
-created: '2019-05-06T08:50:26.334139Z'
-creator: sentry
-source: tests/symbolicator/test_unreal_full.py
----
-contexts:
-  device:
-    arch: x86_64
-    memory_size: 6896832512
-    type: device
-  gpu:
-    name: Parallels Display Adapter (WDDM)
-    type: gpu
-  os:
-    build: ''
-    name: Windows 10
-    type: os
-    version: 10.0.17134
-exception:
-  values:
-  - mechanism:
-      handled: false
-      synthetic: true
-      type: unreal
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7589c73c6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7548229e6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754814eaa'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754814e4c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754805258'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7571fcd39'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff75739984f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff75739082f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757aafb58'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757aa121d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754d8cf00'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754d8cc56'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757a56186'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757a3e77e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756f2f984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756f06dd3'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756cff2ee'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754be3394'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7589c73c6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7548229e6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754814eaa'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754814e4c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754805258'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff7571fcd39'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff75739984f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff75739082f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757aafb58'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757aa121d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754d8cf00'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff754d8cc56'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757a56186'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff757a3e77e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756f2f984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756f06dd3'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - in_app: false
-        instruction_addr: '0x7ff756cff2ee'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: prewalked
-      - function: AActor::IsPendingKillPending
-        in_app: false
-        instruction_addr: '0x7ff754be3394'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        raw_function: AActor::IsPendingKillPending()
-        trust: prewalked
-    thread_id: 6900
-    type: EXCEPTION_ACCESS_VIOLATION_READ
-    value: 'Fatal Error: EXCEPTION_ACCESS_VIOLATION_READ'
-extra:
-  app_default_locate: en-US
-  base_dir: //Mac/Home/Desktop/WindowsNoEditor/YetAnother/Binaries/Win64/
-  build_configuration: Development
-  build_version: ++UE4+Release-4.20-CL-4369336
-  crash_guid: UE4CC-Windows-63456D684167A2659DE73EA3517BEDC4_0000
-  crash_reporter_client_version: '1.0'
-  crash_type: Crash
-  engine_mode: Game
-  engine_version: 4.20.3-4369336+++UE4+Release-4.20
-  executable_name: YetAnother
-  game_name: UE4-YetAnother
-  is_assert: false
-  is_ensure: false
-  is_internal_build: false
-  is_source_distribution: false
-  is_ue4_release: false
-  language_lcid: 1033
-  legacy_call_stack: 'YetAnother!AActor::IsPendingKillPending()
-
-    YetAnother!AActor::Destroy()
-
-    YetAnother!FActorComponentTickFunction::ExecuteTickHelper<<lambda_e8384def656dc646af48282ce274db64>
-    >()
-
-    YetAnother!FActorComponentTickFunction::ExecuteTick()
-
-    YetAnother!FTickFunctionTask::DoTask()
-
-    YetAnother!TGraphTask<FTickFunctionTask>::ExecuteTask()
-
-    YetAnother!FNamedTaskThread::ProcessTasksNamedThread()
-
-    YetAnother!FNamedTaskThread::ProcessTasksUntilIdle()
-
-    YetAnother!FTickTaskSequencer::ReleaseTickGroup()
-
-    YetAnother!FTickTaskManager::RunTickGroup()
-
-    YetAnother!UWorld::RunTickGroup()
-
-    YetAnother!UWorld::Tick()
-
-    YetAnother!UGameEngine::Tick()
-
-    YetAnother!FEngineLoop::Tick()
-
-    YetAnother!GuardedMain()
-
-    YetAnother!GuardedMainWrapper()
-
-    YetAnother!WinMain()
-
-    YetAnother!__scrt_common_main_seh() [f:\dd\vctools\crt\vcstartup\src\startup\exe_common.inl:288]
-
-    kernel32
-
-    ntdll'
-  login_id: 9776d4844cc893f55395dbbefb0eb6d7
-  machine_id: 9776D4844CC893F55395DBBEFB0EB6D7
-  memory_stats_page_size: 4096
-  memory_stats_total_phsysical_gb: 7
-  memory_stats_total_virtual: 140737488224256
-  misc_cpu_brand: Intel(R) Core(TM) i7-7920HQ CPU @ 3.10GHz
-  misc_cpu_vendor: GenuineIntel
-  misc_number_of_cores: 6
-  misc_number_of_cores_inc_hyperthread: 6
-  platform_name: WindowsNoEditor
-  process_id: 9444
-  root_dir: /Mac/Home/Desktop/WindowsNoEditor/
-  seconds_since_start: 8
-  time_of_crash: 636783112433190000
-stacktrace: null
-threads:
-  values:
-  - crashed: false
-    id: 248
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff7548229e6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7544e0000'
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75563d233'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759a2f3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589ca88b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a4831a8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7544e0000'
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754814eaa'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759a2f3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7544e0000'
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a4831a8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10066c86'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fed3d'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754814eaa'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754814eaa'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe03a9bf10'
-        package: C:\Windows\System32\VCRUNTIME140.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589e69ae'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759a2f3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759a2f3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755181c71'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff7544e0000'
-        r11: '0x7ff7589ca88b'
-        r12: '0x7ff7544e0000'
-        r13: '0x8c3f2cf910'
-        r14: '0x26c'
-        r15: '0x8c3f2cc670'
-        r8: '0x8c3f2cccc0'
-        r9: '0x8c3f2cc670'
-        rax: '0x4'
-        rbp: '0x8c3f2cf910'
-        rbx: '0x0'
-        rcx: '0x26c'
-        rdi: '0x26c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3f2cc448'
-        rsp: '0x8c3f2cc418'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff7544e0000'
-        r11: '0x7ff7589ca88b'
-        r12: '0x7ff7544e0000'
-        r13: '0x8c3f2cf910'
-        r14: '0x26c'
-        r15: '0x8c3f2cc670'
-        r8: '0x8c3f2cccc0'
-        r9: '0x8c3f2cc670'
-        rax: '0x4'
-        rbp: '0x8c3f2cf910'
-        rbx: '0x0'
-        rcx: '0x26c'
-        rdi: '0x26c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3f2cc448'
-        rsp: '0x8c3f2cc418'
-  - crashed: false
-    id: 9772
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe10083140'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe1007f856'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x6c'
-        r11: '0x8c3f79f140'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x8c3f79f3a0'
-        r9: '0x23df732ca30'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7325070'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7325070'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c3f79fb48'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x6c'
-        r11: '0x8c3f79f140'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x8c3f79f3a0'
-        r9: '0x23df732ca30'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7325070'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7325070'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c3f79fb48'
-  - crashed: false
-    id: 8188
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe10083140'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe1007f856'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23d833cc5b0'
-        r11: '0x23d833ce4b0'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x8'
-        r9: '0x1'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7326fd0'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7326fd0'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c3fc6f838'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23d833cc5b0'
-        r11: '0x23d833ce4b0'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x8'
-        r9: '0x1'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7326fd0'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7326fd0'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c3fc6f838'
-  - crashed: false
-    id: 10188
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe10083140'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe1007f856'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7290cc0'
-        r11: '0x7ffe10178b20'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x23d83413970'
-        r9: '0x1b0'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7327370'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7327370'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c4013f6b8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7290cc0'
-        r11: '0x7ffe10178b20'
-        r12: '0x0'
-        r13: '0x23df7323810'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x23d83413970'
-        r9: '0x1b0'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23df7327370'
-        rcx: '0x50'
-        rdi: '0x10'
-        rdx: '0x23df7327370'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c4013f6b8'
-  - crashed: true
-    id: 6900
-  - crashed: false
-    id: 5200
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a672d0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a671f8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8f221'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x1'
-        r13: '0x23df8d19f20'
-        r14: '0x2a0'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x8c3ebbf410'
-        rax: '0x4'
-        rbp: '0x8c3ebbf5a9'
-        rbx: '0x0'
-        rcx: '0x2a0'
-        rdi: '0x2a0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c3ebbf438'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x1'
-        r13: '0x23df8d19f20'
-        r14: '0x2a0'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x8c3ebbf410'
-        rax: '0x4'
-        rbp: '0x8c3ebbf5a9'
-        rbx: '0x0'
-        rcx: '0x2a0'
-        rdi: '0x2a0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c3ebbf438'
-  - crashed: false
-    id: 9648
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x1'
-        r13: '0x23df8d19f60'
-        r14: '0x2a4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4068f738'
-        r9: '0x8c4068f8a9'
-        rax: '0x4'
-        rbp: '0x8c4068f8a9'
-        rbx: '0x0'
-        rcx: '0x2a4'
-        rdi: '0x2a4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4068f738'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x1'
-        r13: '0x23df8d19f60'
-        r14: '0x2a4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4068f738'
-        r9: '0x8c4068f8a9'
-        rax: '0x4'
-        rbp: '0x8c4068f8a9'
-        rbx: '0x0'
-        rcx: '0x2a4'
-        rdi: '0x2a4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4068f738'
-  - crashed: false
-    id: 4372
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e930000'
-        r12: '0x1'
-        r13: '0x23df8d19800'
-        r14: '0x2a8'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4070f8e9'
-        rbx: '0x0'
-        rcx: '0x2a8'
-        rdi: '0x2a8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4070f778'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e930000'
-        r12: '0x1'
-        r13: '0x23df8d19800'
-        r14: '0x2a8'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4070f8e9'
-        rbx: '0x0'
-        rcx: '0x2a8'
-        rdi: '0x2a8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4070f778'
-  - crashed: false
-    id: 10628
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e426b5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b27e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3af02'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3ae3b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d30edc0'
-        r12: '0x1'
-        r13: '0x23df8d197a0'
-        r14: '0x2ac'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c4078f9c9'
-        rbx: '0x0'
-        rcx: '0x2ac'
-        rdi: '0x2ac'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4078f858'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d30edc0'
-        r12: '0x1'
-        r13: '0x23df8d197a0'
-        r14: '0x2ac'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c4078f9c9'
-        rbx: '0x0'
-        rcx: '0x2ac'
-        rdi: '0x2ac'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4078f858'
-  - crashed: false
-    id: 11280
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d48edc0'
-        r12: '0x1'
-        r13: '0x23df8d197e0'
-        r14: '0x2b0'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c4080f5d9'
-        rbx: '0x0'
-        rcx: '0x2b0'
-        rdi: '0x2b0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4080f468'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d48edc0'
-        r12: '0x1'
-        r13: '0x23df8d197e0'
-        r14: '0x2b0'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c4080f5d9'
-        rbx: '0x0'
-        rcx: '0x2b0'
-        rdi: '0x2b0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4080f468'
-  - crashed: false
-    id: 2432
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3469f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df732f648'
-        r11: '0x23df732f638'
-        r12: '0x1'
-        r13: '0x23df8d19860'
-        r14: '0x2b4'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x0'
-        rax: '0x4'
-        rbp: '0x8c4088f979'
-        rbx: '0x0'
-        rcx: '0x2b4'
-        rdi: '0x2b4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4088f808'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df732f648'
-        r11: '0x23df732f638'
-        r12: '0x1'
-        r13: '0x23df8d19860'
-        r14: '0x2b4'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x0'
-        rax: '0x4'
-        rbp: '0x8c4088f979'
-        rbx: '0x0'
-        rcx: '0x2b4'
-        rdi: '0x2b4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4088f808'
-  - crashed: false
-    id: 6680
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553923b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8b7c9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504b92d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x23d829847a0'
-        r12: '0x1'
-        r13: '0x23df8d19cc0'
-        r14: '0x2b8'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x1'
-        rax: '0x4'
-        rbp: '0x8c4090fac9'
-        rbx: '0x0'
-        rcx: '0x2b8'
-        rdi: '0x2b8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4090f958'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x23d829847a0'
-        r12: '0x1'
-        r13: '0x23df8d19cc0'
-        r14: '0x2b8'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x1'
-        rax: '0x4'
-        rbp: '0x8c4090fac9'
-        rbx: '0x0'
-        rcx: '0x2b8'
-        rdi: '0x2b8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4090f958'
-  - crashed: false
-    id: 6492
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553923b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8b7c9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504b92d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8d180000'
-        r12: '0x1'
-        r13: '0x23df8d19c80'
-        r14: '0x2bc'
-        r15: '0x23df9a304c8'
-        r8: '0x60000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4098fbd9'
-        rbx: '0x0'
-        rcx: '0x2bc'
-        rdi: '0x2bc'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4098fa68'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8d180000'
-        r12: '0x1'
-        r13: '0x23df8d19c80'
-        r14: '0x2bc'
-        r15: '0x23df9a304c8'
-        r8: '0x60000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4098fbd9'
-        rbx: '0x0'
-        rcx: '0x2bc'
-        rdi: '0x2bc'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4098fa68'
-  - crashed: false
-    id: 6080
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8b7c9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504b92d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8d180000'
-        r12: '0x1'
-        r13: '0x23df8d19c40'
-        r14: '0x2c0'
-        r15: '0x23df9a304c8'
-        r8: '0x23d8d077638'
-        r9: '0x40'
-        rax: '0x4'
-        rbp: '0x8c40a0f469'
-        rbx: '0x0'
-        rcx: '0x2c0'
-        rdi: '0x2c0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40a0f2f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8d180000'
-        r12: '0x1'
-        r13: '0x23df8d19c40'
-        r14: '0x2c0'
-        r15: '0x23df9a304c8'
-        r8: '0x23d8d077638'
-        r9: '0x40'
-        rax: '0x4'
-        rbp: '0x8c40a0f469'
-        rbx: '0x0'
-        rcx: '0x2c0'
-        rdi: '0x2c0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40a0f2f8'
-  - crashed: false
-    id: 6984
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d959f5'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d290'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551659f9'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dbe522'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7589c665e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a672d0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a672d0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x1'
-        r13: '0x23df8d19c00'
-        r14: '0x2c4'
-        r15: '0x23df9a304c8'
-        r8: '0x23df8f10000'
-        r9: '0x10000'
-        rax: '0x4'
-        rbp: '0x8c40a8f9d9'
-        rbx: '0x0'
-        rcx: '0x2c4'
-        rdi: '0x2c4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40a8f868'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x1'
-        r13: '0x23df8d19c00'
-        r14: '0x2c4'
-        r15: '0x23df9a304c8'
-        r8: '0x23df8f10000'
-        r9: '0x10000'
-        rax: '0x4'
-        rbp: '0x8c40a8f9d9'
-        rbx: '0x0'
-        rcx: '0x2c4'
-        rdi: '0x2c4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40a8f868'
-  - crashed: false
-    id: 10192
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504b92d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c40b0eef0'
-        r12: '0x1'
-        r13: '0x23df8d19bc0'
-        r14: '0x2c8'
-        r15: '0x23df9a304c8'
-        r8: '0x2'
-        r9: '0x2'
-        rax: '0x4'
-        rbp: '0x8c40b0f739'
-        rbx: '0x0'
-        rcx: '0x2c8'
-        rdi: '0x2c8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40b0f5c8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c40b0eef0'
-        r12: '0x1'
-        r13: '0x23df8d19bc0'
-        r14: '0x2c8'
-        r15: '0x23df9a304c8'
-        r8: '0x2'
-        r9: '0x2'
-        rax: '0x4'
-        rbp: '0x8c40b0f739'
-        rbx: '0x0'
-        rcx: '0x2c8'
-        rdi: '0x2c8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40b0f5c8'
-  - crashed: false
-    id: 11120
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x23d82351d80'
-        r12: '0x1'
-        r13: '0x23df8d19b80'
-        r14: '0x2cc'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x18'
-        rax: '0x4'
-        rbp: '0x8c40b8fbe9'
-        rbx: '0x0'
-        rcx: '0x2cc'
-        rdi: '0x2cc'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40b8fa78'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x23d82351d80'
-        r12: '0x1'
-        r13: '0x23df8d19b80'
-        r14: '0x2cc'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x18'
-        rax: '0x4'
-        rbp: '0x8c40b8fbe9'
-        rbx: '0x0'
-        rcx: '0x2cc'
-        rdi: '0x2cc'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40b8fa78'
-  - crashed: false
-    id: 4872
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x8c40c0f4a8'
-        r12: '0x1'
-        r13: '0x23df8d1a380'
-        r14: '0x2d0'
-        r15: '0x23df9a304c8'
-        r8: '0x6'
-        r9: '0x8'
-        rax: '0x4'
-        rbp: '0x8c40c0fbe9'
-        rbx: '0x0'
-        rcx: '0x2d0'
-        rdi: '0x2d0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40c0fa78'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x8c40c0f4a8'
-        r12: '0x1'
-        r13: '0x23df8d1a380'
-        r14: '0x2d0'
-        r15: '0x23df9a304c8'
-        r8: '0x6'
-        r9: '0x8'
-        rax: '0x4'
-        rbp: '0x8c40c0fbe9'
-        rbx: '0x0'
-        rcx: '0x2d0'
-        rdi: '0x2d0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40c0fa78'
-  - crashed: false
-    id: 4160
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x8c40c8f268'
-        r12: '0x1'
-        r13: '0x23df8d1a340'
-        r14: '0x2d4'
-        r15: '0x23df9a304c8'
-        r8: '0x23df8fb6b80'
-        r9: '0x2'
-        rax: '0x4'
-        rbp: '0x8c40c8f9a9'
-        rbx: '0x0'
-        rcx: '0x2d4'
-        rdi: '0x2d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40c8f838'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x8c40c8f268'
-        r12: '0x1'
-        r13: '0x23df8d1a340'
-        r14: '0x2d4'
-        r15: '0x23df9a304c8'
-        r8: '0x23df8fb6b80'
-        r9: '0x2'
-        rax: '0x4'
-        rbp: '0x8c40c8f9a9'
-        rbx: '0x0'
-        rcx: '0x2d4'
-        rdi: '0x2d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40c8f838'
-  - crashed: false
-    id: 11048
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8bdf1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d1450'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a19ed98'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7553a0fdf'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d490080'
-        r12: '0x1'
-        r13: '0x23df8d1a300'
-        r14: '0x2d8'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c40d0fa19'
-        rbx: '0x0'
-        rcx: '0x2d8'
-        rdi: '0x2d8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40d0f8a8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ff758ce10a8'
-        r11: '0x23d8d490080'
-        r12: '0x1'
-        r13: '0x23df8d1a300'
-        r14: '0x2d8'
-        r15: '0x23df9a304c8'
-        r8: '0x1240'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c40d0fa19'
-        rbx: '0x0'
-        rcx: '0x2d8'
-        rdi: '0x2d8'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40d0f8a8'
-  - crashed: false
-    id: 7512
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75506e26d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d176'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3bba8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1ae0c0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3469f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0cab443b'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3419b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3409c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e349d6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e01a18'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8ca09'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1e2338'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1e2338'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504752f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d7a570'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8f221'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3aed7'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e630000'
-        r12: '0x0'
-        r13: '0x23df8d19840'
-        r14: '0x6c'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c40d8fb69'
-        rbx: '0x0'
-        rcx: '0x6c'
-        rdi: '0x6c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40d8f9f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e630000'
-        r12: '0x0'
-        r13: '0x23df8d19840'
-        r14: '0x6c'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xdddddddddddddddd'
-        rax: '0x4'
-        rbp: '0x8c40d8fb69'
-        rbx: '0x0'
-        rcx: '0x6c'
-        rdi: '0x6c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c40d8f9f8'
-  - crashed: false
-    id: 8684
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758bbfa00'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a671f8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75503ff42'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a67100'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758c25f01'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759452a10'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75797c3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df918ca40'
-        r14: '0x308'
-        r15: '0x23df9a304c8'
-        r8: '0x8c3ebdfa88'
-        r9: '0x8c3ebdfbf9'
-        rax: '0x4'
-        rbp: '0x8c3ebdfbf9'
-        rbx: '0x0'
-        rcx: '0x308'
-        rdi: '0x308'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3ebdfab8'
-        rsp: '0x8c3ebdfa88'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df918ca40'
-        r14: '0x308'
-        r15: '0x23df9a304c8'
-        r8: '0x8c3ebdfa88'
-        r9: '0x8c3ebdfbf9'
-        rax: '0x4'
-        rbp: '0x8c3ebdfbf9'
-        rbx: '0x0'
-        rcx: '0x308'
-        rdi: '0x308'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3ebdfab8'
-        rsp: '0x8c3ebdfa88'
-  - crashed: false
-    id: 5444
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df918cac0'
-        r14: '0x310'
-        r15: '0x23df9a304c8'
-        r8: '0x8c3ebff458'
-        r9: '0x8c3ebff5c9'
-        rax: '0x4'
-        rbp: '0x8c3ebff5c9'
-        rbx: '0x0'
-        rcx: '0x310'
-        rdi: '0x310'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3ebff488'
-        rsp: '0x8c3ebff458'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df918cac0'
-        r14: '0x310'
-        r15: '0x23df9a304c8'
-        r8: '0x8c3ebff458'
-        r9: '0x8c3ebff5c9'
-        rax: '0x4'
-        rbp: '0x8c3ebff5c9'
-        rbx: '0x0'
-        rcx: '0x310'
-        rdi: '0x310'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c3ebff488'
-        rsp: '0x8c3ebff458'
-  - crashed: false
-    id: 12064
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75482017b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759452a10'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75797c3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cbc0'
-        r14: '0x318'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40dafc69'
-        rbx: '0x0'
-        rcx: '0x318'
-        rdi: '0x318'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40dafb28'
-        rsp: '0x8c40dafaf8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cbc0'
-        r14: '0x318'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40dafc69'
-        rbx: '0x0'
-        rcx: '0x318'
-        rdi: '0x318'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40dafb28'
-        rsp: '0x8c40dafaf8'
-  - crashed: false
-    id: 468
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75482017b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759452a10'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75797c3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cba0'
-        r14: '0x320'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40dcf809'
-        rbx: '0x0'
-        rcx: '0x320'
-        rdi: '0x320'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40dcf6c8'
-        rsp: '0x8c40dcf698'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cba0'
-        r14: '0x320'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40dcf809'
-        rbx: '0x0'
-        rcx: '0x320'
-        rdi: '0x320'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40dcf6c8'
-        rsp: '0x8c40dcf698'
-  - crashed: false
-    id: 8276
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75482017b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759452a10'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75797c3f0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c40def4b8'
-        r12: '0x0'
-        r13: '0x23df918cc40'
-        r14: '0x328'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40def589'
-        rbx: '0x0'
-        rcx: '0x328'
-        rdi: '0x328'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40def448'
-        rsp: '0x8c40def418'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c40def4b8'
-        r12: '0x0'
-        r13: '0x23df918cc40'
-        r14: '0x328'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40def589'
-        rbx: '0x0'
-        rcx: '0x328'
-        rdi: '0x328'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40def448'
-        rsp: '0x8c40def418'
-  - crashed: false
-    id: 7604
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b27e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cb00'
-        r14: '0x330'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40e0f6c9'
-        rbx: '0x0'
-        rcx: '0x330'
-        rdi: '0x330'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40e0f588'
-        rsp: '0x8c40e0f558'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df918cb00'
-        r14: '0x330'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40e0f6c9'
-        rbx: '0x0'
-        rcx: '0x330'
-        rdi: '0x330'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40e0f588'
-        rsp: '0x8c40e0f558'
-  - crashed: false
-    id: 8056
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b27e'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c40e2f8d8'
-        r12: '0x0'
-        r13: '0x23df918ccc0'
-        r14: '0x338'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40e2f9a9'
-        rbx: '0x0'
-        rcx: '0x338'
-        rdi: '0x338'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40e2f868'
-        rsp: '0x8c40e2f838'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c40e2f8d8'
-        r12: '0x0'
-        r13: '0x23df918ccc0'
-        r14: '0x338'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c40e2f9a9'
-        rbx: '0x0'
-        rcx: '0x338'
-        rdi: '0x338'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c40e2f868'
-        rsp: '0x8c40e2f838'
-  - crashed: false
-    id: 7540
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754f680be'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75518c971'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5e9a'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x8c412ff828'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x0'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0xa'
-        rdx: '0x8c412ff850'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c412ff828'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x8c412ff828'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x0'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0xa'
-        rdx: '0x8c412ff850'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c412ff828'
-  - crashed: false
-    id: 9920
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff756780450'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5e9a'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x8c4131fd08'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x0'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x21'
-        rdx: '0x8c4131fd30'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c4131fd08'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x8c4131fd08'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x0'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x21'
-        rdx: '0x8c4131fd30'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c4131fd08'
-  - crashed: false
-    id: 4264
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754b6efc6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754efc17c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754f0021d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e19759'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758ae6d48'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a671f8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90dfa80'
-        r14: '0x3d4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4133f6f8'
-        r9: '0x8c4133f869'
-        rax: '0x4'
-        rbp: '0x8c4133f869'
-        rbx: '0x0'
-        rcx: '0x3d4'
-        rdi: '0x3d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4133f728'
-        rsp: '0x8c4133f6f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90dfa80'
-        r14: '0x3d4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4133f6f8'
-        r9: '0x8c4133f869'
-        rax: '0x4'
-        rbp: '0x8c4133f869'
-        rbx: '0x0'
-        rcx: '0x3d4'
-        rdi: '0x3d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4133f728'
-        rsp: '0x8c4133f6f8'
-  - crashed: false
-    id: 2548
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75517fbb1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e5b0000'
-        r12: '0x0'
-        r13: '0x23df90decc0'
-        r14: '0x460'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4135fcd9'
-        rbx: '0x0'
-        rcx: '0x460'
-        rdi: '0x460'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4135fb98'
-        rsp: '0x8c4135fb68'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x23d8e5b0000'
-        r12: '0x0'
-        r13: '0x23df90decc0'
-        r14: '0x460'
-        r15: '0x23df9a304c8'
-        r8: '0x10000'
-        r9: '0xcdcdcdcdcdcdcdcd'
-        rax: '0x4'
-        rbp: '0x8c4135fcd9'
-        rbx: '0x0'
-        rcx: '0x460'
-        rdi: '0x460'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4135fb98'
-        rsp: '0x8c4135fb68'
-  - crashed: false
-    id: 3060
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75517fbb1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c4137fa88'
-        r12: '0x0'
-        r13: '0x23df90deee0'
-        r14: '0x46c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4137fa18'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4137fb59'
-        rbx: '0x0'
-        rcx: '0x46c'
-        rdi: '0x46c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4137fa18'
-        rsp: '0x8c4137f9e8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c4137fa88'
-        r12: '0x0'
-        r13: '0x23df90deee0'
-        r14: '0x46c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4137fa18'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4137fb59'
-        rbx: '0x0'
-        rcx: '0x46c'
-        rdi: '0x46c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4137fa18'
-        rsp: '0x8c4137f9e8'
-  - crashed: false
-    id: 664
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90dd3e0'
-        r14: '0x474'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4139fa83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4139fb79'
-        rbx: '0x0'
-        rcx: '0x474'
-        rdi: '0x474'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4139fa38'
-        rsp: '0x8c4139fa08'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90dd3e0'
-        r14: '0x474'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4139fa83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4139fb79'
-        rbx: '0x0'
-        rcx: '0x474'
-        rdi: '0x474'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4139fa38'
-        rsp: '0x8c4139fa08'
-  - crashed: false
-    id: 3028
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e44d8d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e449af'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75517fbb1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90df340'
-        r14: '0x47c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c413bf8c8'
-        r9: '0x8c413bfa39'
-        rax: '0x4'
-        rbp: '0x8c413bfa39'
-        rbx: '0x0'
-        rcx: '0x47c'
-        rdi: '0x47c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c413bf8f8'
-        rsp: '0x8c413bf8c8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23df90df340'
-        r14: '0x47c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c413bf8c8'
-        r9: '0x8c413bfa39'
-        rax: '0x4'
-        rbp: '0x8c413bfa39'
-        rbx: '0x0'
-        rcx: '0x47c'
-        rdi: '0x47c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c413bf8f8'
-        rsp: '0x8c413bf8c8'
-  - crashed: false
-    id: 964
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe1007f856'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7327fc8'
-        r11: '0x7ffe10178b20'
-        r12: '0x0'
-        r13: '0x23df7320b30'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x1'
-        r9: '0x23d83380000'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23dfa7338e0'
-        rcx: '0x10'
-        rdi: '0x10'
-        rdx: '0x23dfa7338e0'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c4223f9f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7327fc8'
-        r11: '0x7ffe10178b20'
-        r12: '0x0'
-        r13: '0x23df7320b30'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x1'
-        r9: '0x23d83380000'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23dfa7338e0'
-        rcx: '0x10'
-        rdi: '0x10'
-        rdx: '0x23dfa7338e0'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c4223f9f8'
-  - crashed: false
-    id: 9124
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7559e6610'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754f70c36'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754f2efca'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7559ccee1'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7559e7c57'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d8235b880'
-        r14: '0x694'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418bfb83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418bfd49'
-        rbx: '0x0'
-        rcx: '0x694'
-        rdi: '0x694'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418bfc08'
-        rsp: '0x8c418bfbd8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d8235b880'
-        r14: '0x694'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418bfb83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418bfd49'
-        rbx: '0x0'
-        rcx: '0x694'
-        rdi: '0x694'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418bfc08'
-        rsp: '0x8c418bfbd8'
-  - crashed: false
-    id: 9264
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e4b37f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff756cba688'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d821716c0'
-        r14: '0x4f4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4270fc08'
-        r9: '0x0'
-        rax: '0x4'
-        rbp: '0x8c4270fb89'
-        rbx: '0x0'
-        rcx: '0x4f4'
-        rdi: '0x4f4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4270fa48'
-        rsp: '0x8c4270fa18'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d821716c0'
-        r14: '0x4f4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4270fc08'
-        r9: '0x0'
-        rax: '0x4'
-        rbp: '0x8c4270fb89'
-        rbx: '0x0'
-        rcx: '0x4f4'
-        rdi: '0x4f4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4270fa48'
-        rsp: '0x8c4270fa18'
-  - crashed: false
-    id: 7528
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe10083140'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe1007f856'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x7ffe00d599b6'
-        r12: '0x0'
-        r13: '0x23df7320b30'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x50'
-        r9: '0x0'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23d833a5830'
-        rcx: '0x10'
-        rdi: '0x10'
-        rdx: '0x23d833a5830'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c42bdfa78'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fd854'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x7ffe00d599b6'
-        r12: '0x0'
-        r13: '0x23df7320b30'
-        r14: '0x7ffe10080a60'
-        r15: '0x7ffe10081350'
-        r8: '0x50'
-        r9: '0x0'
-        rax: '0x1cb'
-        rbp: '0x0'
-        rbx: '0x23d833a5830'
-        rcx: '0x10'
-        rdi: '0x10'
-        rdx: '0x23d833a5830'
-        rip: '0x7ffe100fd854'
-        rsi: '0x7ffe10083140'
-        rsp: '0x8c42bdfa78'
-  - crashed: false
-    id: 4136
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e526d4c'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e4f102e'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e491671'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e4b8b37'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e48dff0'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10072b55'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99be3'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100a70e0'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10073755'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100795c8'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10077f34'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe101ba460'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10078044'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100793e8'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0e494217'
-        package: C:\Windows\System32\combase.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa75f9'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10072b55'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100a70e0'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d305b'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10060000'
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100d311e'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10091b96'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10091b76'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe07679bf0'
-        package: C:\Windows\System32\RTWorkQ.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe10091bae'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe07679bf0'
-        package: C:\Windows\System32\RTWorkQ.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa6099'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100faa54'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x0'
-        r12: '0x0'
-        r13: '0x8c430af960'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x97'
-        r9: '0x0'
-        rax: '0x5b'
-        rbp: '0x650'
-        rbx: '0x1'
-        rcx: '0x1'
-        rdi: '0x1'
-        rdx: '0x8c430af960'
-        rip: '0x7ffe100faa54'
-        rsi: '0x0'
-        rsp: '0x8c430af608'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100faa54'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x0'
-        r12: '0x0'
-        r13: '0x8c430af960'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x97'
-        r9: '0x0'
-        rax: '0x5b'
-        rbp: '0x650'
-        rbx: '0x1'
-        rcx: '0x1'
-        rdi: '0x1'
-        rdx: '0x8c430af960'
-        rip: '0x7ffe100faa54'
-        rsi: '0x0'
-        rsp: '0x8c430af608'
-  - crashed: false
-    id: 10520
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d8235c4e0'
-        r14: '0x5a0'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418df683'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418df7c9'
-        rbx: '0x0'
-        rcx: '0x5a0'
-        rdi: '0x5a0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418df688'
-        rsp: '0x8c418df658'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d8235c4e0'
-        r14: '0x5a0'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418df683'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418df7c9'
-        rbx: '0x0'
-        rcx: '0x5a0'
-        rdi: '0x5a0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418df688'
-        rsp: '0x8c418df658'
-  - crashed: false
-    id: 10828
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d823598a0'
-        r14: '0x4e0'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418ff983'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418ffad9'
-        rbx: '0x0'
-        rcx: '0x4e0'
-        rdi: '0x4e0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418ff998'
-        rsp: '0x8c418ff968'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d823598a0'
-        r14: '0x4e0'
-        r15: '0x23df9a304c8'
-        r8: '0x8c418ff983'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c418ffad9'
-        rbx: '0x0'
-        rcx: '0x4e0'
-        rdi: '0x4e0'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c418ff998'
-        rsp: '0x8c418ff968'
-  - crashed: false
-    id: 6428
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d82359820'
-        r14: '0x4d4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4191f683'
-        r9: '0x8c4191f7b9'
-        rax: '0x4'
-        rbp: '0x8c4191f7b9'
-        rbx: '0x0'
-        rcx: '0x4d4'
-        rdi: '0x4d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4191f678'
-        rsp: '0x8c4191f648'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d82359820'
-        r14: '0x4d4'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4191f683'
-        r9: '0x8c4191f7b9'
-        rax: '0x4'
-        rbp: '0x8c4191f7b9'
-        rbx: '0x0'
-        rcx: '0x4d4'
-        rdi: '0x4d4'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4191f678'
-        rsp: '0x8c4191f648'
-  - crashed: false
-    id: 11276
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d823597e0'
-        r14: '0x64c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4193f788'
-        r9: '0x8c4193f8f9'
-        rax: '0x4'
-        rbp: '0x8c4193f8f9'
-        rbx: '0x0'
-        rcx: '0x64c'
-        rdi: '0x64c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4193f7b8'
-        rsp: '0x8c4193f788'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d823597e0'
-        r14: '0x64c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4193f788'
-        r9: '0x8c4193f8f9'
-        rax: '0x4'
-        rbp: '0x8c4193f8f9'
-        rbx: '0x0'
-        rcx: '0x64c'
-        rdi: '0x64c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4193f7b8'
-        rsp: '0x8c4193f788'
-  - crashed: false
-    id: 11076
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c4195f7a8'
-        r12: '0x0'
-        r13: '0x23d823597a0'
-        r14: '0x804'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4195f879'
-        rbx: '0x0'
-        rcx: '0x804'
-        rdi: '0x804'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4195f738'
-        rsp: '0x8c4195f708'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x8c4195f7a8'
-        r12: '0x0'
-        r13: '0x23d823597a0'
-        r14: '0x804'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4195f879'
-        rbx: '0x0'
-        rcx: '0x804'
-        rdi: '0x804'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4195f738'
-        rsp: '0x8c4195f708'
-  - crashed: false
-    id: 9748
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d82359000'
-        r14: '0x80c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4197f9c8'
-        r9: '0x8c4197fb39'
-        rax: '0x4'
-        rbp: '0x8c4197fb39'
-        rbx: '0x0'
-        rcx: '0x80c'
-        rdi: '0x80c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4197f9f8'
-        rsp: '0x8c4197f9c8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x23d82359000'
-        r14: '0x80c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4197f9c8'
-        r9: '0x8c4197fb39'
-        rax: '0x4'
-        rbp: '0x8c4197fb39'
-        rbx: '0x0'
-        rcx: '0x80c'
-        rdi: '0x80c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4197f9f8'
-        rsp: '0x8c4197f9c8'
-  - crashed: false
-    id: 6820
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d82359760'
-        r14: '0x814'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4199fa83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4199fc09'
-        rbx: '0x0'
-        rcx: '0x814'
-        rdi: '0x814'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4199fac8'
-        rsp: '0x8c4199fa98'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d82359760'
-        r14: '0x814'
-        r15: '0x23df9a304c8'
-        r8: '0x8c4199fa83'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c4199fc09'
-        rbx: '0x0'
-        rcx: '0x814'
-        rdi: '0x814'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c4199fac8'
-        rsp: '0x8c4199fa98'
-  - crashed: false
-    id: 5932
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7549e3f3d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d823592c0'
-        r14: '0x81c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c419bf683'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c419bf819'
-        rbx: '0x0'
-        rcx: '0x81c'
-        rdi: '0x81c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c419bf6d8'
-        rsp: '0x8c419bf6a8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23d823592c0'
-        r14: '0x81c'
-        r15: '0x23df9a304c8'
-        r8: '0x8c419bf683'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x4'
-        rbp: '0x8c419bf819'
-        rbx: '0x0'
-        rcx: '0x81c'
-        rdi: '0x81c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c419bf6d8'
-        rsp: '0x8c419bf6a8'
-  - crashed: false
-    id: 10672
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff757fb47f2'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758adc9f8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c419df480'
-        r12: '0x0'
-        r13: '0x23dfc965440'
-        r14: '0x54c'
-        r15: '0x23df9a304c8'
-        r8: '0x23d82170c60'
-        r9: '0x20'
-        rax: '0x4'
-        rbp: '0x8c419df769'
-        rbx: '0x0'
-        rcx: '0x54c'
-        rdi: '0x54c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c419df628'
-        rsp: '0x8c419df5f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c419df480'
-        r12: '0x0'
-        r13: '0x23dfc965440'
-        r14: '0x54c'
-        r15: '0x23df9a304c8'
-        r8: '0x23d82170c60'
-        r9: '0x20'
-        rax: '0x4'
-        rbp: '0x8c419df769'
-        rbx: '0x0'
-        rcx: '0x54c'
-        rdi: '0x54c'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x8c419df628'
-        rsp: '0x8c419df5f8'
-  - crashed: false
-    id: 3096
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e4b37f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff757aaf081'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551976c3'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3b984'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5e9a'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x23df9a31050'
-        r8: '0x8c419efd38'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x8c419efcc9'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x3e8'
-        rdx: '0x8c419efb80'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c419efb58'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x0'
-        r11: '0x246'
-        r12: '0x0'
-        r13: '0x0'
-        r14: '0x0'
-        r15: '0x23df9a31050'
-        r8: '0x8c419efd38'
-        r9: '0x0'
-        rax: '0x34'
-        rbp: '0x8c419efcc9'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x3e8'
-        rdx: '0x8c419efb80'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c419efb58'
-  - crashed: false
-    id: 10944
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdd9762b8a'
-        package: C:\Windows\System32\XAudio2_7.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5f8e'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdd9762891'
-        package: C:\Windows\System32\XAudio2_7.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdd97635b6'
-        package: C:\Windows\System32\XAudio2_7.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5f8e'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdde41bf48'
-        package: C:\Windows\System32\AudioSes.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdde31468b'
-        package: C:\Windows\System32\AudioSes.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca886f2'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdde314507'
-        package: C:\Windows\System32\AudioSes.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca886f2'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdde41bf48'
-        package: C:\Windows\System32\AudioSes.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffdde3128e1'
-        package: C:\Windows\System32\AudioSes.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa6099'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100faa54'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x23d8d4b3848'
-        r12: '0x0'
-        r13: '0x23d8d4b1088'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x0'
-        r9: '0x8c4357f730'
-        rax: '0x5b'
-        rbp: '0x8c4357f940'
-        rbx: '0x3'
-        rcx: '0x3'
-        rdi: '0x3'
-        rdx: '0x23d8d4b1088'
-        rip: '0x7ffe100faa54'
-        rsi: '0x0'
-        rsp: '0x8c4357f4f8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100faa54'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x23d8d4b3848'
-        r12: '0x0'
-        r13: '0x23d8d4b1088'
-        r14: '0x0'
-        r15: '0x0'
-        r8: '0x0'
-        r9: '0x8c4357f730'
-        rax: '0x5b'
-        rbp: '0x8c4357f940'
-        rbx: '0x3'
-        rcx: '0x3'
-        rdi: '0x3'
-        rdx: '0x23d8d4b1088'
-        rip: '0x7ffe100faa54'
-        rsi: '0x0'
-        rsp: '0x8c4357f4f8'
-  - crashed: false
-    id: 7648
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ff754d8ca09'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d7a570'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c43a4eff0'
-        r12: '0x1'
-        r13: '0x23df8d19d60'
-        r14: '0x288'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x1'
-        rax: '0x4'
-        rbp: '0x8c43a4f649'
-        rbx: '0x0'
-        rcx: '0x288'
-        rdi: '0x288'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c43a4f4d8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x23df7346090'
-        r11: '0x8c43a4eff0'
-        r12: '0x1'
-        r13: '0x23df8d19d60'
-        r14: '0x288'
-        r15: '0x23df9a304c8'
-        r8: '0x0'
-        r9: '0x1'
-        rax: '0x4'
-        rbp: '0x8c43a4f649'
-        rbx: '0x0'
-        rcx: '0x288'
-        rdi: '0x288'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c43a4f4d8'
-  - crashed: false
-    id: 612
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e4b37f'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7566cc3d7'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7566cbf67'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8d176'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75501f8fc'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75504b92d'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754da6f49'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754dc5267'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7544e0000'
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e349d6'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8ca09'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1e2338'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75a1e2338'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d89952'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff755199769'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8f221'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754e3419b'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0ca99252'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df8d19ea0'
-        r14: '0x298'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x7ff75a3e20d0'
-        rax: '0x4'
-        rbp: '0x8c4188f919'
-        rbx: '0x0'
-        rcx: '0x298'
-        rdi: '0x298'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4188f7a8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100f9f84'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x23df8d19ea0'
-        r14: '0x298'
-        r15: '0x23df9a304c8'
-        r8: '0x1'
-        r9: '0x7ff75a3e20d0'
-        rax: '0x4'
-        rbp: '0x8c4188f919'
-        rbx: '0x0'
-        rcx: '0x298'
-        rdi: '0x298'
-        rdx: '0x0'
-        rip: '0x7ffe100f9f84'
-        rsi: '0x0'
-        rsp: '0x8c4188f7a8'
-  - crashed: false
-    id: 10900
-    raw_stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100d1471'
-        package: C:\Windows\System32\ntdll.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0fd53034'
-        package: C:\Windows\System32\kernel32.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff75519224c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551971e8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7566cc508'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a671f8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759054684'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7566be97c'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff759054684'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7566ce2a3'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a670b0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754db0220'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff758a67a48'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d8f4e0'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff7551976c3'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ff754d7feb8'
-        package: \\Mac\Home\Desktop\WindowsNoEditor\YetAnother\Binaries\Win64\YetAnother.exe
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe0caa5e9a'
-        package: C:\Windows\System32\KERNELBASE.dll
-        trust: scan
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x7ff758a67a48'
-        r14: '0x0'
-        r15: '0x23df9a31050'
-        r8: '0xff'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x34'
-        rbp: '0x8c4189fd19'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x6'
-        rdx: '0x8c4189fbd0'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c4189fba8'
-    stacktrace:
-      frames:
-      - in_app: false
-        instruction_addr: '0x7ffe100fa584'
-        package: C:\Windows\System32\ntdll.dll
-        trust: context
-      registers:
-        r10: '0x7ffef000'
-        r11: '0x1'
-        r12: '0x0'
-        r13: '0x7ff758a67a48'
-        r14: '0x0'
-        r15: '0x23df9a31050'
-        r8: '0xff'
-        r9: '0xfffffffffe7f6361'
-        rax: '0x34'
-        rbp: '0x8c4189fd19'
-        rbx: '0x0'
-        rcx: '0x0'
-        rdi: '0x6'
-        rdx: '0x8c4189fbd0'
-        rip: '0x7ffe100fa584'
-        rsi: '0x0'
-        rsp: '0x8c4189fba8'

+ 0 - 279
tests/symbolicator/test_cfi.py

@@ -1,279 +0,0 @@
-from __future__ import absolute_import
-
-import copy
-import mock
-import os
-
-from symbolic import CFICACHE_LATEST_VERSION
-
-from sentry.attachments import CachedAttachment
-from sentry.lang.native.cfi import reprocess_minidump_with_cfi
-from sentry.lang.native.minidump import MINIDUMP_ATTACHMENT_TYPE
-from sentry.models import ProjectCfiCacheFile
-from sentry.testutils import TestCase
-
-RAW_STACKTRACE = [
-    {
-        'instruction_addr': '0x7f51401e4800',
-        'package': u'/lib/x86_64-linux-gnu/libc-2.23.so',
-        'trust': 'scan',
-    },
-    {
-        'instruction_addr': '0x7f514025002e',
-        'package': u'/lib/x86_64-linux-gnu/libc-2.23.so',
-        'trust': 'scan',
-    },
-    {
-        'instruction_addr': '0x401d72',
-        'package': u'/work/linux/build/crash',
-        'trust': 'context',
-    }
-]
-
-CFI_STACKTRACE = [
-    {
-        'instruction_addr': '0x401dc0',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x7f5140cdc000',
-        'package': None,
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x400040',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x7fff5aef1000',
-        'package': None,
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x7fff5ae4ac88',
-        'package': None,
-        'trust': 'cfi'
-    },
-    {
-        'instruction_addr': '0x401de9',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x401dc0',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x414ca0',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x401c70',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x401dc0',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x401c70',
-        'package': u'/work/linux/build/crash',
-        'trust': 'scan'
-    },
-    {
-        'instruction_addr': '0x7f514017d830',
-        'package': u'/lib/x86_64-linux-gnu/libc-2.23.so',
-        'trust': 'cfi'
-    },
-    {
-        'instruction_addr': '0x401d72',
-        'package': u'/work/linux/build/crash',
-        'trust': 'context',
-    }
-]
-
-CFI_CACHE = [
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1dc0', 'scan'),
-    (None, '0x7f5140cdc000', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x40', 'scan'),
-    (None, '0x7fff5aef1000', 'scan'),
-    (None, '0x7fff5ae4ac88', 'cfi'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1de9', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1dc0', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x14ca0', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1c70', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1dc0', 'scan'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1c70', 'scan'),
-    ('451a38b5-0679-79d2-0738-22a5ceb24c4b', '0x20830', 'cfi'),
-    ('c0bcc3f1-9827-fe65-3058-404b2831d9e6', '0x1d72', 'context'),
-]
-
-
-class CfiReprocessingTest(TestCase):
-    def mock_attachments(self):
-        path = os.path.join(os.path.dirname(__file__), 'fixtures', 'linux.dmp')
-        with open(path, 'rb') as minidump:
-            data = minidump.read()
-
-        return [CachedAttachment(data=data, type=MINIDUMP_ATTACHMENT_TYPE)]
-
-    def get_mock_event(self, reprocessed=False):
-        stacktrace = CFI_STACKTRACE if reprocessed else RAW_STACKTRACE
-        return copy.deepcopy({
-            'event_id': '9dac1e3a7ea043818ba6f0685e258c09',
-            'project': self.project.id,
-            'platform': 'native',
-            'debug_meta': {
-                'images': [
-                    {
-                        'id': u'c0bcc3f1-9827-fe65-3058-404b2831d9e6',
-                        'image_addr': '0x400000',
-                        'image_size': 106496,
-                        'name': u'/work/linux/build/crash',
-                        'type': 'symbolic'
-                    },
-                    {
-                        'id': u'451a38b5-0679-79d2-0738-22a5ceb24c4b',
-                        'image_addr': '0x7f514015d000',
-                        'image_size': 1835008,
-                        'name': u'/lib/x86_64-linux-gnu/libc-2.23.so',
-                        'type': 'symbolic'
-                    },
-                ]
-            },
-            'exception': {
-                'values': [
-                    {
-                        'mechanism': {
-                            'type': 'minidump',
-                            'handled': False
-                        },
-                        'stacktrace': {
-                            'frames': stacktrace,
-                        },
-                        'thread_id': 1304,
-                    }
-                ]
-            },
-            'threads': {
-                'values': [
-                    {
-                        'crashed': True,
-                        'id': 1304
-                    }
-                ]
-            },
-        })
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_reprocessing_no_minidump(self, mock_cache_get, mock_attachment_get):
-        data = self.get_mock_event(reprocessed=False)
-        result = reprocess_minidump_with_cfi(data)
-
-        # mock_cache_get.assert_called_with('st:86e3a22f05a287eeeca681ecbeef3067')
-        cache_key = 'e:9dac1e3a7ea043818ba6f0685e258c09:%s' % self.project.id
-        mock_attachment_get.assert_called_once_with(cache_key)
-        assert result is None
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get')
-    def test_cfi_reprocessing_no_cfi_caches(self, mock_attachment_get):
-        mock_attachment_get.return_value = self.mock_attachments()
-
-        data = self.get_mock_event(reprocessed=False)
-        result = reprocess_minidump_with_cfi(data)
-
-        assert result is None
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_reprocessing_no_scanned_frames(self, mock_cache_get, mock_attachment_get):
-        data = self.get_mock_event(reprocessed=False)
-        for frame in data['exception']['values'][0]['stacktrace']['frames']:
-            if frame['trust'] == 'scan':
-                frame['trust'] = 'cfi'
-        result = reprocess_minidump_with_cfi(data)
-
-        assert mock_cache_get.call_count == 0
-        assert mock_attachment_get.call_count == 0
-        assert result is None
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_reprocessing_cached(self, mock_cache_get, mock_attachment_get):
-        mock_cache_get.return_value = CFI_CACHE
-
-        data = self.get_mock_event(reprocessed=False)
-        result = reprocess_minidump_with_cfi(data)
-
-        mock_cache_get.assert_called_once_with('st:b4eeed5c7008d0003cc5549c36dba6b7')
-        assert mock_attachment_get.call_count == 0
-        assert result == self.get_mock_event(reprocessed=True)
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_unchanged(self, mock_cache_get, mock_attachment_get):
-        mock_cache_get.return_value = '__no_cfi__'
-
-        data = self.get_mock_event(reprocessed=False)
-        result = reprocess_minidump_with_cfi(data)
-
-        mock_cache_get.assert_called_once_with('st:b4eeed5c7008d0003cc5549c36dba6b7')
-        assert mock_attachment_get.call_count == 0
-        assert result is None
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_missing_stacktrace(self, mock_cache_get, mock_attachment_get):
-        data = {
-            'exception': {
-                'values': [
-                    {
-                        'stacktrace': None,
-                    }
-                ]
-            },
-        }
-        result = reprocess_minidump_with_cfi(data)
-
-        assert mock_cache_get.call_count == 0
-        assert mock_attachment_get.call_count == 0
-        assert result is None
-
-    @mock.patch('sentry.attachments.base.BaseAttachmentCache.get', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.set', return_value=None)
-    @mock.patch('sentry.utils.cache.cache.get', return_value=None)
-    def test_cfi_reprocessing(self, mock_cache_get, mock_cache_set, mock_attachment_get):
-        dif = self.create_dif_file(
-            debug_id='c0bcc3f1-9827-fe65-3058-404b2831d9e6',
-            features=['unwind']
-        )
-
-        cache_file = self.create_file_from_path(
-            path=os.path.join(os.path.dirname(__file__), 'fixtures', 'linux.cficache'),
-            type='project.cficache'
-        )
-
-        ProjectCfiCacheFile.objects.create(
-            project=self.project,
-            cache_file=cache_file,
-            debug_file=dif,
-            checksum=dif.file.checksum,
-            version=CFICACHE_LATEST_VERSION,
-        )
-
-        mock_attachment_get.return_value = self.mock_attachments()
-        data = self.get_mock_event(reprocessed=False)
-        result = reprocess_minidump_with_cfi(data)
-
-        cache_key = 'e:9dac1e3a7ea043818ba6f0685e258c09:%s' % self.project.id
-        mock_attachment_get.assert_called_once_with(cache_key)
-        mock_cache_set.assert_called_with('st:b4eeed5c7008d0003cc5549c36dba6b7', CFI_CACHE)
-
-        assert result == self.get_mock_event(reprocessed=True)

Some files were not shown because too many files changed in this diff