vadimcn / codelldb

A native debugger extension for VSCode based on LLDB
https://marketplace.visualstudio.com/items?itemName=vadimcn.vscode-lldb
MIT License
2.55k stars 246 forks source link

Rust: Binary Breakpoints not hit #453

Open ysndr opened 3 years ago

ysndr commented 3 years ago

OS: MacOS 10.14.6 VSCode version:
Version: 1.56.2 Commit: 054a9295330880ed74ceaedda236253b4f39a335 Date: 2021-05-12T17:44:30.902Z (3 wks ago) Electron: 12.0.4 Chrome: 89.0.4389.114 Node.js: 14.16.0 V8: 8.9.255.24-electron.0 Extension version: 1.6.4 Compiler: Rust nighly Build target: x86_64-darwin

When debugging rust projects that expose both a binary and a library, breakpoints in the binary are greyed out, and do not break.

Debug log
Running `cargo build --bin=flake-info --package=flake-info --message-format=json`...
    Blocking waiting for file lock on package cache
warning: unused import: `std::path::PathBuf`
 --> src/lib.rs:1:5
  |
1 | use std::path::PathBuf;
  |     ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: unused import: `self`
 --> src/commands/nix_gc.rs:2:12
  |
2 |     path::{self, PathBuf},
  |            ^^^^

warning: unused import: `write`
 --> src/data/derivation.rs:1:22
  |
1 | use std::fmt::{self, write, Display};
  |                      ^^^^^

warning: unused import: `self`
 --> src/data/source.rs:1:16
  |
1 | use std::{fs::{self, File}, path::Path};
  |                ^^^^

warning: structure field `fullName` should have a snake case name
   --> src/data/derivation.rs:122:9
    |
122 |         fullName: String,
    |         ^^^^^^^^ help: convert the identifier to snake case: `full_name`
    |
    = note: `#[warn(non_snake_case)]` on by default

warning: structure field `shortName` should have a snake case name
   --> src/data/derivation.rs:124:9
    |
124 |         shortName: String,
    |         ^^^^^^^^^ help: convert the identifier to snake case: `short_name`

warning: variable `fullName` should have a snake case name
   --> src/data/derivation.rs:122:9
    |
122 |         fullName: String,
    |         ^^^^^^^^ help: convert the identifier to snake case: `full_name`

warning: variable `shortName` should have a snake case name
   --> src/data/derivation.rs:124:9
    |
124 |         shortName: String,
    |         ^^^^^^^^^ help: convert the identifier to snake case: `short_name`

warning: 8 warnings emitted

   Compiling flake-info v0.2.0 (/Volumes/projects/nixos-search/flake-info)
warning: unused import: `Context`
 --> src/main.rs:1:14
  |
1 | use anyhow::{Context, Result};
  |              ^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: unused import: `Export`
 --> src/main.rs:3:30
  |
3 | use flake_info::data::{self, Export, Source};
  |                              ^^^^^^

warning: unused import: `elastic`
 --> src/main.rs:4:28
  |
4 | use flake_info::{commands, elastic};
  |                            ^^^^^^^

warning: unused import: `info`
 --> src/main.rs:5:18
  |
5 | use log::{error, info, warn};
  |                  ^^^^

warning: unused import: `std::fs`
 --> src/main.rs:6:5
  |
6 | use std::fs;
  |     ^^^^^^^

warning: unused import: `Path`
 --> src/main.rs:7:17
  |
7 | use std::path::{Path, PathBuf};
  |                 ^^^^

warning: 6 warnings emitted

    Finished dev [unoptimized + debuginfo] target(s) in 4.49s
Raw artifacts:
{
  fileName: '/Volumes/projects/nixos-search/flake-info/target/debug/flake-info',
  name: 'flake-info',
  kind: 'bin'
}
Filtered artifacts: 
{
  fileName: '/Volumes/projects/nixos-search/flake-info/target/debug/flake-info',
  name: 'flake-info',
  kind: 'bin'
}
configuration: {
  type: 'lldb',
  request: 'launch',
  name: "Debug executable 'flake-info'",
  stopOnEntry: true,
  args: [ '-t', './examples/nixpkgs.json' ],
  cwd: '${workspaceFolder}',
  __configurationTarget: 5,
  relativePathBase: '/Volumes/projects/nixos-search/flake-info',
  program: '/Volumes/projects/nixos-search/flake-info/target/debug/flake-info',
  sourceLanguages: [ 'rust' ]
}
liblldb: /Users/ysander/.vscode/extensions/vadimcn.vscode-lldb-1.6.1/lldb/lib/liblldb.dylib
environment: {}
params: {
  evaluateForHovers: true,
  commandCompletions: true,
  sourceLanguages: [ 'rust' ]
}
Listening on port 56757
[2021-06-07T17:31:27Z DEBUG codelldb] New debug session
INFO(Python) 19:31:28 formatters: Initializing
INFO(Python) 19:31:28 formatters.rust: Initializing
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"lldb","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-us","supportsProgressReporting":true,"supportsInvalidatedEvent":true},"type":"request","seq":1}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"rust_panic","label":"Rust: on panic"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"launch","arguments":{"type":"lldb","request":"launch","name":"Debug executable 'flake-info'","stopOnEntry":true,"args":["-t","./examples/nixpkgs.json"],"cwd":"/Volumes/projects/nixos-search/flake-info","__configurationTarget":5,"relativePathBase":"/Volumes/projects/nixos-search/flake-info","program":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","sourceLanguages":["rust"],"_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null,"terminalPromptClear":null,"evaluateForHovers":true,"commandCompletions":true},"__sessionId":"021b6be8-74bd-48b9-9ba9-e872b8f29c34"},"type":"request","seq":2}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":1,"event":"capabilities","body":{"capabilities":{"exceptionBreakpointFilters":[{"default":true,"filter":"rust_panic","label":"Rust: on panic"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":2,"event":"initialized"}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"request","seq":3,"command":"runInTerminal","arguments":{"args":["/Users/ysander/.vscode/extensions/vadimcn.vscode-lldb-1.6.1/adapter/codelldb","terminal-agent","--port=56763"],"cwd":"","kind":"integrated","title":"Debug executable 'flake-info'"}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"lib.rs","path":"/Volumes/projects/nixos-search/flake-info/src/lib.rs"},"lines":[14],"breakpoints":[{"line":14}],"sourceModified":false},"type":"request","seq":3}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"main.rs","path":"/Volumes/projects/nixos-search/flake-info/src/main.rs"},"lines":[112],"breakpoints":[{"line":112}],"sourceModified":false},"type":"request","seq":4}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"source.rs","path":"/Volumes/projects/nixos-search/flake-info/src/data/source.rs"},"lines":[70],"breakpoints":[{"line":70}],"sourceModified":false},"type":"request","seq":5}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"type":"response","seq":6,"command":"runInTerminal","request_seq":3,"success":true,"body":{"shellProcessId":8656}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"line":14,"message":"Locations: 1","verified":true}]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":4,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":2,"message":"Locations: 0","verified":false}]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":5,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":3,"line":70,"message":"Locations: 3","verified":true}]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":7}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":7,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":8}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":8,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"setExceptionBreakpoints","arguments":{"filters":["rust_panic"]},"type":"request","seq":9}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":9,"success":true,"command":"setExceptionBreakpoints"}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"configurationDone","type":"request","seq":10}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":10,"success":true,"command":"configurationDone"}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":4,"event":"output","body":{"output":"Launching: /Volumes/projects/nixos-search/flake-info/target/debug/flake-info -t ./examples/nixpkgs.json\n"}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":11}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":5,"event":"output","body":{"output":"Launched process 9090\n"}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":6,"event":"stopped","body":{"allThreadsStopped":true,"reason":"unknown"}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":11,"success":true,"command":"threads","body":{"threads":[]}}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":12}
[2021-06-07T17:31:28Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":12,"success":true,"command":"threads","body":{"threads":[]}}
[2021-06-07T17:31:28Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad438a8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:28Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad43968 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:28Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad43a68 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:28Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad43b48 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad44388 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56afa7838 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ae623b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56afa7838 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ae623b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd569daaff8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {dyld, flake-info}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":7,"event":"module","body":{"module":{"addressRange":"100BD2000","id":"100BD2000","name":"dyld","path":"/usr/lib/dyld","symbolFilePath":"/usr/lib/dyld","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":8,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolFilePath":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:29Z DEBUG codelldb::debug_session] Debug event: 0x7fd56afb9890 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = stopped}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":9,"event":"output","body":{"category":"stderr","output":"Stop reason: signal SIGSTOP\n"}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":10,"event":"stopped","body":{"allThreadsStopped":true,"reason":"signal","text":"signal SIGSTOP","threadId":8571589}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":13}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":13,"success":true,"command":"threads","body":{"threads":[{"id":8571589,"name":"1: tid=8571589"}]}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8571589,"startFrame":0,"levels":1},"type":"request","seq":14}
[2021-06-07T17:31:29Z DEBUG codelldb::disassembly] dyld`_dyld_start
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":14,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1001,"line":3,"name":"_dyld_start","presentationHint":"subtle","source":{"name":"@_dyld_start","sourceReference":1000}}],"totalFrames":1}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"source","arguments":{"sourceReference":1000,"source":{"name":"@_dyld_start","sourceReference":1000}},"type":"request","seq":15}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":15,"success":true,"command":"source","body":{"content":"; id = {0x00000000}, range = [0x0000000000001000-0x0000000000001074), mangled=\"_dyld_start\"\n; Source location: unknown\n100BD3000: 5F                         popq   %rdi\n100BD3001: 6A 00                      pushq  $0x0\n100BD3003: 48 89 E5                   movq   %rsp, %rbp\n100BD3006: 48 83 E4 F0                andq   $-0x10, %rsp\n100BD300A: 48 83 EC 10                subq   $0x10, %rsp\n100BD300E: 8B 75 08                   movl   0x8(%rbp), %esi\n100BD3011: 48 8D 55 10                leaq   0x10(%rbp), %rdx\n100BD3015: 4C 8B 05 44 DE 06 00       movq   0x6de44(%rip), %r8  ; _dyld_start_static\n100BD301C: 48 8D 0D DD FF FF FF       leaq   -0x23(%rip), %rcx  ; <+0>\n100BD3023: 4C 29 C1                   subq   %r8, %rcx\n100BD3026: 4C 8D 05 D3 EF FF FF       leaq   -0x102d(%rip), %r8\n100BD302D: 4C 8D 4D F8                leaq   -0x8(%rbp), %r9\n100BD3031: E8 3E 00 00 00             callq  0x100bd3074  ; dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*)\n100BD3036: 48 8B 7D F8                movq   -0x8(%rbp), %rdi\n100BD303A: 48 83 FF 00                cmpq   $0x0, %rdi\n100BD303E: 75 10                      jne    0x100bd3050  ; <+80>\n100BD3040: 48 89 EC                   movq   %rbp, %rsp\n100BD3043: 48 83 C4 08                addq   $0x8, %rsp\n100BD3047: 48 C7 C5 00 00 00 00       movq   $0x0, %rbp\n100BD304E: FF E0                      jmpq   *%rax\n100BD3050: 48 83 C4 10                addq   $0x10, %rsp\n100BD3054: 57                         pushq  %rdi\n100BD3055: 48 8B 7D 08                movq   0x8(%rbp), %rdi\n100BD3059: 48 8D 75 10                leaq   0x10(%rbp), %rsi\n100BD305D: 48 8D 54 FE 08             leaq   0x8(%rsi,%rdi,8), %rdx\n100BD3062: 48 89 D1                   movq   %rdx, %rcx\n100BD3065: 4C 8B 01                   movq   (%rcx), %r8\n100BD3068: 48 83 C1 08                addq   $0x8, %rcx\n100BD306C: 4D 85 C0                   testq  %r8, %r8\n100BD306F: 75 F4                      jne    0x100bd3065  ; <+101>\n100BD3071: FF E0                      jmpq   *%rax\n100BD3073: 90                         nop    \n","mimeType":"text/x-lldb.disassembly"}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8571589,"startFrame":1,"levels":19},"type":"request","seq":16}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":16,"success":true,"command":"stackTrace","body":{"stackFrames":[],"totalFrames":1}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":17}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":17,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1002},{"expensive":false,"name":"Static","variablesReference":1003},{"expensive":false,"name":"Global","variablesReference":1004},{"expensive":false,"name":"Registers","variablesReference":1005}]}}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1002},"type":"request","seq":18}
[2021-06-07T17:31:29Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":18,"success":true,"command":"variables","body":{"variables":[]}}
[2021-06-07T17:31:31Z DEBUG codelldb::dap_codec] --> {"command":"continue","arguments":{"threadId":8571589},"type":"request","seq":19}
[2021-06-07T17:31:31Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":19,"success":true,"command":"continue","body":{"allThreadsContinued":true}}
[2021-06-07T17:31:31Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ae3f250 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = running}
[2021-06-07T17:31:31Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":11,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ed8e0b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":12,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":14,"message":"Locations: 2","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56eda61a8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":13,"event":"breakpoint","body":{"breakpoint":{"id":3,"line":70,"message":"Locations: 6","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56e8e4d78 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":14,"event":"breakpoint","body":{"breakpoint":{"id":4,"message":"Locations: 2","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56adebec8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
warning: (x86_64) /Volumes/projects/nixos-search/flake-info/target/debug/flake-info(0x0000000100000000) address 0x0000000100000000 maps to more than one section: flake-info.__TEXT and flake-info.__TEXT
warning: (x86_64) /Volumes/projects/nixos-search/flake-info/target/debug/flake-info(0x0000000100000000) address 0x000000010045f000 maps to more than one section: flake-info.__DATA and flake-info.__DATA
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56af659b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56eaf9838 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56afbb9e8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56af659b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56af659b8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":16,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f49e6a8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f49e748 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":17,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":14,"message":"Locations: 3","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f4b6548 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56eecae78 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f176148 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f176288 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":18,"event":"breakpoint","body":{"breakpoint":{"id":3,"line":70,"message":"Locations: 9","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f4b6a28 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f4b6ac8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":19,"event":"breakpoint","body":{"breakpoint":{"id":4,"message":"Locations: 3","verified":true},"reason":"changed"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f4b6ac8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f500b48 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {libiconv.dylib(0x0000000100c9d000)}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"100C9D000","id":"100C9D000","name":"libiconv.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:32Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f605098 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {libresolv.9.dylib(0x0000000100c9f000)}
[2021-06-07T17:31:32Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"100C9F000","id":"100C9F000","name":"libresolv.9.dylib","path":"/nix/store/2c9kjj14qhns6cd28cmm51jvy74yk4c4-Libsystem-osx-10.12.6/lib/libresolv.9.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f63e638 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {libiconv-nocharset.dylib(0x0000000100cca000)}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":23,"event":"module","body":{"module":{"addressRange":"100CCA000","id":"100CCA000","name":"libiconv-nocharset.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv-nocharset.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f63e958 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {libcharset.1.dylib(0x0000000100db4000)}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"100DB4000","id":"100DB4000","name":"libcharset.1.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libcharset.1.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56f63f3f8 Event: broadcaster = 0x7fd56c048220 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000), Security, CoreFoundation, libiconv.dylib(0x0000000100c9d000), libSystem.B.dylib, libresolv.9.dylib(0x0000000100c9f000), Foundation, AppleFSCompression, libDiagnosticMessagesClient.dylib, libOpenScriptingUtil.dylib, libauto.dylib, libbsm.0.dylib, libcoretls.dylib, libcoretls_cfhelpers.dylib, libpam.2.dylib, libsqlite3.dylib, libxar.1.dylib, libz.1.dylib, IOKit, libobjc.A.dylib, libc++.1.dylib, DiskArbitration, libarchive.2.dylib, libicucore.A.dylib, libxml2.2.dylib, CFNetwork, SystemConfiguration, CoreServices, liblangid.dylib, libCRFSuite.dylib, libc++abi.dylib, libcache.dylib, libcommonCrypto.dylib, libcompiler_rt.dylib, libcopyfile.dylib, libcorecrypto.dylib, libdispatch.dylib, libdyld.dylib, libkeymgr.dylib, liblaunch.dylib, libmacho.dylib, libquarantine.dylib, libremovefile.dylib, libsystem_asl.dylib, libsystem_blocks.dylib, libsystem_c.dylib, libsystem_configuration.dylib, libsystem_coreservices.dylib, libsystem_darwin.dylib, libsystem_dnssd.dylib, libsystem_info.dylib, libsystem_m.dylib, libsystem_malloc.dylib, libsystem_networkextension.dylib, libsystem_notify.dylib, libsystem_sandbox.dylib, libsystem_secinit.dylib, libsystem_kernel.dylib, libsystem_platform.dylib, libsystem_pthread.dylib, libsystem_symptoms.dylib, libsystem_trace.dylib, libunwind.dylib, libxpc.dylib, libenergytrace.dylib, libkxld.dylib, libbz2.1.0.dylib, liblzma.5.dylib, libnetwork.dylib, libapple_nghttp2.dylib, libpcap.A.dylib, FSEvents, CarbonCore, Metadata, OSServices, SearchKit, AE, LaunchServices, DictionaryServices, SharedFileList, NetFS, NetAuth, loginsupport, TCC, CoreNLP, MetadataUtilities, libmecabra.dylib, ApplicationServices, CoreGraphics, CoreText, ImageIO, ColorSync, ATS, ColorSyncLegacy, HIServices, LangAnalysis, PrintCore, QD, SpeechSynthesis, SkyLight, IOSurface, Accelerate, libcompression.dylib, CoreDisplay, Metal, MetalPerformanceShaders, MultitouchSupport, QuartzCore, vImage, vecLib, libvMisc.dylib, libvDSP.dylib, libBLAS.dylib, libLAPACK.dylib, libLinearAlgebra.dylib, libSparseBLAS.dylib, libQuadrature.dylib, libBNNS.dylib, libSparse.dylib, GPUWrangler, IOAccelerator, IOPresentment, DSExternalDisplay, libCoreFSCache.dylib, MPSCore, MPSImage, MPSNeuralNetwork, MPSMatrix, MPSRayIntersector, MetalTools, AggregateDictionary, libMobileGestalt.dylib, CoreImage, CoreVideo, OpenGL, GraphVisualizer, FaceCore, OpenCL, libFosl_dynamic.dylib, OTSVG, libFontParser.dylib, libFontRegistry.dylib, libJPEG.dylib, libTIFF.dylib, libPng.dylib, libGIF.dylib, libJP2.dylib, libRadiance.dylib, AppleJPEG, libGFXShared.dylib, libGLU.dylib, libGL.dylib, libGLImage.dylib, libCVMSPluginSupport.dylib, libCoreVMClient.dylib, libcups.2.dylib, Kerberos, GSS, libresolv.9.dylib, libiconv.2.dylib, Heimdal, libheimdal-asn1.dylib, OpenDirectory, CommonAuth, CFOpenDirectory, SecurityFoundation, APFS, libutil.dylib, libcharset.1.dylib, CoreAudio, AudioToolbox, AppleSauce, AssertionServices, BaseBoard, libmecab.1.0.0.dylib, libgermantok.dylib, libThaiTokenizer.dylib, libChineseTokenizer.dylib, LanguageModeling, CoreEmoji, Lexicon, LinguisticData, libcmph.dylib, CoreData, ServiceManagement, BackgroundTaskManagement, libxslt.1.dylib, libiconv-nocharset.dylib(0x0000000100cca000), libcharset.1.dylib(0x0000000100db4000)}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"7FFF419E7000","id":"7FFF419E7000","name":"Security","path":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolFilePath":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"7FFF3648A000","id":"7FFF3648A000","name":"CoreFoundation","path":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolFilePath":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"100C9D000","id":"100C9D000","name":"libiconv.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"7FFF5F43A000","id":"7FFF5F43A000","name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","symbolFilePath":"/usr/lib/libSystem.B.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"100C9F000","id":"100C9F000","name":"libresolv.9.dylib","path":"/nix/store/2c9kjj14qhns6cd28cmm51jvy74yk4c4-Libsystem-osx-10.12.6/lib/libresolv.9.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"7FFF3870F000","id":"7FFF3870F000","name":"Foundation","path":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolFilePath":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFF465FC000","id":"7FFF465FC000","name":"AppleFSCompression","path":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolFilePath":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFF5EFFA000","id":"7FFF5EFFA000","name":"libDiagnosticMessagesClient.dylib","path":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolFilePath":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFF5F2FA000","id":"7FFF5F2FA000","name":"libOpenScriptingUtil.dylib","path":"/usr/lib/libOpenScriptingUtil.dylib","symbolFilePath":"/usr/lib/libOpenScriptingUtil.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFF5F58E000","id":"7FFF5F58E000","name":"libauto.dylib","path":"/usr/lib/libauto.dylib","symbolFilePath":"/usr/lib/libauto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFF5F660000","id":"7FFF5F660000","name":"libbsm.0.dylib","path":"/usr/lib/libbsm.0.dylib","symbolFilePath":"/usr/lib/libbsm.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"7FFF5F988000","id":"7FFF5F988000","name":"libcoretls.dylib","path":"/usr/lib/libcoretls.dylib","symbolFilePath":"/usr/lib/libcoretls.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFF5F99F000","id":"7FFF5F99F000","name":"libcoretls_cfhelpers.dylib","path":"/usr/lib/libcoretls_cfhelpers.dylib","symbolFilePath":"/usr/lib/libcoretls_cfhelpers.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFF6140B000","id":"7FFF6140B000","name":"libpam.2.dylib","path":"/usr/lib/libpam.2.dylib","symbolFilePath":"/usr/lib/libpam.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFF615CB000","id":"7FFF615CB000","name":"libsqlite3.dylib","path":"/usr/lib/libsqlite3.dylib","symbolFilePath":"/usr/lib/libsqlite3.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFF619C5000","id":"7FFF619C5000","name":"libxar.1.dylib","path":"/usr/lib/libxar.1.dylib","symbolFilePath":"/usr/lib/libxar.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFF61AE4000","id":"7FFF61AE4000","name":"libz.1.dylib","path":"/usr/lib/libz.1.dylib","symbolFilePath":"/usr/lib/libz.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFF38DC7000","id":"7FFF38DC7000","name":"IOKit","path":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolFilePath":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFF60C74000","id":"7FFF60C74000","name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","symbolFilePath":"/usr/lib/libobjc.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFF5F67F000","id":"7FFF5F67F000","name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","symbolFilePath":"/usr/lib/libc++.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFF38543000","id":"7FFF38543000","name":"DiskArbitration","path":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolFilePath":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":47,"event":"module","body":{"module":{"addressRange":"7FFF5F4E1000","id":"7FFF5F4E1000","name":"libarchive.2.dylib","path":"/usr/lib/libarchive.2.dylib","symbolFilePath":"/usr/lib/libarchive.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":48,"event":"module","body":{"module":{"addressRange":"7FFF60130000","id":"7FFF60130000","name":"libicucore.A.dylib","path":"/usr/lib/libicucore.A.dylib","symbolFilePath":"/usr/lib/libicucore.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":49,"event":"module","body":{"module":{"addressRange":"7FFF619D7000","id":"7FFF619D7000","name":"libxml2.2.dylib","path":"/usr/lib/libxml2.2.dylib","symbolFilePath":"/usr/lib/libxml2.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":50,"event":"module","body":{"module":{"addressRange":"7FFF3535C000","id":"7FFF3535C000","name":"CFNetwork","path":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolFilePath":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":51,"event":"module","body":{"module":{"addressRange":"7FFF42143000","id":"7FFF42143000","name":"SystemConfiguration","path":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolFilePath":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":52,"event":"module","body":{"module":{"addressRange":"7FFF376E1000","id":"7FFF376E1000","name":"CoreServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":53,"event":"module","body":{"module":{"addressRange":"7FFF603DE000","id":"7FFF603DE000","name":"liblangid.dylib","path":"/usr/lib/liblangid.dylib","symbolFilePath":"/usr/lib/liblangid.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":54,"event":"module","body":{"module":{"addressRange":"7FFF5EF2B000","id":"7FFF5EF2B000","name":"libCRFSuite.dylib","path":"/usr/lib/libCRFSuite.dylib","symbolFilePath":"/usr/lib/libCRFSuite.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":55,"event":"module","body":{"module":{"addressRange":"7FFF5F6D3000","id":"7FFF5F6D3000","name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","symbolFilePath":"/usr/lib/libc++abi.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":56,"event":"module","body":{"module":{"addressRange":"7FFF622DA000","id":"7FFF622DA000","name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","symbolFilePath":"/usr/lib/system/libcache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":57,"event":"module","body":{"module":{"addressRange":"7FFF622DF000","id":"7FFF622DF000","name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","symbolFilePath":"/usr/lib/system/libcommonCrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":58,"event":"module","body":{"module":{"addressRange":"7FFF622EA000","id":"7FFF622EA000","name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","symbolFilePath":"/usr/lib/system/libcompiler_rt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":59,"event":"module","body":{"module":{"addressRange":"7FFF622F2000","id":"7FFF622F2000","name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","symbolFilePath":"/usr/lib/system/libcopyfile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":60,"event":"module","body":{"module":{"addressRange":"7FFF622FC000","id":"7FFF622FC000","name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","symbolFilePath":"/usr/lib/system/libcorecrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":61,"event":"module","body":{"module":{"addressRange":"7FFF62408000","id":"7FFF62408000","name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","symbolFilePath":"/usr/lib/system/libdispatch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":62,"event":"module","body":{"module":{"addressRange":"7FFF62442000","id":"7FFF62442000","name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","symbolFilePath":"/usr/lib/system/libdyld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":63,"event":"module","body":{"module":{"addressRange":"7FFF6246F000","id":"7FFF6246F000","name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","symbolFilePath":"/usr/lib/system/libkeymgr.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":64,"event":"module","body":{"module":{"addressRange":"7FFF6247D000","id":"7FFF6247D000","name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","symbolFilePath":"/usr/lib/system/liblaunch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":65,"event":"module","body":{"module":{"addressRange":"7FFF6247E000","id":"7FFF6247E000","name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","symbolFilePath":"/usr/lib/system/libmacho.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":66,"event":"module","body":{"module":{"addressRange":"7FFF62484000","id":"7FFF62484000","name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","symbolFilePath":"/usr/lib/system/libquarantine.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":67,"event":"module","body":{"module":{"addressRange":"7FFF62487000","id":"7FFF62487000","name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","symbolFilePath":"/usr/lib/system/libremovefile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":68,"event":"module","body":{"module":{"addressRange":"7FFF62489000","id":"7FFF62489000","name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","symbolFilePath":"/usr/lib/system/libsystem_asl.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":69,"event":"module","body":{"module":{"addressRange":"7FFF624A1000","id":"7FFF624A1000","name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","symbolFilePath":"/usr/lib/system/libsystem_blocks.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":70,"event":"module","body":{"module":{"addressRange":"7FFF624A2000","id":"7FFF624A2000","name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","symbolFilePath":"/usr/lib/system/libsystem_c.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":71,"event":"module","body":{"module":{"addressRange":"7FFF6252A000","id":"7FFF6252A000","name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","symbolFilePath":"/usr/lib/system/libsystem_configuration.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":72,"event":"module","body":{"module":{"addressRange":"7FFF6252E000","id":"7FFF6252E000","name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","symbolFilePath":"/usr/lib/system/libsystem_coreservices.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":73,"event":"module","body":{"module":{"addressRange":"7FFF62532000","id":"7FFF62532000","name":"libsystem_darwin.dylib","path":"/usr/lib/system/libsystem_darwin.dylib","symbolFilePath":"/usr/lib/system/libsystem_darwin.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":74,"event":"module","body":{"module":{"addressRange":"7FFF62539000","id":"7FFF62539000","name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","symbolFilePath":"/usr/lib/system/libsystem_dnssd.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":75,"event":"module","body":{"module":{"addressRange":"7FFF62540000","id":"7FFF62540000","name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","symbolFilePath":"/usr/lib/system/libsystem_info.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":76,"event":"module","body":{"module":{"addressRange":"7FFF625B5000","id":"7FFF625B5000","name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","symbolFilePath":"/usr/lib/system/libsystem_m.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":77,"event":"module","body":{"module":{"addressRange":"7FFF62601000","id":"7FFF62601000","name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","symbolFilePath":"/usr/lib/system/libsystem_malloc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":78,"event":"module","body":{"module":{"addressRange":"7FFF6262C000","id":"7FFF6262C000","name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","symbolFilePath":"/usr/lib/system/libsystem_networkextension.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":79,"event":"module","body":{"module":{"addressRange":"7FFF62637000","id":"7FFF62637000","name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","symbolFilePath":"/usr/lib/system/libsystem_notify.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":80,"event":"module","body":{"module":{"addressRange":"7FFF62654000","id":"7FFF62654000","name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","symbolFilePath":"/usr/lib/system/libsystem_sandbox.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":81,"event":"module","body":{"module":{"addressRange":"7FFF62658000","id":"7FFF62658000","name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","symbolFilePath":"/usr/lib/system/libsystem_secinit.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":82,"event":"module","body":{"module":{"addressRange":"7FFF6258C000","id":"7FFF6258C000","name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","symbolFilePath":"/usr/lib/system/libsystem_kernel.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":83,"event":"module","body":{"module":{"addressRange":"7FFF6263F000","id":"7FFF6263F000","name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","symbolFilePath":"/usr/lib/system/libsystem_platform.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":84,"event":"module","body":{"module":{"addressRange":"7FFF62649000","id":"7FFF62649000","name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","symbolFilePath":"/usr/lib/system/libsystem_pthread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":85,"event":"module","body":{"module":{"addressRange":"7FFF6265B000","id":"7FFF6265B000","name":"libsystem_symptoms.dylib","path":"/usr/lib/system/libsystem_symptoms.dylib","symbolFilePath":"/usr/lib/system/libsystem_symptoms.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":86,"event":"module","body":{"module":{"addressRange":"7FFF62663000","id":"7FFF62663000","name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","symbolFilePath":"/usr/lib/system/libsystem_trace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":87,"event":"module","body":{"module":{"addressRange":"7FFF6267A000","id":"7FFF6267A000","name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","symbolFilePath":"/usr/lib/system/libunwind.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":88,"event":"module","body":{"module":{"addressRange":"7FFF62680000","id":"7FFF62680000","name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","symbolFilePath":"/usr/lib/system/libxpc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":89,"event":"module","body":{"module":{"addressRange":"7FFF5FFD7000","id":"7FFF5FFD7000","name":"libenergytrace.dylib","path":"/usr/lib/libenergytrace.dylib","symbolFilePath":"/usr/lib/libenergytrace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":90,"event":"module","body":{"module":{"addressRange":"7FFF62470000","id":"7FFF62470000","name":"libkxld.dylib","path":"/usr/lib/system/libkxld.dylib","symbolFilePath":"/usr/lib/system/libkxld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":91,"event":"module","body":{"module":{"addressRange":"7FFF5F671000","id":"7FFF5F671000","name":"libbz2.1.0.dylib","path":"/usr/lib/libbz2.1.0.dylib","symbolFilePath":"/usr/lib/libbz2.1.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":92,"event":"module","body":{"module":{"addressRange":"7FFF603E0000","id":"7FFF603E0000","name":"liblzma.5.dylib","path":"/usr/lib/liblzma.5.dylib","symbolFilePath":"/usr/lib/liblzma.5.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":93,"event":"module","body":{"module":{"addressRange":"7FFF60891000","id":"7FFF60891000","name":"libnetwork.dylib","path":"/usr/lib/libnetwork.dylib","symbolFilePath":"/usr/lib/libnetwork.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":94,"event":"module","body":{"module":{"addressRange":"7FFF5F4CA000","id":"7FFF5F4CA000","name":"libapple_nghttp2.dylib","path":"/usr/lib/libapple_nghttp2.dylib","symbolFilePath":"/usr/lib/libapple_nghttp2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":95,"event":"module","body":{"module":{"addressRange":"7FFF61412000","id":"7FFF61412000","name":"libpcap.A.dylib","path":"/usr/lib/libpcap.A.dylib","symbolFilePath":"/usr/lib/libpcap.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":96,"event":"module","body":{"module":{"addressRange":"7FFF37A80000","id":"7FFF37A80000","name":"FSEvents","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":97,"event":"module","body":{"module":{"addressRange":"7FFF3775F000","id":"7FFF3775F000","name":"CarbonCore","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":98,"event":"module","body":{"module":{"addressRange":"7FFF37C3B000","id":"7FFF37C3B000","name":"Metadata","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":99,"event":"module","body":{"module":{"addressRange":"7FFF37CDA000","id":"7FFF37CDA000","name":"OSServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":100,"event":"module","body":{"module":{"addressRange":"7FFF37D25000","id":"7FFF37D25000","name":"SearchKit","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":101,"event":"module","body":{"module":{"addressRange":"7FFF376E2000","id":"7FFF376E2000","name":"AE","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":102,"event":"module","body":{"module":{"addressRange":"7FFF37A89000","id":"7FFF37A89000","name":"LaunchServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":103,"event":"module","body":{"module":{"addressRange":"7FFF37A37000","id":"7FFF37A37000","name":"DictionaryServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":104,"event":"module","body":{"module":{"addressRange":"7FFF37D8D000","id":"7FFF37D8D000","name":"SharedFileList","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":105,"event":"module","body":{"module":{"addressRange":"7FFF3C11A000","id":"7FFF3C11A000","name":"NetFS","path":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","symbolFilePath":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":106,"event":"module","body":{"module":{"addressRange":"7FFF552A8000","id":"7FFF552A8000","name":"NetAuth","path":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolFilePath":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":107,"event":"module","body":{"module":{"addressRange":"7FFF5EC5F000","id":"7FFF5EC5F000","name":"loginsupport","path":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolFilePath":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":108,"event":"module","body":{"module":{"addressRange":"7FFF5CD7F000","id":"7FFF5CD7F000","name":"TCC","path":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolFilePath":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":109,"event":"module","body":{"module":{"addressRange":"7FFF4A218000","id":"7FFF4A218000","name":"CoreNLP","path":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolFilePath":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":110,"event":"module","body":{"module":{"addressRange":"7FFF54D3D000","id":"7FFF54D3D000","name":"MetadataUtilities","path":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolFilePath":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":111,"event":"module","body":{"module":{"addressRange":"7FFF604B5000","id":"7FFF604B5000","name":"libmecabra.dylib","path":"/usr/lib/libmecabra.dylib","symbolFilePath":"/usr/lib/libmecabra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":112,"event":"module","body":{"module":{"addressRange":"7FFF348A7000","id":"7FFF348A7000","name":"ApplicationServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":113,"event":"module","body":{"module":{"addressRange":"7FFF368D1000","id":"7FFF368D1000","name":"CoreGraphics","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolFilePath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":114,"event":"module","body":{"module":{"addressRange":"7FFF380B9000","id":"7FFF380B9000","name":"CoreText","path":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolFilePath":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":115,"event":"module","body":{"module":{"addressRange":"7FFF38EBB000","id":"7FFF38EBB000","name":"ImageIO","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":116,"event":"module","body":{"module":{"addressRange":"7FFF35C23000","id":"7FFF35C23000","name":"ColorSync","path":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolFilePath":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":117,"event":"module","body":{"module":{"addressRange":"7FFF348A8000","id":"7FFF348A8000","name":"ATS","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":118,"event":"module","body":{"module":{"addressRange":"7FFF34BF7000","id":"7FFF34BF7000","name":"ColorSyncLegacy","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":119,"event":"module","body":{"module":{"addressRange":"7FFF34C96000","id":"7FFF34C96000","name":"HIServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":120,"event":"module","body":{"module":{"addressRange":"7FFF34CE9000","id":"7FFF34CE9000","name":"LangAnalysis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":121,"event":"module","body":{"module":{"addressRange":"7FFF34CF9000","id":"7FFF34CF9000","name":"PrintCore","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":122,"event":"module","body":{"module":{"addressRange":"7FFF34D43000","id":"7FFF34D43000","name":"QD","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":123,"event":"module","body":{"module":{"addressRange":"7FFF34D7D000","id":"7FFF34D7D000","name":"SpeechSynthesis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":124,"event":"module","body":{"module":{"addressRange":"7FFF5B65E000","id":"7FFF5B65E000","name":"SkyLight","path":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolFilePath":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":125,"event":"module","body":{"module":{"addressRange":"7FFF38E58000","id":"7FFF38E58000","name":"IOSurface","path":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolFilePath":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":126,"event":"module","body":{"module":{"addressRange":"7FFF3286C000","id":"7FFF3286C000","name":"Accelerate","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":127,"event":"module","body":{"module":{"addressRange":"7FFF5F6FB000","id":"7FFF5F6FB000","name":"libcompression.dylib","path":"/usr/lib/libcompression.dylib","symbolFilePath":"/usr/lib/libcompression.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":128,"event":"module","body":{"module":{"addressRange":"7FFF36399000","id":"7FFF36399000","name":"CoreDisplay","path":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolFilePath":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":129,"event":"module","body":{"module":{"addressRange":"7FFF3B045000","id":"7FFF3B045000","name":"Metal","path":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolFilePath":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":130,"event":"module","body":{"module":{"addressRange":"7FFF3B315000","id":"7FFF3B315000","name":"MetalPerformanceShaders","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":131,"event":"module","body":{"module":{"addressRange":"7FFF55042000","id":"7FFF55042000","name":"MultitouchSupport","path":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolFilePath":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":132,"event":"module","body":{"module":{"addressRange":"7FFF40F58000","id":"7FFF40F58000","name":"QuartzCore","path":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolFilePath":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":133,"event":"module","body":{"module":{"addressRange":"7FFF32884000","id":"7FFF32884000","name":"vImage","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":134,"event":"module","body":{"module":{"addressRange":"7FFF338FE000","id":"7FFF338FE000","name":"vecLib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":135,"event":"module","body":{"module":{"addressRange":"7FFF3384A000","id":"7FFF3384A000","name":"libvMisc.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":136,"event":"module","body":{"module":{"addressRange":"7FFF33662000","id":"7FFF33662000","name":"libvDSP.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":137,"event":"module","body":{"module":{"addressRange":"7FFF32F1E000","id":"7FFF32F1E000","name":"libBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":138,"event":"module","body":{"module":{"addressRange":"7FFF3320B000","id":"7FFF3320B000","name":"libLAPACK.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":139,"event":"module","body":{"module":{"addressRange":"7FFF335B5000","id":"7FFF335B5000","name":"libLinearAlgebra.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":140,"event":"module","body":{"module":{"addressRange":"7FFF3364E000","id":"7FFF3364E000","name":"libSparseBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":141,"event":"module","body":{"module":{"addressRange":"7FFF335CB000","id":"7FFF335CB000","name":"libQuadrature.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":142,"event":"module","body":{"module":{"addressRange":"7FFF33198000","id":"7FFF33198000","name":"libBNNS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":143,"event":"module","body":{"module":{"addressRange":"7FFF335D1000","id":"7FFF335D1000","name":"libSparse.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":144,"event":"module","body":{"module":{"addressRange":"7FFF51566000","id":"7FFF51566000","name":"GPUWrangler","path":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolFilePath":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ae3f1c0 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = stopped}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ad749a0 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = running}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":145,"event":"module","body":{"module":{"addressRange":"7FFF5386B000","id":"7FFF5386B000","name":"IOAccelerator","path":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolFilePath":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":146,"event":"module","body":{"module":{"addressRange":"7FFF53876000","id":"7FFF53876000","name":"IOPresentment","path":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolFilePath":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":147,"event":"module","body":{"module":{"addressRange":"7FFF4AFF0000","id":"7FFF4AFF0000","name":"DSExternalDisplay","path":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolFilePath":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":148,"event":"module","body":{"module":{"addressRange":"7FFF3F596000","id":"7FFF3F596000","name":"libCoreFSCache.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":149,"event":"module","body":{"module":{"addressRange":"7FFF3B109000","id":"7FFF3B109000","name":"MPSCore","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":150,"event":"module","body":{"module":{"addressRange":"7FFF3B129000","id":"7FFF3B129000","name":"MPSImage","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":151,"event":"module","body":{"module":{"addressRange":"7FFF3B1CE000","id":"7FFF3B1CE000","name":"MPSNeuralNetwork","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":152,"event":"module","body":{"module":{"addressRange":"7FFF3B1A6000","id":"7FFF3B1A6000","name":"MPSMatrix","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":153,"event":"module","body":{"module":{"addressRange":"7FFF3B2FA000","id":"7FFF3B2FA000","name":"MPSRayIntersector","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":154,"event":"module","body":{"module":{"addressRange":"7FFF54D66000","id":"7FFF54D66000","name":"MetalTools","path":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolFilePath":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":155,"event":"module","body":{"module":{"addressRange":"7FFF45EA6000","id":"7FFF45EA6000","name":"AggregateDictionary","path":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolFilePath":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":156,"event":"module","body":{"module":{"addressRange":"7FFF5F2DA000","id":"7FFF5F2DA000","name":"libMobileGestalt.dylib","path":"/usr/lib/libMobileGestalt.dylib","symbolFilePath":"/usr/lib/libMobileGestalt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":157,"event":"module","body":{"module":{"addressRange":"7FFF36F63000","id":"7FFF36F63000","name":"CoreImage","path":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolFilePath":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":158,"event":"module","body":{"module":{"addressRange":"7FFF3821C000","id":"7FFF3821C000","name":"CoreVideo","path":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolFilePath":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":159,"event":"module","body":{"module":{"addressRange":"7FFF4013F000","id":"7FFF4013F000","name":"OpenGL","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":160,"event":"module","body":{"module":{"addressRange":"7FFF52377000","id":"7FFF52377000","name":"GraphVisualizer","path":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolFilePath":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":161,"event":"module","body":{"module":{"addressRange":"7FFF4C1F6000","id":"7FFF4C1F6000","name":"FaceCore","path":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolFilePath":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":162,"event":"module","body":{"module":{"addressRange":"7FFF3EBC4000","id":"7FFF3EBC4000","name":"OpenCL","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolFilePath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":163,"event":"module","body":{"module":{"addressRange":"7FFF5F032000","id":"7FFF5F032000","name":"libFosl_dynamic.dylib","path":"/usr/lib/libFosl_dynamic.dylib","symbolFilePath":"/usr/lib/libFosl_dynamic.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":164,"event":"module","body":{"module":{"addressRange":"7FFF55B14000","id":"7FFF55B14000","name":"OTSVG","path":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolFilePath":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":165,"event":"module","body":{"module":{"addressRange":"7FFF349AC000","id":"7FFF349AC000","name":"libFontParser.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":166,"event":"module","body":{"module":{"addressRange":"7FFF34AC4000","id":"7FFF34AC4000","name":"libFontRegistry.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":167,"event":"module","body":{"module":{"addressRange":"7FFF3912B000","id":"7FFF3912B000","name":"libJPEG.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":168,"event":"module","body":{"module":{"addressRange":"7FFF39450000","id":"7FFF39450000","name":"libTIFF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":169,"event":"module","body":{"module":{"addressRange":"7FFF39426000","id":"7FFF39426000","name":"libPng.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":170,"event":"module","body":{"module":{"addressRange":"7FFF39049000","id":"7FFF39049000","name":"libGIF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":171,"event":"module","body":{"module":{"addressRange":"7FFF3904E000","id":"7FFF3904E000","name":"libJP2.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":172,"event":"module","body":{"module":{"addressRange":"7FFF3944D000","id":"7FFF3944D000","name":"libRadiance.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":173,"event":"module","body":{"module":{"addressRange":"7FFF46753000","id":"7FFF46753000","name":"AppleJPEG","path":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolFilePath":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":174,"event":"module","body":{"module":{"addressRange":"7FFF3F5A1000","id":"7FFF3F5A1000","name":"libGFXShared.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":175,"event":"module","body":{"module":{"addressRange":"7FFF3F764000","id":"7FFF3F764000","name":"libGLU.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":176,"event":"module","body":{"module":{"addressRange":"7FFF3F5AA000","id":"7FFF3F5AA000","name":"libGL.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":177,"event":"module","body":{"module":{"addressRange":"7FFF3F5B6000","id":"7FFF3F5B6000","name":"libGLImage.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":178,"event":"module","body":{"module":{"addressRange":"7FFF3F593000","id":"7FFF3F593000","name":"libCVMSPluginSupport.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":179,"event":"module","body":{"module":{"addressRange":"7FFF3F59C000","id":"7FFF3F59C000","name":"libCoreVMClient.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":180,"event":"module","body":{"module":{"addressRange":"7FFF5FE4C000","id":"7FFF5FE4C000","name":"libcups.2.dylib","path":"/usr/lib/libcups.2.dylib","symbolFilePath":"/usr/lib/libcups.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":181,"event":"module","body":{"module":{"addressRange":"7FFF3A610000","id":"7FFF3A610000","name":"Kerberos","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolFilePath":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":182,"event":"module","body":{"module":{"addressRange":"7FFF38B2B000","id":"7FFF38B2B000","name":"GSS","path":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolFilePath":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":183,"event":"module","body":{"module":{"addressRange":"7FFF61560000","id":"7FFF61560000","name":"libresolv.9.dylib","path":"/usr/lib/libresolv.9.dylib","symbolFilePath":"/usr/lib/libresolv.9.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":184,"event":"module","body":{"module":{"addressRange":"7FFF6003F000","id":"7FFF6003F000","name":"libiconv.2.dylib","path":"/usr/lib/libiconv.2.dylib","symbolFilePath":"/usr/lib/libiconv.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":185,"event":"module","body":{"module":{"addressRange":"7FFF524EC000","id":"7FFF524EC000","name":"Heimdal","path":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolFilePath":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":186,"event":"module","body":{"module":{"addressRange":"7FFF6000F000","id":"7FFF6000F000","name":"libheimdal-asn1.dylib","path":"/usr/lib/libheimdal-asn1.dylib","symbolFilePath":"/usr/lib/libheimdal-asn1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":187,"event":"module","body":{"module":{"addressRange":"7FFF3EC38000","id":"7FFF3EC38000","name":"OpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":188,"event":"module","body":{"module":{"addressRange":"7FFF48F7B000","id":"7FFF48F7B000","name":"CommonAuth","path":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolFilePath":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":189,"event":"module","body":{"module":{"addressRange":"7FFF3EC1C000","id":"7FFF3EC1C000","name":"CFOpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":190,"event":"module","body":{"module":{"addressRange":"7FFF41CE8000","id":"7FFF41CE8000","name":"SecurityFoundation","path":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolFilePath":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":191,"event":"module","body":{"module":{"addressRange":"7FFF453EC000","id":"7FFF453EC000","name":"APFS","path":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolFilePath":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":192,"event":"module","body":{"module":{"addressRange":"7FFF619C1000","id":"7FFF619C1000","name":"libutil.dylib","path":"/usr/lib/libutil.dylib","symbolFilePath":"/usr/lib/libutil.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":193,"event":"module","body":{"module":{"addressRange":"7FFF5F6E9000","id":"7FFF5F6E9000","name":"libcharset.1.dylib","path":"/usr/lib/libcharset.1.dylib","symbolFilePath":"/usr/lib/libcharset.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":194,"event":"module","body":{"module":{"addressRange":"7FFF35EFE000","id":"7FFF35EFE000","name":"CoreAudio","path":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolFilePath":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":195,"event":"module","body":{"module":{"addressRange":"7FFF34D8A000","id":"7FFF34D8A000","name":"AudioToolbox","path":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolFilePath":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":196,"event":"module","body":{"module":{"addressRange":"7FFF469F0000","id":"7FFF469F0000","name":"AppleSauce","path":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolFilePath":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":197,"event":"module","body":{"module":{"addressRange":"7FFF46B71000","id":"7FFF46B71000","name":"AssertionServices","path":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolFilePath":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":198,"event":"module","body":{"module":{"addressRange":"7FFF472A1000","id":"7FFF472A1000","name":"BaseBoard","path":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolFilePath":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":199,"event":"module","body":{"module":{"addressRange":"7FFF60410000","id":"7FFF60410000","name":"libmecab.1.0.0.dylib","path":"/usr/lib/libmecab.1.0.0.dylib","symbolFilePath":"/usr/lib/libmecab.1.0.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":200,"event":"module","body":{"module":{"addressRange":"7FFF60009000","id":"7FFF60009000","name":"libgermantok.dylib","path":"/usr/lib/libgermantok.dylib","symbolFilePath":"/usr/lib/libgermantok.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":201,"event":"module","body":{"module":{"addressRange":"7FFF5F4B7000","id":"7FFF5F4B7000","name":"libThaiTokenizer.dylib","path":"/usr/lib/libThaiTokenizer.dylib","symbolFilePath":"/usr/lib/libThaiTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":202,"event":"module","body":{"module":{"addressRange":"7FFF5EF62000","id":"7FFF5EF62000","name":"libChineseTokenizer.dylib","path":"/usr/lib/libChineseTokenizer.dylib","symbolFilePath":"/usr/lib/libChineseTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":203,"event":"module","body":{"module":{"addressRange":"7FFF53F23000","id":"7FFF53F23000","name":"LanguageModeling","path":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolFilePath":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":204,"event":"module","body":{"module":{"addressRange":"7FFF49C5D000","id":"7FFF49C5D000","name":"CoreEmoji","path":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolFilePath":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":205,"event":"module","body":{"module":{"addressRange":"7FFF53FFF000","id":"7FFF53FFF000","name":"Lexicon","path":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolFilePath":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":206,"event":"module","body":{"module":{"addressRange":"7FFF54042000","id":"7FFF54042000","name":"LinguisticData","path":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolFilePath":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":207,"event":"module","body":{"module":{"addressRange":"7FFF5F6EA000","id":"7FFF5F6EA000","name":"libcmph.dylib","path":"/usr/lib/libcmph.dylib","symbolFilePath":"/usr/lib/libcmph.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":208,"event":"module","body":{"module":{"addressRange":"7FFF36013000","id":"7FFF36013000","name":"CoreData","path":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","symbolFilePath":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":209,"event":"module","body":{"module":{"addressRange":"7FFF41DA6000","id":"7FFF41DA6000","name":"ServiceManagement","path":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolFilePath":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":210,"event":"module","body":{"module":{"addressRange":"7FFF47202000","id":"7FFF47202000","name":"BackgroundTaskManagement","path":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolFilePath":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":211,"event":"module","body":{"module":{"addressRange":"7FFF61ABB000","id":"7FFF61ABB000","name":"libxslt.1.dylib","path":"/usr/lib/libxslt.1.dylib","symbolFilePath":"/usr/lib/libxslt.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":212,"event":"module","body":{"module":{"addressRange":"100CCA000","id":"100CCA000","name":"libiconv-nocharset.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv-nocharset.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":213,"event":"module","body":{"module":{"addressRange":"100DB4000","id":"100DB4000","name":"libcharset.1.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libcharset.1.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":214,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Callback for breakpoint location 3.7: where = flake-info`read_sources_file + 174 at source.rs:70:36, address = 0x000000010032d1de, resolved, hit count = 1 

[2021-06-07T17:31:33Z DEBUG codelldb::debug_session] Debug event: 0x7fd56aea0440 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = stopped}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":215,"event":"stopped","body":{"allThreadsStopped":true,"reason":"breakpoint","threadId":8571589}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":20}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":20,"success":true,"command":"threads","body":{"threads":[{"id":8571589,"name":"1: tid=8571589"}]}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8571589,"startFrame":0,"levels":1},"type":"request","seq":21}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":21,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":36,"id":1001,"line":70,"name":"read_sources_file","source":{"name":"source.rs","path":"/Volumes/projects/nixos-search/flake-info/src/data/source.rs"}}],"totalFrames":14}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8571589,"startFrame":1,"levels":19},"type":"request","seq":22}
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`flake_info::run::hdae1b68dffa85378 + 446
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`flake_info::main::h79beaa48e5be6aad + 18
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`core::ops::function::FnOnce::call_once::h6926f4c8060e5113 + 14
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53 + 17
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df + 20
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`lang_start_internal + 644 [inlined] std::panicking::try + 7 at panic.rs:431
flake-info`lang_start_internal + 637 [inlined] std::panic::catch_unwind at rt.rs:51
flake-info`lang_start_internal + 637 at rt.rs:51
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`std::rt::lang_start::h9b91b5a165ea6965 + 46
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] flake-info`main + 22
[2021-06-07T17:31:33Z DEBUG codelldb::disassembly] libdyld.dylib`start + 1
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":22,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1006,"line":90,"name":"flake_info::run::hdae1b68dffa85378","presentationHint":"subtle","source":{"name":"@flake_info::run::hdae1b68dffa85378","sourceReference":1001}},{"column":0,"id":1007,"line":8,"name":"flake_info::main::h79beaa48e5be6aad","presentationHint":"subtle","source":{"name":"@flake_info::main::h79beaa48e5be6aad","sourceReference":1002}},{"column":0,"id":1008,"line":8,"name":"core::ops::function::FnOnce::call_once::h6926f4c8060e5113","presentationHint":"subtle","source":{"name":"@core::ops::function::FnOnce::call_once::h6926f4c8060e5113","sourceReference":1003}},{"column":0,"id":1009,"line":8,"name":"std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","presentationHint":"subtle","source":{"name":"@std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","sourceReference":1004}},{"column":0,"id":1010,"line":9,"name":"std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","sourceReference":1005}},{"column":0,"id":1011,"line":159,"name":"core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnOnce$LT$A$GT$$u20$for$u20$$RF$F$GT$::call_once","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1012,"line":157,"name":"std::panicking::try::do_call","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1013,"line":157,"name":"std::panicking::try","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1014,"line":157,"name":"std::panic::catch_unwind","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1015,"line":157,"name":"lang_start_internal","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1016,"line":15,"name":"std::rt::lang_start::h9b91b5a165ea6965","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::h9b91b5a165ea6965","sourceReference":1007}},{"column":0,"id":1017,"line":9,"name":"main","presentationHint":"subtle","source":{"name":"@main","sourceReference":1008}},{"column":0,"id":1018,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1009}}],"totalFrames":14}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":23}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":23,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1002},{"expensive":false,"name":"Static","variablesReference":1003},{"expensive":false,"name":"Global","variablesReference":1004},{"expensive":false,"name":"Registers","variablesReference":1005}]}}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1002},"type":"request","seq":24}
[2021-06-07T17:31:33Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":24,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"path","name":"path","type":"&std::path::Path","value":"\"./examples/nixpkgs.json\"","variablesReference":1019},{"evaluateName":"file","name":"file","type":"std::fs::File","value":"{...}","variablesReference":1020}]}}
[2021-06-07T17:35:02Z DEBUG codelldb::dap_codec] --> {"command":"evaluate","arguments":{"expression":"Source::Nixpkgs","frameId":1001,"context":"hover"},"type":"request","seq":25}
[2021-06-07T17:35:02Z ERROR codelldb::debug_session] 'Source::Nixpkgs'
[2021-06-07T17:35:02Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":25,"success":false,"message":"'Source::Nixpkgs'","show_user":true}
[2021-06-07T17:35:06Z DEBUG codelldb::dap_codec] --> {"command":"disconnect","arguments":{"restart":true,"terminateDebuggee":true},"type":"request","seq":26}
[2021-06-07T17:35:06Z DEBUG codelldb::debug_session] Debug event: 0x7fd56ab6dac0 Event: broadcaster = 0x7fd56b13d458 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd56b13d418 (pid = 9090), state = exited}
[2021-06-07T17:35:06Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":26,"success":true,"command":"disconnect"}
[2021-06-07T17:35:06Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":216,"event":"output","body":{"output":"Process exited with code 9.\n"}}
[2021-06-07T17:35:06Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":217,"event":"exited","body":{"exitCode":9}}
[2021-06-07T17:35:06Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":218,"event":"terminated","body":{}}
liblldb: /Users/ysander/.vscode/extensions/vadimcn.vscode-lldb-1.6.1/lldb/lib/liblldb.dylib
environment: {}
params: { evaluateForHovers: true, commandCompletions: true }
Listening on port 57691
[2021-06-07T17:35:07Z DEBUG codelldb] New debug session
[2021-06-07T17:35:07Z DEBUG codelldb::dap_session] Client has disconnected
[2021-06-07T17:35:07Z DEBUG codelldb::debug_session] End of the requests stream
[2021-06-07T17:35:07Z DEBUG codelldb::debug_session] DebugSession::drop()
[2021-06-07T17:35:07Z DEBUG codelldb] Session has ended
[2021-06-07T17:35:07Z DEBUG codelldb] Exiting
Debug adapter exit code=0, signal=null.
INFO(Python) 19:35:07 formatters: Initializing
INFO(Python) 19:35:07 formatters.rust: Initializing
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"initialize","arguments":{"clientID":"vscode","clientName":"Visual Studio Code","adapterID":"lldb","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true,"locale":"en-us","supportsProgressReporting":true,"supportsInvalidatedEvent":true},"type":"request","seq":1}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":1,"success":true,"command":"initialize","body":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"launch","arguments":{"type":"lldb","request":"launch","name":"Debug executable 'flake-info'","stopOnEntry":true,"args":["-t","./examples/nixpkgs.json"],"cwd":"/Volumes/projects/nixos-search/flake-info","__configurationTarget":5,"relativePathBase":"/Volumes/projects/nixos-search/flake-info","program":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","sourceLanguages":["rust"],"_adapterSettings":{"displayFormat":"auto","showDisassembly":"auto","dereferencePointers":true,"suppressMissingSourceFiles":true,"evaluationTimeout":5,"consoleMode":"commands","sourceLanguages":null,"terminalPromptClear":null,"evaluateForHovers":true,"commandCompletions":true},"__sessionId":"021b6be8-74bd-48b9-9ba9-e872b8f29c34"},"type":"request","seq":2}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":1,"event":"capabilities","body":{"capabilities":{"exceptionBreakpointFilters":[{"default":true,"filter":"cpp_throw","label":"C++: on throw"},{"default":false,"filter":"cpp_catch","label":"C++: on catch"}],"supportTerminateDebuggee":true,"supportsCancelRequest":true,"supportsCompletionsRequest":true,"supportsConditionalBreakpoints":true,"supportsConfigurationDoneRequest":true,"supportsDataBreakpoints":true,"supportsDelayedStackTraceLoading":true,"supportsEvaluateForHovers":true,"supportsFunctionBreakpoints":true,"supportsGotoTargetsRequest":true,"supportsHitConditionalBreakpoints":true,"supportsLogPoints":true,"supportsReadMemoryRequest":true,"supportsRestartFrame":true,"supportsSetVariable":true}}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":2,"event":"initialized"}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"request","seq":3,"command":"runInTerminal","arguments":{"args":["/Users/ysander/.vscode/extensions/vadimcn.vscode-lldb-1.6.1/adapter/codelldb","terminal-agent","--port=57693"],"cwd":"","kind":"integrated","title":"Debug executable 'flake-info'"}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"lib.rs","path":"/Volumes/projects/nixos-search/flake-info/src/lib.rs"},"lines":[14],"breakpoints":[{"line":14}],"sourceModified":false},"type":"request","seq":3}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"main.rs","path":"/Volumes/projects/nixos-search/flake-info/src/main.rs"},"lines":[112],"breakpoints":[{"line":112}],"sourceModified":false},"type":"request","seq":4}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setBreakpoints","arguments":{"source":{"name":"source.rs","path":"/Volumes/projects/nixos-search/flake-info/src/data/source.rs"},"lines":[70],"breakpoints":[{"line":70}],"sourceModified":false},"type":"request","seq":5}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"type":"response","seq":6,"command":"runInTerminal","request_seq":3,"success":true,"body":{"shellProcessId":8656}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":3,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":1,"line":14,"message":"Locations: 1","verified":true}]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":4,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":2,"message":"Locations: 0","verified":false}]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":5,"success":true,"command":"setBreakpoints","body":{"breakpoints":[{"id":3,"line":70,"message":"Locations: 3","verified":true}]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setFunctionBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":7}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":7,"success":true,"command":"setFunctionBreakpoints","body":{"breakpoints":[]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setDataBreakpoints","arguments":{"breakpoints":[]},"type":"request","seq":8}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":8,"success":true,"command":"setDataBreakpoints","body":{"breakpoints":[]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"setExceptionBreakpoints","arguments":{"filters":["cpp_throw"]},"type":"request","seq":9}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":9,"success":true,"command":"setExceptionBreakpoints"}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"configurationDone","type":"request","seq":10}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":4,"event":"output","body":{"output":"Launching: /Volumes/projects/nixos-search/flake-info/target/debug/flake-info -t ./examples/nixpkgs.json\n"}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":5,"event":"output","body":{"output":"Launched process 9161\n"}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":6,"event":"stopped","body":{"allThreadsStopped":true,"reason":"unknown"}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":2,"success":true,"command":"launch"}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":10,"success":true,"command":"configurationDone"}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":11}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":11,"success":true,"command":"threads","body":{"threads":[]}}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":12}
[2021-06-07T17:35:07Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":12,"success":true,"command":"threads","body":{"threads":[]}}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c0dc8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c0ec8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c1038 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c1688 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4536c7f18 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c1c28 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd453234f78 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4559006c8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c3b78 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {dyld, flake-info}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":7,"event":"module","body":{"module":{"addressRange":"100BD2000","id":"100BD2000","name":"dyld","path":"/usr/lib/dyld","symbolFilePath":"/usr/lib/dyld","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":8,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolFilePath":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:08Z DEBUG codelldb::debug_session] Debug event: 0x7fd450e67320 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = stopped}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":9,"event":"output","body":{"category":"stderr","output":"Stop reason: signal SIGSTOP\n"}}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":10,"event":"stopped","body":{"allThreadsStopped":true,"reason":"signal","text":"signal SIGSTOP","threadId":8573703}}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":13}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":13,"success":true,"command":"threads","body":{"threads":[{"id":8573703,"name":"1: tid=8573703"}]}}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":0,"levels":1},"type":"request","seq":14}
[2021-06-07T17:35:08Z DEBUG codelldb::disassembly] dyld`_dyld_start
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":14,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1001,"line":3,"name":"_dyld_start","presentationHint":"subtle","source":{"name":"@_dyld_start","sourceReference":1000}}],"totalFrames":1}}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] --> {"command":"source","arguments":{"sourceReference":1000,"source":{"name":"@_dyld_start","sourceReference":1000}},"type":"request","seq":15}
[2021-06-07T17:35:08Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":15,"success":true,"command":"source","body":{"content":"; id = {0x00000000}, range = [0x0000000000001000-0x0000000000001074), mangled=\"_dyld_start\"\n; Source location: unknown\n100BD3000: 5F                         popq   %rdi\n100BD3001: 6A 00                      pushq  $0x0\n100BD3003: 48 89 E5                   movq   %rsp, %rbp\n100BD3006: 48 83 E4 F0                andq   $-0x10, %rsp\n100BD300A: 48 83 EC 10                subq   $0x10, %rsp\n100BD300E: 8B 75 08                   movl   0x8(%rbp), %esi\n100BD3011: 48 8D 55 10                leaq   0x10(%rbp), %rdx\n100BD3015: 4C 8B 05 44 DE 06 00       movq   0x6de44(%rip), %r8  ; _dyld_start_static\n100BD301C: 48 8D 0D DD FF FF FF       leaq   -0x23(%rip), %rcx  ; <+0>\n100BD3023: 4C 29 C1                   subq   %r8, %rcx\n100BD3026: 4C 8D 05 D3 EF FF FF       leaq   -0x102d(%rip), %r8\n100BD302D: 4C 8D 4D F8                leaq   -0x8(%rbp), %r9\n100BD3031: E8 3E 00 00 00             callq  0x100bd3074  ; dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*)\n100BD3036: 48 8B 7D F8                movq   -0x8(%rbp), %rdi\n100BD303A: 48 83 FF 00                cmpq   $0x0, %rdi\n100BD303E: 75 10                      jne    0x100bd3050  ; <+80>\n100BD3040: 48 89 EC                   movq   %rbp, %rsp\n100BD3043: 48 83 C4 08                addq   $0x8, %rsp\n100BD3047: 48 C7 C5 00 00 00 00       movq   $0x0, %rbp\n100BD304E: FF E0                      jmpq   *%rax\n100BD3050: 48 83 C4 10                addq   $0x10, %rsp\n100BD3054: 57                         pushq  %rdi\n100BD3055: 48 8B 7D 08                movq   0x8(%rbp), %rdi\n100BD3059: 48 8D 75 10                leaq   0x10(%rbp), %rsi\n100BD305D: 48 8D 54 FE 08             leaq   0x8(%rsi,%rdi,8), %rdx\n100BD3062: 48 89 D1                   movq   %rdx, %rcx\n100BD3065: 4C 8B 01                   movq   (%rcx), %r8\n100BD3068: 48 83 C1 08                addq   $0x8, %rcx\n100BD306C: 4D 85 C0                   testq  %r8, %r8\n100BD306F: 75 F4                      jne    0x100bd3065  ; <+101>\n100BD3071: FF E0                      jmpq   *%rax\n100BD3073: 90                         nop    \n","mimeType":"text/x-lldb.disassembly"}}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":1,"levels":19},"type":"request","seq":16}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":16,"success":true,"command":"stackTrace","body":{"stackFrames":[],"totalFrames":1}}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":17}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":17,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1002},{"expensive":false,"name":"Static","variablesReference":1003},{"expensive":false,"name":"Global","variablesReference":1004},{"expensive":false,"name":"Registers","variablesReference":1005}]}}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1002},"type":"request","seq":18}
[2021-06-07T17:35:09Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":18,"success":true,"command":"variables","body":{"variables":[]}}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] --> {"command":"continue","arguments":{"threadId":8573703},"type":"request","seq":19}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535cdaa0 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = running}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":19,"success":true,"command":"continue","body":{"allThreadsContinued":true}}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":11,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd455ebdf28 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":12,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":14,"message":"Locations: 2","verified":true},"reason":"changed"}}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd455ed5478 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":13,"event":"breakpoint","body":{"breakpoint":{"id":3,"line":70,"message":"Locations: 6","verified":true},"reason":"changed"}}
warning: (x86_64) /Volumes/projects/nixos-search/flake-info/target/debug/flake-info(0x0000000100000000) address 0x0000000100000000 maps to more than one section: flake-info.__TEXT and flake-info.__TEXT
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd455f04ca8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
warning: (x86_64) /Volumes/projects/nixos-search/flake-info/target/debug/flake-info(0x0000000100000000) address 0x000000010045f000 maps to more than one section: flake-info.__DATA and flake-info.__DATA
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":14,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd4534cb448 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd455aa4a28 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd455ed5438 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd4536aef48 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:10Z DEBUG codelldb::debug_session] Debug event: 0x7fd4535c0d08 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
[2021-06-07T17:35:10Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":15,"event":"module","body":{"module":{"addressRange":"FFFFFFFFFFFFFFFF","id":"FFFFFFFFFFFFFFFF","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456aefa78 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456aefee8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":16,"event":"breakpoint","body":{"breakpoint":{"id":1,"line":14,"message":"Locations: 3","verified":true},"reason":"changed"}}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456d4a268 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd45335a208 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd450f585e8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456e0f1a8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:11Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":17,"event":"breakpoint","body":{"breakpoint":{"id":3,"line":70,"message":"Locations: 9","verified":true},"reason":"changed"}}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456e0f1a8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000)}
[2021-06-07T17:35:11Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":18,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd455803658 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {libiconv.dylib(0x0000000100c9d000)}
[2021-06-07T17:35:11Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":19,"event":"module","body":{"module":{"addressRange":"100C9D000","id":"100C9D000","name":"libiconv.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:11Z DEBUG codelldb::debug_session] Debug event: 0x7fd456cf4b18 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {libresolv.9.dylib(0x0000000100c9f000)}
[2021-06-07T17:35:11Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":20,"event":"module","body":{"module":{"addressRange":"100C9F000","id":"100C9F000","name":"libresolv.9.dylib","path":"/nix/store/2c9kjj14qhns6cd28cmm51jvy74yk4c4-Libsystem-osx-10.12.6/lib/libresolv.9.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd456d7a7b8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {libiconv-nocharset.dylib(0x0000000100cca000)}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":21,"event":"module","body":{"module":{"addressRange":"100CCA000","id":"100CCA000","name":"libiconv-nocharset.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv-nocharset.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd456d7a7a8 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {libcharset.1.dylib(0x0000000100db4000)}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":22,"event":"module","body":{"module":{"addressRange":"100DB4000","id":"100DB4000","name":"libcharset.1.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libcharset.1.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd456d7c178 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd45790a888 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd45790a908 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000001 (breakpoint-changed), data = {}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":23,"event":"breakpoint","body":{"breakpoint":{"id":4,"message":"Locations: 2","verified":true},"reason":"changed"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd45790a908 Event: broadcaster = 0x7fd454821620 (lldb.target), type = 0x00000002 (modules-loaded), data = {flake-info(0x0000000100000000), Security, CoreFoundation, libiconv.dylib(0x0000000100c9d000), libSystem.B.dylib, libresolv.9.dylib(0x0000000100c9f000), Foundation, AppleFSCompression, libDiagnosticMessagesClient.dylib, libOpenScriptingUtil.dylib, libauto.dylib, libbsm.0.dylib, libcoretls.dylib, libcoretls_cfhelpers.dylib, libpam.2.dylib, libsqlite3.dylib, libxar.1.dylib, libz.1.dylib, IOKit, libobjc.A.dylib, libc++.1.dylib, DiskArbitration, libarchive.2.dylib, libicucore.A.dylib, libxml2.2.dylib, CFNetwork, SystemConfiguration, CoreServices, liblangid.dylib, libCRFSuite.dylib, libc++abi.dylib, libcache.dylib, libcommonCrypto.dylib, libcompiler_rt.dylib, libcopyfile.dylib, libcorecrypto.dylib, libdispatch.dylib, libdyld.dylib, libkeymgr.dylib, liblaunch.dylib, libmacho.dylib, libquarantine.dylib, libremovefile.dylib, libsystem_asl.dylib, libsystem_blocks.dylib, libsystem_c.dylib, libsystem_configuration.dylib, libsystem_coreservices.dylib, libsystem_darwin.dylib, libsystem_dnssd.dylib, libsystem_info.dylib, libsystem_m.dylib, libsystem_malloc.dylib, libsystem_networkextension.dylib, libsystem_notify.dylib, libsystem_sandbox.dylib, libsystem_secinit.dylib, libsystem_kernel.dylib, libsystem_platform.dylib, libsystem_pthread.dylib, libsystem_symptoms.dylib, libsystem_trace.dylib, libunwind.dylib, libxpc.dylib, libenergytrace.dylib, libkxld.dylib, libbz2.1.0.dylib, liblzma.5.dylib, libnetwork.dylib, libapple_nghttp2.dylib, libpcap.A.dylib, FSEvents, CarbonCore, Metadata, OSServices, SearchKit, AE, LaunchServices, DictionaryServices, SharedFileList, NetFS, NetAuth, loginsupport, TCC, CoreNLP, MetadataUtilities, libmecabra.dylib, ApplicationServices, CoreGraphics, CoreText, ImageIO, ColorSync, ATS, ColorSyncLegacy, HIServices, LangAnalysis, PrintCore, QD, SpeechSynthesis, SkyLight, IOSurface, Accelerate, libcompression.dylib, CoreDisplay, Metal, MetalPerformanceShaders, MultitouchSupport, QuartzCore, vImage, vecLib, libvMisc.dylib, libvDSP.dylib, libBLAS.dylib, libLAPACK.dylib, libLinearAlgebra.dylib, libSparseBLAS.dylib, libQuadrature.dylib, libBNNS.dylib, libSparse.dylib, GPUWrangler, IOAccelerator, IOPresentment, DSExternalDisplay, libCoreFSCache.dylib, MPSCore, MPSImage, MPSNeuralNetwork, MPSMatrix, MPSRayIntersector, MetalTools, AggregateDictionary, libMobileGestalt.dylib, CoreImage, CoreVideo, OpenGL, GraphVisualizer, FaceCore, OpenCL, libFosl_dynamic.dylib, OTSVG, libFontParser.dylib, libFontRegistry.dylib, libJPEG.dylib, libTIFF.dylib, libPng.dylib, libGIF.dylib, libJP2.dylib, libRadiance.dylib, AppleJPEG, libGFXShared.dylib, libGLU.dylib, libGL.dylib, libGLImage.dylib, libCVMSPluginSupport.dylib, libCoreVMClient.dylib, libcups.2.dylib, Kerberos, GSS, libresolv.9.dylib, libiconv.2.dylib, Heimdal, libheimdal-asn1.dylib, OpenDirectory, CommonAuth, CFOpenDirectory, SecurityFoundation, APFS, libutil.dylib, libcharset.1.dylib, CoreAudio, AudioToolbox, AppleSauce, AssertionServices, BaseBoard, libmecab.1.0.0.dylib, libgermantok.dylib, libThaiTokenizer.dylib, libChineseTokenizer.dylib, LanguageModeling, CoreEmoji, Lexicon, LinguisticData, libcmph.dylib, CoreData, ServiceManagement, BackgroundTaskManagement, libxslt.1.dylib, libiconv-nocharset.dylib(0x0000000100cca000), libcharset.1.dylib(0x0000000100db4000)}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":24,"event":"module","body":{"module":{"addressRange":"100000000","id":"100000000","name":"flake-info","path":"/Volumes/projects/nixos-search/flake-info/target/debug/flake-info","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":25,"event":"module","body":{"module":{"addressRange":"7FFF419E7000","id":"7FFF419E7000","name":"Security","path":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolFilePath":"/System/Library/Frameworks/Security.framework/Versions/A/Security","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":26,"event":"module","body":{"module":{"addressRange":"7FFF3648A000","id":"7FFF3648A000","name":"CoreFoundation","path":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolFilePath":"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":27,"event":"module","body":{"module":{"addressRange":"100C9D000","id":"100C9D000","name":"libiconv.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":28,"event":"module","body":{"module":{"addressRange":"7FFF5F43A000","id":"7FFF5F43A000","name":"libSystem.B.dylib","path":"/usr/lib/libSystem.B.dylib","symbolFilePath":"/usr/lib/libSystem.B.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":29,"event":"module","body":{"module":{"addressRange":"100C9F000","id":"100C9F000","name":"libresolv.9.dylib","path":"/nix/store/2c9kjj14qhns6cd28cmm51jvy74yk4c4-Libsystem-osx-10.12.6/lib/libresolv.9.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":30,"event":"module","body":{"module":{"addressRange":"7FFF3870F000","id":"7FFF3870F000","name":"Foundation","path":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolFilePath":"/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":31,"event":"module","body":{"module":{"addressRange":"7FFF465FC000","id":"7FFF465FC000","name":"AppleFSCompression","path":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolFilePath":"/System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":32,"event":"module","body":{"module":{"addressRange":"7FFF5EFFA000","id":"7FFF5EFFA000","name":"libDiagnosticMessagesClient.dylib","path":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolFilePath":"/usr/lib/libDiagnosticMessagesClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":33,"event":"module","body":{"module":{"addressRange":"7FFF5F2FA000","id":"7FFF5F2FA000","name":"libOpenScriptingUtil.dylib","path":"/usr/lib/libOpenScriptingUtil.dylib","symbolFilePath":"/usr/lib/libOpenScriptingUtil.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":34,"event":"module","body":{"module":{"addressRange":"7FFF5F58E000","id":"7FFF5F58E000","name":"libauto.dylib","path":"/usr/lib/libauto.dylib","symbolFilePath":"/usr/lib/libauto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":35,"event":"module","body":{"module":{"addressRange":"7FFF5F660000","id":"7FFF5F660000","name":"libbsm.0.dylib","path":"/usr/lib/libbsm.0.dylib","symbolFilePath":"/usr/lib/libbsm.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":36,"event":"module","body":{"module":{"addressRange":"7FFF5F988000","id":"7FFF5F988000","name":"libcoretls.dylib","path":"/usr/lib/libcoretls.dylib","symbolFilePath":"/usr/lib/libcoretls.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":37,"event":"module","body":{"module":{"addressRange":"7FFF5F99F000","id":"7FFF5F99F000","name":"libcoretls_cfhelpers.dylib","path":"/usr/lib/libcoretls_cfhelpers.dylib","symbolFilePath":"/usr/lib/libcoretls_cfhelpers.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":38,"event":"module","body":{"module":{"addressRange":"7FFF6140B000","id":"7FFF6140B000","name":"libpam.2.dylib","path":"/usr/lib/libpam.2.dylib","symbolFilePath":"/usr/lib/libpam.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":39,"event":"module","body":{"module":{"addressRange":"7FFF615CB000","id":"7FFF615CB000","name":"libsqlite3.dylib","path":"/usr/lib/libsqlite3.dylib","symbolFilePath":"/usr/lib/libsqlite3.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":40,"event":"module","body":{"module":{"addressRange":"7FFF619C5000","id":"7FFF619C5000","name":"libxar.1.dylib","path":"/usr/lib/libxar.1.dylib","symbolFilePath":"/usr/lib/libxar.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":41,"event":"module","body":{"module":{"addressRange":"7FFF61AE4000","id":"7FFF61AE4000","name":"libz.1.dylib","path":"/usr/lib/libz.1.dylib","symbolFilePath":"/usr/lib/libz.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":42,"event":"module","body":{"module":{"addressRange":"7FFF38DC7000","id":"7FFF38DC7000","name":"IOKit","path":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolFilePath":"/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":43,"event":"module","body":{"module":{"addressRange":"7FFF60C74000","id":"7FFF60C74000","name":"libobjc.A.dylib","path":"/usr/lib/libobjc.A.dylib","symbolFilePath":"/usr/lib/libobjc.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":44,"event":"module","body":{"module":{"addressRange":"7FFF5F67F000","id":"7FFF5F67F000","name":"libc++.1.dylib","path":"/usr/lib/libc++.1.dylib","symbolFilePath":"/usr/lib/libc++.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":45,"event":"module","body":{"module":{"addressRange":"7FFF38543000","id":"7FFF38543000","name":"DiskArbitration","path":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolFilePath":"/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":46,"event":"module","body":{"module":{"addressRange":"7FFF5F4E1000","id":"7FFF5F4E1000","name":"libarchive.2.dylib","path":"/usr/lib/libarchive.2.dylib","symbolFilePath":"/usr/lib/libarchive.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":47,"event":"module","body":{"module":{"addressRange":"7FFF60130000","id":"7FFF60130000","name":"libicucore.A.dylib","path":"/usr/lib/libicucore.A.dylib","symbolFilePath":"/usr/lib/libicucore.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":48,"event":"module","body":{"module":{"addressRange":"7FFF619D7000","id":"7FFF619D7000","name":"libxml2.2.dylib","path":"/usr/lib/libxml2.2.dylib","symbolFilePath":"/usr/lib/libxml2.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":49,"event":"module","body":{"module":{"addressRange":"7FFF3535C000","id":"7FFF3535C000","name":"CFNetwork","path":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolFilePath":"/System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":50,"event":"module","body":{"module":{"addressRange":"7FFF42143000","id":"7FFF42143000","name":"SystemConfiguration","path":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolFilePath":"/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":51,"event":"module","body":{"module":{"addressRange":"7FFF376E1000","id":"7FFF376E1000","name":"CoreServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":52,"event":"module","body":{"module":{"addressRange":"7FFF603DE000","id":"7FFF603DE000","name":"liblangid.dylib","path":"/usr/lib/liblangid.dylib","symbolFilePath":"/usr/lib/liblangid.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":53,"event":"module","body":{"module":{"addressRange":"7FFF5EF2B000","id":"7FFF5EF2B000","name":"libCRFSuite.dylib","path":"/usr/lib/libCRFSuite.dylib","symbolFilePath":"/usr/lib/libCRFSuite.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":54,"event":"module","body":{"module":{"addressRange":"7FFF5F6D3000","id":"7FFF5F6D3000","name":"libc++abi.dylib","path":"/usr/lib/libc++abi.dylib","symbolFilePath":"/usr/lib/libc++abi.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":55,"event":"module","body":{"module":{"addressRange":"7FFF622DA000","id":"7FFF622DA000","name":"libcache.dylib","path":"/usr/lib/system/libcache.dylib","symbolFilePath":"/usr/lib/system/libcache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":56,"event":"module","body":{"module":{"addressRange":"7FFF622DF000","id":"7FFF622DF000","name":"libcommonCrypto.dylib","path":"/usr/lib/system/libcommonCrypto.dylib","symbolFilePath":"/usr/lib/system/libcommonCrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":57,"event":"module","body":{"module":{"addressRange":"7FFF622EA000","id":"7FFF622EA000","name":"libcompiler_rt.dylib","path":"/usr/lib/system/libcompiler_rt.dylib","symbolFilePath":"/usr/lib/system/libcompiler_rt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":58,"event":"module","body":{"module":{"addressRange":"7FFF622F2000","id":"7FFF622F2000","name":"libcopyfile.dylib","path":"/usr/lib/system/libcopyfile.dylib","symbolFilePath":"/usr/lib/system/libcopyfile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":59,"event":"module","body":{"module":{"addressRange":"7FFF622FC000","id":"7FFF622FC000","name":"libcorecrypto.dylib","path":"/usr/lib/system/libcorecrypto.dylib","symbolFilePath":"/usr/lib/system/libcorecrypto.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":60,"event":"module","body":{"module":{"addressRange":"7FFF62408000","id":"7FFF62408000","name":"libdispatch.dylib","path":"/usr/lib/system/libdispatch.dylib","symbolFilePath":"/usr/lib/system/libdispatch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":61,"event":"module","body":{"module":{"addressRange":"7FFF62442000","id":"7FFF62442000","name":"libdyld.dylib","path":"/usr/lib/system/libdyld.dylib","symbolFilePath":"/usr/lib/system/libdyld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":62,"event":"module","body":{"module":{"addressRange":"7FFF6246F000","id":"7FFF6246F000","name":"libkeymgr.dylib","path":"/usr/lib/system/libkeymgr.dylib","symbolFilePath":"/usr/lib/system/libkeymgr.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":63,"event":"module","body":{"module":{"addressRange":"7FFF6247D000","id":"7FFF6247D000","name":"liblaunch.dylib","path":"/usr/lib/system/liblaunch.dylib","symbolFilePath":"/usr/lib/system/liblaunch.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":64,"event":"module","body":{"module":{"addressRange":"7FFF6247E000","id":"7FFF6247E000","name":"libmacho.dylib","path":"/usr/lib/system/libmacho.dylib","symbolFilePath":"/usr/lib/system/libmacho.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":65,"event":"module","body":{"module":{"addressRange":"7FFF62484000","id":"7FFF62484000","name":"libquarantine.dylib","path":"/usr/lib/system/libquarantine.dylib","symbolFilePath":"/usr/lib/system/libquarantine.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":66,"event":"module","body":{"module":{"addressRange":"7FFF62487000","id":"7FFF62487000","name":"libremovefile.dylib","path":"/usr/lib/system/libremovefile.dylib","symbolFilePath":"/usr/lib/system/libremovefile.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":67,"event":"module","body":{"module":{"addressRange":"7FFF62489000","id":"7FFF62489000","name":"libsystem_asl.dylib","path":"/usr/lib/system/libsystem_asl.dylib","symbolFilePath":"/usr/lib/system/libsystem_asl.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":68,"event":"module","body":{"module":{"addressRange":"7FFF624A1000","id":"7FFF624A1000","name":"libsystem_blocks.dylib","path":"/usr/lib/system/libsystem_blocks.dylib","symbolFilePath":"/usr/lib/system/libsystem_blocks.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":69,"event":"module","body":{"module":{"addressRange":"7FFF624A2000","id":"7FFF624A2000","name":"libsystem_c.dylib","path":"/usr/lib/system/libsystem_c.dylib","symbolFilePath":"/usr/lib/system/libsystem_c.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":70,"event":"module","body":{"module":{"addressRange":"7FFF6252A000","id":"7FFF6252A000","name":"libsystem_configuration.dylib","path":"/usr/lib/system/libsystem_configuration.dylib","symbolFilePath":"/usr/lib/system/libsystem_configuration.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":71,"event":"module","body":{"module":{"addressRange":"7FFF6252E000","id":"7FFF6252E000","name":"libsystem_coreservices.dylib","path":"/usr/lib/system/libsystem_coreservices.dylib","symbolFilePath":"/usr/lib/system/libsystem_coreservices.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":72,"event":"module","body":{"module":{"addressRange":"7FFF62532000","id":"7FFF62532000","name":"libsystem_darwin.dylib","path":"/usr/lib/system/libsystem_darwin.dylib","symbolFilePath":"/usr/lib/system/libsystem_darwin.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":73,"event":"module","body":{"module":{"addressRange":"7FFF62539000","id":"7FFF62539000","name":"libsystem_dnssd.dylib","path":"/usr/lib/system/libsystem_dnssd.dylib","symbolFilePath":"/usr/lib/system/libsystem_dnssd.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":74,"event":"module","body":{"module":{"addressRange":"7FFF62540000","id":"7FFF62540000","name":"libsystem_info.dylib","path":"/usr/lib/system/libsystem_info.dylib","symbolFilePath":"/usr/lib/system/libsystem_info.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":75,"event":"module","body":{"module":{"addressRange":"7FFF625B5000","id":"7FFF625B5000","name":"libsystem_m.dylib","path":"/usr/lib/system/libsystem_m.dylib","symbolFilePath":"/usr/lib/system/libsystem_m.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":76,"event":"module","body":{"module":{"addressRange":"7FFF62601000","id":"7FFF62601000","name":"libsystem_malloc.dylib","path":"/usr/lib/system/libsystem_malloc.dylib","symbolFilePath":"/usr/lib/system/libsystem_malloc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":77,"event":"module","body":{"module":{"addressRange":"7FFF6262C000","id":"7FFF6262C000","name":"libsystem_networkextension.dylib","path":"/usr/lib/system/libsystem_networkextension.dylib","symbolFilePath":"/usr/lib/system/libsystem_networkextension.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":78,"event":"module","body":{"module":{"addressRange":"7FFF62637000","id":"7FFF62637000","name":"libsystem_notify.dylib","path":"/usr/lib/system/libsystem_notify.dylib","symbolFilePath":"/usr/lib/system/libsystem_notify.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":79,"event":"module","body":{"module":{"addressRange":"7FFF62654000","id":"7FFF62654000","name":"libsystem_sandbox.dylib","path":"/usr/lib/system/libsystem_sandbox.dylib","symbolFilePath":"/usr/lib/system/libsystem_sandbox.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":80,"event":"module","body":{"module":{"addressRange":"7FFF62658000","id":"7FFF62658000","name":"libsystem_secinit.dylib","path":"/usr/lib/system/libsystem_secinit.dylib","symbolFilePath":"/usr/lib/system/libsystem_secinit.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":81,"event":"module","body":{"module":{"addressRange":"7FFF6258C000","id":"7FFF6258C000","name":"libsystem_kernel.dylib","path":"/usr/lib/system/libsystem_kernel.dylib","symbolFilePath":"/usr/lib/system/libsystem_kernel.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":82,"event":"module","body":{"module":{"addressRange":"7FFF6263F000","id":"7FFF6263F000","name":"libsystem_platform.dylib","path":"/usr/lib/system/libsystem_platform.dylib","symbolFilePath":"/usr/lib/system/libsystem_platform.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":83,"event":"module","body":{"module":{"addressRange":"7FFF62649000","id":"7FFF62649000","name":"libsystem_pthread.dylib","path":"/usr/lib/system/libsystem_pthread.dylib","symbolFilePath":"/usr/lib/system/libsystem_pthread.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":84,"event":"module","body":{"module":{"addressRange":"7FFF6265B000","id":"7FFF6265B000","name":"libsystem_symptoms.dylib","path":"/usr/lib/system/libsystem_symptoms.dylib","symbolFilePath":"/usr/lib/system/libsystem_symptoms.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":85,"event":"module","body":{"module":{"addressRange":"7FFF62663000","id":"7FFF62663000","name":"libsystem_trace.dylib","path":"/usr/lib/system/libsystem_trace.dylib","symbolFilePath":"/usr/lib/system/libsystem_trace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":86,"event":"module","body":{"module":{"addressRange":"7FFF6267A000","id":"7FFF6267A000","name":"libunwind.dylib","path":"/usr/lib/system/libunwind.dylib","symbolFilePath":"/usr/lib/system/libunwind.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":87,"event":"module","body":{"module":{"addressRange":"7FFF62680000","id":"7FFF62680000","name":"libxpc.dylib","path":"/usr/lib/system/libxpc.dylib","symbolFilePath":"/usr/lib/system/libxpc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":88,"event":"module","body":{"module":{"addressRange":"7FFF5FFD7000","id":"7FFF5FFD7000","name":"libenergytrace.dylib","path":"/usr/lib/libenergytrace.dylib","symbolFilePath":"/usr/lib/libenergytrace.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":89,"event":"module","body":{"module":{"addressRange":"7FFF62470000","id":"7FFF62470000","name":"libkxld.dylib","path":"/usr/lib/system/libkxld.dylib","symbolFilePath":"/usr/lib/system/libkxld.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":90,"event":"module","body":{"module":{"addressRange":"7FFF5F671000","id":"7FFF5F671000","name":"libbz2.1.0.dylib","path":"/usr/lib/libbz2.1.0.dylib","symbolFilePath":"/usr/lib/libbz2.1.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":91,"event":"module","body":{"module":{"addressRange":"7FFF603E0000","id":"7FFF603E0000","name":"liblzma.5.dylib","path":"/usr/lib/liblzma.5.dylib","symbolFilePath":"/usr/lib/liblzma.5.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":92,"event":"module","body":{"module":{"addressRange":"7FFF60891000","id":"7FFF60891000","name":"libnetwork.dylib","path":"/usr/lib/libnetwork.dylib","symbolFilePath":"/usr/lib/libnetwork.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":93,"event":"module","body":{"module":{"addressRange":"7FFF5F4CA000","id":"7FFF5F4CA000","name":"libapple_nghttp2.dylib","path":"/usr/lib/libapple_nghttp2.dylib","symbolFilePath":"/usr/lib/libapple_nghttp2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":94,"event":"module","body":{"module":{"addressRange":"7FFF61412000","id":"7FFF61412000","name":"libpcap.A.dylib","path":"/usr/lib/libpcap.A.dylib","symbolFilePath":"/usr/lib/libpcap.A.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":95,"event":"module","body":{"module":{"addressRange":"7FFF37A80000","id":"7FFF37A80000","name":"FSEvents","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":96,"event":"module","body":{"module":{"addressRange":"7FFF3775F000","id":"7FFF3775F000","name":"CarbonCore","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":97,"event":"module","body":{"module":{"addressRange":"7FFF37C3B000","id":"7FFF37C3B000","name":"Metadata","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":98,"event":"module","body":{"module":{"addressRange":"7FFF37CDA000","id":"7FFF37CDA000","name":"OSServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":99,"event":"module","body":{"module":{"addressRange":"7FFF37D25000","id":"7FFF37D25000","name":"SearchKit","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":100,"event":"module","body":{"module":{"addressRange":"7FFF376E2000","id":"7FFF376E2000","name":"AE","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":101,"event":"module","body":{"module":{"addressRange":"7FFF37A89000","id":"7FFF37A89000","name":"LaunchServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":102,"event":"module","body":{"module":{"addressRange":"7FFF37A37000","id":"7FFF37A37000","name":"DictionaryServices","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":103,"event":"module","body":{"module":{"addressRange":"7FFF37D8D000","id":"7FFF37D8D000","name":"SharedFileList","path":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolFilePath":"/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":104,"event":"module","body":{"module":{"addressRange":"7FFF3C11A000","id":"7FFF3C11A000","name":"NetFS","path":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","symbolFilePath":"/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":105,"event":"module","body":{"module":{"addressRange":"7FFF552A8000","id":"7FFF552A8000","name":"NetAuth","path":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolFilePath":"/System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":106,"event":"module","body":{"module":{"addressRange":"7FFF5EC5F000","id":"7FFF5EC5F000","name":"loginsupport","path":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolFilePath":"/System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":107,"event":"module","body":{"module":{"addressRange":"7FFF5CD7F000","id":"7FFF5CD7F000","name":"TCC","path":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolFilePath":"/System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":108,"event":"module","body":{"module":{"addressRange":"7FFF4A218000","id":"7FFF4A218000","name":"CoreNLP","path":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolFilePath":"/System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":109,"event":"module","body":{"module":{"addressRange":"7FFF54D3D000","id":"7FFF54D3D000","name":"MetadataUtilities","path":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolFilePath":"/System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":110,"event":"module","body":{"module":{"addressRange":"7FFF604B5000","id":"7FFF604B5000","name":"libmecabra.dylib","path":"/usr/lib/libmecabra.dylib","symbolFilePath":"/usr/lib/libmecabra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":111,"event":"module","body":{"module":{"addressRange":"7FFF348A7000","id":"7FFF348A7000","name":"ApplicationServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":112,"event":"module","body":{"module":{"addressRange":"7FFF368D1000","id":"7FFF368D1000","name":"CoreGraphics","path":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolFilePath":"/System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":113,"event":"module","body":{"module":{"addressRange":"7FFF380B9000","id":"7FFF380B9000","name":"CoreText","path":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolFilePath":"/System/Library/Frameworks/CoreText.framework/Versions/A/CoreText","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":114,"event":"module","body":{"module":{"addressRange":"7FFF38EBB000","id":"7FFF38EBB000","name":"ImageIO","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":115,"event":"module","body":{"module":{"addressRange":"7FFF35C23000","id":"7FFF35C23000","name":"ColorSync","path":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolFilePath":"/System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":116,"event":"module","body":{"module":{"addressRange":"7FFF348A8000","id":"7FFF348A8000","name":"ATS","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":117,"event":"module","body":{"module":{"addressRange":"7FFF34BF7000","id":"7FFF34BF7000","name":"ColorSyncLegacy","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":118,"event":"module","body":{"module":{"addressRange":"7FFF34C96000","id":"7FFF34C96000","name":"HIServices","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":119,"event":"module","body":{"module":{"addressRange":"7FFF34CE9000","id":"7FFF34CE9000","name":"LangAnalysis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":120,"event":"module","body":{"module":{"addressRange":"7FFF34CF9000","id":"7FFF34CF9000","name":"PrintCore","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":121,"event":"module","body":{"module":{"addressRange":"7FFF34D43000","id":"7FFF34D43000","name":"QD","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":122,"event":"module","body":{"module":{"addressRange":"7FFF34D7D000","id":"7FFF34D7D000","name":"SpeechSynthesis","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":123,"event":"module","body":{"module":{"addressRange":"7FFF5B65E000","id":"7FFF5B65E000","name":"SkyLight","path":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolFilePath":"/System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":124,"event":"module","body":{"module":{"addressRange":"7FFF38E58000","id":"7FFF38E58000","name":"IOSurface","path":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolFilePath":"/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":125,"event":"module","body":{"module":{"addressRange":"7FFF3286C000","id":"7FFF3286C000","name":"Accelerate","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":126,"event":"module","body":{"module":{"addressRange":"7FFF5F6FB000","id":"7FFF5F6FB000","name":"libcompression.dylib","path":"/usr/lib/libcompression.dylib","symbolFilePath":"/usr/lib/libcompression.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":127,"event":"module","body":{"module":{"addressRange":"7FFF36399000","id":"7FFF36399000","name":"CoreDisplay","path":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolFilePath":"/System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":128,"event":"module","body":{"module":{"addressRange":"7FFF3B045000","id":"7FFF3B045000","name":"Metal","path":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolFilePath":"/System/Library/Frameworks/Metal.framework/Versions/A/Metal","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":129,"event":"module","body":{"module":{"addressRange":"7FFF3B315000","id":"7FFF3B315000","name":"MetalPerformanceShaders","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":130,"event":"module","body":{"module":{"addressRange":"7FFF55042000","id":"7FFF55042000","name":"MultitouchSupport","path":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolFilePath":"/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":131,"event":"module","body":{"module":{"addressRange":"7FFF40F58000","id":"7FFF40F58000","name":"QuartzCore","path":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolFilePath":"/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":132,"event":"module","body":{"module":{"addressRange":"7FFF32884000","id":"7FFF32884000","name":"vImage","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":133,"event":"module","body":{"module":{"addressRange":"7FFF338FE000","id":"7FFF338FE000","name":"vecLib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":134,"event":"module","body":{"module":{"addressRange":"7FFF3384A000","id":"7FFF3384A000","name":"libvMisc.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":135,"event":"module","body":{"module":{"addressRange":"7FFF33662000","id":"7FFF33662000","name":"libvDSP.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":136,"event":"module","body":{"module":{"addressRange":"7FFF32F1E000","id":"7FFF32F1E000","name":"libBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":137,"event":"module","body":{"module":{"addressRange":"7FFF3320B000","id":"7FFF3320B000","name":"libLAPACK.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":138,"event":"module","body":{"module":{"addressRange":"7FFF335B5000","id":"7FFF335B5000","name":"libLinearAlgebra.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":139,"event":"module","body":{"module":{"addressRange":"7FFF3364E000","id":"7FFF3364E000","name":"libSparseBLAS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":140,"event":"module","body":{"module":{"addressRange":"7FFF335CB000","id":"7FFF335CB000","name":"libQuadrature.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":141,"event":"module","body":{"module":{"addressRange":"7FFF33198000","id":"7FFF33198000","name":"libBNNS.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":142,"event":"module","body":{"module":{"addressRange":"7FFF335D1000","id":"7FFF335D1000","name":"libSparse.dylib","path":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolFilePath":"/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":143,"event":"module","body":{"module":{"addressRange":"7FFF51566000","id":"7FFF51566000","name":"GPUWrangler","path":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolFilePath":"/System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":144,"event":"module","body":{"module":{"addressRange":"7FFF5386B000","id":"7FFF5386B000","name":"IOAccelerator","path":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolFilePath":"/System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":145,"event":"module","body":{"module":{"addressRange":"7FFF53876000","id":"7FFF53876000","name":"IOPresentment","path":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolFilePath":"/System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":146,"event":"module","body":{"module":{"addressRange":"7FFF4AFF0000","id":"7FFF4AFF0000","name":"DSExternalDisplay","path":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolFilePath":"/System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":147,"event":"module","body":{"module":{"addressRange":"7FFF3F596000","id":"7FFF3F596000","name":"libCoreFSCache.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":148,"event":"module","body":{"module":{"addressRange":"7FFF3B109000","id":"7FFF3B109000","name":"MPSCore","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":149,"event":"module","body":{"module":{"addressRange":"7FFF3B129000","id":"7FFF3B129000","name":"MPSImage","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":150,"event":"module","body":{"module":{"addressRange":"7FFF3B1CE000","id":"7FFF3B1CE000","name":"MPSNeuralNetwork","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":151,"event":"module","body":{"module":{"addressRange":"7FFF3B1A6000","id":"7FFF3B1A6000","name":"MPSMatrix","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":152,"event":"module","body":{"module":{"addressRange":"7FFF3B2FA000","id":"7FFF3B2FA000","name":"MPSRayIntersector","path":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolFilePath":"/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":153,"event":"module","body":{"module":{"addressRange":"7FFF54D66000","id":"7FFF54D66000","name":"MetalTools","path":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolFilePath":"/System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":154,"event":"module","body":{"module":{"addressRange":"7FFF45EA6000","id":"7FFF45EA6000","name":"AggregateDictionary","path":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolFilePath":"/System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":155,"event":"module","body":{"module":{"addressRange":"7FFF5F2DA000","id":"7FFF5F2DA000","name":"libMobileGestalt.dylib","path":"/usr/lib/libMobileGestalt.dylib","symbolFilePath":"/usr/lib/libMobileGestalt.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":156,"event":"module","body":{"module":{"addressRange":"7FFF36F63000","id":"7FFF36F63000","name":"CoreImage","path":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolFilePath":"/System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":157,"event":"module","body":{"module":{"addressRange":"7FFF3821C000","id":"7FFF3821C000","name":"CoreVideo","path":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolFilePath":"/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":158,"event":"module","body":{"module":{"addressRange":"7FFF4013F000","id":"7FFF4013F000","name":"OpenGL","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":159,"event":"module","body":{"module":{"addressRange":"7FFF52377000","id":"7FFF52377000","name":"GraphVisualizer","path":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolFilePath":"/System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":160,"event":"module","body":{"module":{"addressRange":"7FFF4C1F6000","id":"7FFF4C1F6000","name":"FaceCore","path":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolFilePath":"/System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":161,"event":"module","body":{"module":{"addressRange":"7FFF3EBC4000","id":"7FFF3EBC4000","name":"OpenCL","path":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolFilePath":"/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":162,"event":"module","body":{"module":{"addressRange":"7FFF5F032000","id":"7FFF5F032000","name":"libFosl_dynamic.dylib","path":"/usr/lib/libFosl_dynamic.dylib","symbolFilePath":"/usr/lib/libFosl_dynamic.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":163,"event":"module","body":{"module":{"addressRange":"7FFF55B14000","id":"7FFF55B14000","name":"OTSVG","path":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolFilePath":"/System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":164,"event":"module","body":{"module":{"addressRange":"7FFF349AC000","id":"7FFF349AC000","name":"libFontParser.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":165,"event":"module","body":{"module":{"addressRange":"7FFF34AC4000","id":"7FFF34AC4000","name":"libFontRegistry.dylib","path":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolFilePath":"/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":166,"event":"module","body":{"module":{"addressRange":"7FFF3912B000","id":"7FFF3912B000","name":"libJPEG.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":167,"event":"module","body":{"module":{"addressRange":"7FFF39450000","id":"7FFF39450000","name":"libTIFF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":168,"event":"module","body":{"module":{"addressRange":"7FFF39426000","id":"7FFF39426000","name":"libPng.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":169,"event":"module","body":{"module":{"addressRange":"7FFF39049000","id":"7FFF39049000","name":"libGIF.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":170,"event":"module","body":{"module":{"addressRange":"7FFF3904E000","id":"7FFF3904E000","name":"libJP2.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd45377efa0 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = stopped}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":171,"event":"module","body":{"module":{"addressRange":"7FFF3944D000","id":"7FFF3944D000","name":"libRadiance.dylib","path":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolFilePath":"/System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd455858f30 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = running}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":172,"event":"module","body":{"module":{"addressRange":"7FFF46753000","id":"7FFF46753000","name":"AppleJPEG","path":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolFilePath":"/System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":173,"event":"module","body":{"module":{"addressRange":"7FFF3F5A1000","id":"7FFF3F5A1000","name":"libGFXShared.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":174,"event":"module","body":{"module":{"addressRange":"7FFF3F764000","id":"7FFF3F764000","name":"libGLU.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":175,"event":"module","body":{"module":{"addressRange":"7FFF3F5AA000","id":"7FFF3F5AA000","name":"libGL.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":176,"event":"module","body":{"module":{"addressRange":"7FFF3F5B6000","id":"7FFF3F5B6000","name":"libGLImage.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":177,"event":"module","body":{"module":{"addressRange":"7FFF3F593000","id":"7FFF3F593000","name":"libCVMSPluginSupport.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":178,"event":"module","body":{"module":{"addressRange":"7FFF3F59C000","id":"7FFF3F59C000","name":"libCoreVMClient.dylib","path":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolFilePath":"/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":179,"event":"module","body":{"module":{"addressRange":"7FFF5FE4C000","id":"7FFF5FE4C000","name":"libcups.2.dylib","path":"/usr/lib/libcups.2.dylib","symbolFilePath":"/usr/lib/libcups.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":180,"event":"module","body":{"module":{"addressRange":"7FFF3A610000","id":"7FFF3A610000","name":"Kerberos","path":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolFilePath":"/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":181,"event":"module","body":{"module":{"addressRange":"7FFF38B2B000","id":"7FFF38B2B000","name":"GSS","path":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolFilePath":"/System/Library/Frameworks/GSS.framework/Versions/A/GSS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":182,"event":"module","body":{"module":{"addressRange":"7FFF61560000","id":"7FFF61560000","name":"libresolv.9.dylib","path":"/usr/lib/libresolv.9.dylib","symbolFilePath":"/usr/lib/libresolv.9.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":183,"event":"module","body":{"module":{"addressRange":"7FFF6003F000","id":"7FFF6003F000","name":"libiconv.2.dylib","path":"/usr/lib/libiconv.2.dylib","symbolFilePath":"/usr/lib/libiconv.2.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":184,"event":"module","body":{"module":{"addressRange":"7FFF524EC000","id":"7FFF524EC000","name":"Heimdal","path":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolFilePath":"/System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":185,"event":"module","body":{"module":{"addressRange":"7FFF6000F000","id":"7FFF6000F000","name":"libheimdal-asn1.dylib","path":"/usr/lib/libheimdal-asn1.dylib","symbolFilePath":"/usr/lib/libheimdal-asn1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":186,"event":"module","body":{"module":{"addressRange":"7FFF3EC38000","id":"7FFF3EC38000","name":"OpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":187,"event":"module","body":{"module":{"addressRange":"7FFF48F7B000","id":"7FFF48F7B000","name":"CommonAuth","path":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolFilePath":"/System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":188,"event":"module","body":{"module":{"addressRange":"7FFF3EC1C000","id":"7FFF3EC1C000","name":"CFOpenDirectory","path":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolFilePath":"/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":189,"event":"module","body":{"module":{"addressRange":"7FFF41CE8000","id":"7FFF41CE8000","name":"SecurityFoundation","path":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolFilePath":"/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":190,"event":"module","body":{"module":{"addressRange":"7FFF453EC000","id":"7FFF453EC000","name":"APFS","path":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolFilePath":"/System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":191,"event":"module","body":{"module":{"addressRange":"7FFF619C1000","id":"7FFF619C1000","name":"libutil.dylib","path":"/usr/lib/libutil.dylib","symbolFilePath":"/usr/lib/libutil.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":192,"event":"module","body":{"module":{"addressRange":"7FFF5F6E9000","id":"7FFF5F6E9000","name":"libcharset.1.dylib","path":"/usr/lib/libcharset.1.dylib","symbolFilePath":"/usr/lib/libcharset.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":193,"event":"module","body":{"module":{"addressRange":"7FFF35EFE000","id":"7FFF35EFE000","name":"CoreAudio","path":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolFilePath":"/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":194,"event":"module","body":{"module":{"addressRange":"7FFF34D8A000","id":"7FFF34D8A000","name":"AudioToolbox","path":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolFilePath":"/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":195,"event":"module","body":{"module":{"addressRange":"7FFF469F0000","id":"7FFF469F0000","name":"AppleSauce","path":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolFilePath":"/System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":196,"event":"module","body":{"module":{"addressRange":"7FFF46B71000","id":"7FFF46B71000","name":"AssertionServices","path":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolFilePath":"/System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":197,"event":"module","body":{"module":{"addressRange":"7FFF472A1000","id":"7FFF472A1000","name":"BaseBoard","path":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolFilePath":"/System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":198,"event":"module","body":{"module":{"addressRange":"7FFF60410000","id":"7FFF60410000","name":"libmecab.1.0.0.dylib","path":"/usr/lib/libmecab.1.0.0.dylib","symbolFilePath":"/usr/lib/libmecab.1.0.0.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":199,"event":"module","body":{"module":{"addressRange":"7FFF60009000","id":"7FFF60009000","name":"libgermantok.dylib","path":"/usr/lib/libgermantok.dylib","symbolFilePath":"/usr/lib/libgermantok.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":200,"event":"module","body":{"module":{"addressRange":"7FFF5F4B7000","id":"7FFF5F4B7000","name":"libThaiTokenizer.dylib","path":"/usr/lib/libThaiTokenizer.dylib","symbolFilePath":"/usr/lib/libThaiTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":201,"event":"module","body":{"module":{"addressRange":"7FFF5EF62000","id":"7FFF5EF62000","name":"libChineseTokenizer.dylib","path":"/usr/lib/libChineseTokenizer.dylib","symbolFilePath":"/usr/lib/libChineseTokenizer.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":202,"event":"module","body":{"module":{"addressRange":"7FFF53F23000","id":"7FFF53F23000","name":"LanguageModeling","path":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolFilePath":"/System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":203,"event":"module","body":{"module":{"addressRange":"7FFF49C5D000","id":"7FFF49C5D000","name":"CoreEmoji","path":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolFilePath":"/System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":204,"event":"module","body":{"module":{"addressRange":"7FFF53FFF000","id":"7FFF53FFF000","name":"Lexicon","path":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolFilePath":"/System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":205,"event":"module","body":{"module":{"addressRange":"7FFF54042000","id":"7FFF54042000","name":"LinguisticData","path":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolFilePath":"/System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":206,"event":"module","body":{"module":{"addressRange":"7FFF5F6EA000","id":"7FFF5F6EA000","name":"libcmph.dylib","path":"/usr/lib/libcmph.dylib","symbolFilePath":"/usr/lib/libcmph.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":207,"event":"module","body":{"module":{"addressRange":"7FFF36013000","id":"7FFF36013000","name":"CoreData","path":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","symbolFilePath":"/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":208,"event":"module","body":{"module":{"addressRange":"7FFF41DA6000","id":"7FFF41DA6000","name":"ServiceManagement","path":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolFilePath":"/System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":209,"event":"module","body":{"module":{"addressRange":"7FFF47202000","id":"7FFF47202000","name":"BackgroundTaskManagement","path":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolFilePath":"/System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":210,"event":"module","body":{"module":{"addressRange":"7FFF61ABB000","id":"7FFF61ABB000","name":"libxslt.1.dylib","path":"/usr/lib/libxslt.1.dylib","symbolFilePath":"/usr/lib/libxslt.1.dylib","symbolStatus":"Symbols loaded."},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":211,"event":"module","body":{"module":{"addressRange":"100CCA000","id":"100CCA000","name":"libiconv-nocharset.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libiconv-nocharset.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":212,"event":"module","body":{"module":{"addressRange":"100DB4000","id":"100DB4000","name":"libcharset.1.dylib","path":"/nix/store/xkax8zy89n7wld13ys3p006wmzsmzgwn-libiconv-osx-10.12.6/lib/libcharset.1.dylib","symbolStatus":"Symbols not found"},"reason":"new"}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":213,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Callback for breakpoint location 3.7: where = flake-info`read_sources_file + 174 at source.rs:70:36, address = 0x000000010032d1de, resolved, hit count = 1 

[2021-06-07T17:35:12Z DEBUG codelldb::debug_session] Debug event: 0x7fd457843960 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = stopped}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":214,"event":"stopped","body":{"allThreadsStopped":true,"reason":"breakpoint","threadId":8573703}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":20}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":20,"success":true,"command":"threads","body":{"threads":[{"id":8573703,"name":"1: tid=8573703"}]}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":0,"levels":1},"type":"request","seq":21}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":21,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":36,"id":1001,"line":70,"name":"read_sources_file","source":{"name":"source.rs","path":"/Volumes/projects/nixos-search/flake-info/src/data/source.rs"}}],"totalFrames":14}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":1,"levels":19},"type":"request","seq":22}
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`flake_info::run::hdae1b68dffa85378 + 446
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`flake_info::main::h79beaa48e5be6aad + 18
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`core::ops::function::FnOnce::call_once::h6926f4c8060e5113 + 14
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53 + 17
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df + 20
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`lang_start_internal + 644 [inlined] std::panicking::try + 7 at panic.rs:431
flake-info`lang_start_internal + 637 [inlined] std::panic::catch_unwind at rt.rs:51
flake-info`lang_start_internal + 637 at rt.rs:51
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`std::rt::lang_start::h9b91b5a165ea6965 + 46
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] flake-info`main + 22
[2021-06-07T17:35:12Z DEBUG codelldb::disassembly] libdyld.dylib`start + 1
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":22,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1006,"line":90,"name":"flake_info::run::hdae1b68dffa85378","presentationHint":"subtle","source":{"name":"@flake_info::run::hdae1b68dffa85378","sourceReference":1001}},{"column":0,"id":1007,"line":8,"name":"flake_info::main::h79beaa48e5be6aad","presentationHint":"subtle","source":{"name":"@flake_info::main::h79beaa48e5be6aad","sourceReference":1002}},{"column":0,"id":1008,"line":8,"name":"core::ops::function::FnOnce::call_once::h6926f4c8060e5113","presentationHint":"subtle","source":{"name":"@core::ops::function::FnOnce::call_once::h6926f4c8060e5113","sourceReference":1003}},{"column":0,"id":1009,"line":8,"name":"std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","presentationHint":"subtle","source":{"name":"@std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","sourceReference":1004}},{"column":0,"id":1010,"line":9,"name":"std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","sourceReference":1005}},{"column":0,"id":1011,"line":159,"name":"core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnOnce$LT$A$GT$$u20$for$u20$$RF$F$GT$::call_once","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1012,"line":157,"name":"std::panicking::try::do_call","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1013,"line":157,"name":"std::panicking::try","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1014,"line":157,"name":"std::panic::catch_unwind","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1015,"line":157,"name":"lang_start_internal","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1016,"line":15,"name":"std::rt::lang_start::h9b91b5a165ea6965","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::h9b91b5a165ea6965","sourceReference":1007}},{"column":0,"id":1017,"line":9,"name":"main","presentationHint":"subtle","source":{"name":"@main","sourceReference":1008}},{"column":0,"id":1018,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1009}}],"totalFrames":14}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":23}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":23,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1002},{"expensive":false,"name":"Static","variablesReference":1003},{"expensive":false,"name":"Global","variablesReference":1004},{"expensive":false,"name":"Registers","variablesReference":1005}]}}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1002},"type":"request","seq":24}
[2021-06-07T17:35:12Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":24,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"path","name":"path","type":"&std::path::Path","value":"\"./examples/nixpkgs.json\"","variablesReference":1019},{"evaluateName":"file","name":"file","type":"std::fs::File","value":"{...}","variablesReference":1020}]}}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] --> {"command":"continue","arguments":{"threadId":8573703},"type":"request","seq":25}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":25,"success":true,"command":"continue","body":{"allThreadsContinued":true}}
[2021-06-07T17:35:13Z DEBUG codelldb::debug_session] Debug event: 0x7fd4532395c0 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = running}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":215,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:35:13Z DEBUG codelldb::debug_session] Callback for breakpoint location 3.8: where = flake-info`read_sources_file + 328 at source.rs:70:12, address = 0x000000010032d278, resolved, hit count = 1 

[2021-06-07T17:35:13Z DEBUG codelldb::debug_session] Debug event: 0x7fd456d49d90 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = stopped}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":216,"event":"stopped","body":{"allThreadsStopped":true,"reason":"breakpoint","threadId":8573703}}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] --> {"command":"threads","type":"request","seq":26}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":26,"success":true,"command":"threads","body":{"threads":[{"id":8573703,"name":"1: tid=8573703"}]}}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":0,"levels":1},"type":"request","seq":27}
[2021-06-07T17:35:13Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":27,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":12,"id":1001,"line":70,"name":"read_sources_file","source":{"name":"source.rs","path":"/Volumes/projects/nixos-search/flake-info/src/data/source.rs"}}],"totalFrames":14}}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] --> {"command":"scopes","arguments":{"frameId":1001},"type":"request","seq":28}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":28,"success":true,"command":"scopes","body":{"scopes":[{"expensive":false,"name":"Local","variablesReference":1002},{"expensive":false,"name":"Static","variablesReference":1003},{"expensive":false,"name":"Global","variablesReference":1004},{"expensive":false,"name":"Registers","variablesReference":1005}]}}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] --> {"command":"variables","arguments":{"variablesReference":1002},"type":"request","seq":29}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] --> {"command":"stackTrace","arguments":{"threadId":8573703,"startFrame":1,"levels":19},"type":"request","seq":30}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":29,"success":true,"command":"variables","body":{"variables":[{"evaluateName":"path","name":"path","type":"&std::path::Path","value":"\"./examples/nixpkgs.json\"","variablesReference":1019},{"evaluateName":"file","name":"file","type":"std::fs::File","value":"{...}","variablesReference":1020},{"evaluateName":"val","name":"val","type":"alloc::vec::Vec","value":"(1) vec![{...}]","variablesReference":1021}]}}
[2021-06-07T17:35:14Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":30,"success":true,"command":"stackTrace","body":{"stackFrames":[{"column":0,"id":1006,"line":90,"name":"flake_info::run::hdae1b68dffa85378","presentationHint":"subtle","source":{"name":"@flake_info::run::hdae1b68dffa85378","sourceReference":1001}},{"column":0,"id":1007,"line":8,"name":"flake_info::main::h79beaa48e5be6aad","presentationHint":"subtle","source":{"name":"@flake_info::main::h79beaa48e5be6aad","sourceReference":1002}},{"column":0,"id":1008,"line":8,"name":"core::ops::function::FnOnce::call_once::h6926f4c8060e5113","presentationHint":"subtle","source":{"name":"@core::ops::function::FnOnce::call_once::h6926f4c8060e5113","sourceReference":1003}},{"column":0,"id":1009,"line":8,"name":"std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","presentationHint":"subtle","source":{"name":"@std::sys_common::backtrace::__rust_begin_short_backtrace::h220ecf30f23c0a53","sourceReference":1004}},{"column":0,"id":1010,"line":9,"name":"std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h28811f41fdf6e7df","sourceReference":1005}},{"column":0,"id":1011,"line":159,"name":"core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnOnce$LT$A$GT$$u20$for$u20$$RF$F$GT$::call_once","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1012,"line":157,"name":"std::panicking::try::do_call","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1013,"line":157,"name":"std::panicking::try","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1014,"line":157,"name":"std::panic::catch_unwind","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1015,"line":157,"name":"lang_start_internal","presentationHint":"subtle","source":{"name":"@std::rt::lang_start_internal::h22f576efc80a1a69","sourceReference":1006}},{"column":0,"id":1016,"line":15,"name":"std::rt::lang_start::h9b91b5a165ea6965","presentationHint":"subtle","source":{"name":"@std::rt::lang_start::h9b91b5a165ea6965","sourceReference":1007}},{"column":0,"id":1017,"line":9,"name":"main","presentationHint":"subtle","source":{"name":"@main","sourceReference":1008}},{"column":0,"id":1018,"line":4,"name":"start","presentationHint":"subtle","source":{"name":"@start","sourceReference":1009}}],"totalFrames":14}}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] --> {"command":"continue","arguments":{"threadId":8573703},"type":"request","seq":31}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":31,"success":true,"command":"continue","body":{"allThreadsContinued":true}}
[2021-06-07T17:35:16Z DEBUG codelldb::debug_session] Debug event: 0x7fd450e6b490 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = running}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":217,"event":"continued","body":{"allThreadsContinued":true,"threadId":0}}
[2021-06-07T17:35:16Z DEBUG codelldb::debug_session] Debug event: 0x7fd45377efa0 Event: broadcaster = 0x7fd451b35058 (lldb.process), type = 0x00000001 (state-changed), data = { process = 0x7fd451b35018 (pid = 9161), state = exited}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":218,"event":"output","body":{"output":"Process exited with code 0.\n"}}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":219,"event":"exited","body":{"exitCode":0}}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"event","seq":220,"event":"terminated","body":{}}
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] --> {"command":"disconnect","arguments":{"restart":false,"terminateDebuggee":false},"type":"request","seq":32}
[2021-06-07T17:35:16Z ERROR codelldb::debug_session] Internal debugger error: Sending disconnect packet failed.
[2021-06-07T17:35:16Z DEBUG codelldb::dap_codec] <-- {"type":"response","request_seq":32,"success":false,"message":"Internal debugger error: Sending disconnect packet failed.","show_user":true}
[2021-06-07T17:35:17Z DEBUG codelldb::dap_session] Client has disconnected
[2021-06-07T17:35:17Z DEBUG codelldb::debug_session] End of the requests stream
[2021-06-07T17:35:17Z DEBUG codelldb::debug_session] DebugSession::drop()
[2021-06-07T17:35:17Z DEBUG codelldb] Session has ended
[2021-06-07T17:35:17Z DEBUG codelldb] Exiting
Debug adapter exit code=0, signal=null.
vadimcn commented 3 years ago

Does the binary have debug info available?

vadimcn commented 3 years ago

I suggest you check whether the binary has debug symbols available as described here.
Can you reproduce this issue with command-line lldb?

kytas commented 3 years ago

Hello i have same problem, I have app with debug symbols and the manualy breatpoint works, below logs: (lldb) image list [ 0] B55E7D3C-6FAB-68C9-5CA6-52E35A527247-9710E64A 0x00400000 /home/hofman/.lldb/module_cache/remote-linux/.cache/B55E7D3C-6FAB-68C9-5CA6-52E35A527247-9710E64A/shell_no_disp [ 1] 1EBCDD24-EA61-2A06-F8EC-B3C08916B592-4419CCB1 0xb6fd5000 /home/hofman/.lldb/module_cache/remote-linux/.cache/1EBCDD24-EA61-2A06-F8EC-B3C08916B592-4419CCB1/ld-2.31.so [ 2] DDE929F5-691F-4CDC-5729-E0FA40DA2109-82DF6FB5 0xb6ffd000 [vdso] (0x00000000b6ffd000) [ 3] 1EBCDD24-EA61-2A06-F8EC-B3C08916B592-4419CCB1 0xb6fd5000 /home/hofman/.lldb/module_cache/remote-linux/.cache/1EBCDD24-EA61-2A06-F8EC-B3C08916B592-4419CCB1/ld-2.31.so [ 4] 15EA10DE 0xb6ffd000 linux-vdso.so.1 (0x00000000b6ffd000) [ 5] C2A566BA-68C2-AA15-8DF3-860CBAC2EAF5-C8D20829 0xb6f9b000 /home/hofman/.lldb/module_cache/remote-linux/.cache/C2A566BA-68C2-AA15-8DF3-860CBAC2EAF5-C8D20829/libgcc_s.so.1 [ 6] 18964F13-411A-3342-C383-0F94774D498D-6865CDC3 0xb6f85000 /home/hofman/.lldb/module_cache/remote-linux/.cache/18964F13-411A-3342-C383-0F94774D498D-6865CDC3/librt.so.1 [ 7] 392A9E57-1D2A-6A19-684B-EAB3A9E02FC8-C3B699CE 0xb6f5f000 /home/hofman/.lldb/module_cache/remote-linux/.cache/392A9E57-1D2A-6A19-684B-EAB3A9E02FC8-C3B699CE/libpthread.so.0 [ 8] 12DE54C2-BABF-5058-1F31-0CF32F8CE093-8AE7D269 0xb6f4c000 /home/hofman/.lldb/module_cache/remote-linux/.cache/12DE54C2-BABF-5058-1F31-0CF32F8CE093-8AE7D269/libdl.so.2 [ 9] 7F958815-7C43-DE02-A089-D766FE7CC1A0-FA70ED45 0xb6e4e000 /home/hofman/.lldb/module_cache/remote-linux/.cache/7F958815-7C43-DE02-A089-D766FE7CC1A0-FA70ED45/libc.so.6 (lldb) breakpoint list --verbose No breakpoints currently set. (lldb) breakpoint set --file main.rs --line 99 warning: failed to set breakpoint site at 0x40ef4c for breakpoint 1.1: error sending the breakpoint request Breakpoint 1: where = shell_no_disp`shell_no_disp::main::h11683534d7e13078 + 16 at main.rs:99:5, address = 0x0040ef4c (lldb) breakpoint list --verbose Current breakpoints: 1: file = 'main.rs', line = 99, exact_match = 0 1.1: module = /home/hofman/.lldb/module_cache/remote-linux/.cache/B55E7D3C-6FAB-68C9-5CA6-52E35A527247-9710E64A/shell_no_disp compile unit = main.rs function = shell_no_disp::main::h11683534d7e13078 location = /project/src/main.rs:99:5 address = 0x0040ef4c resolved = false hardware = false hit count = 0

(lldb) run Process 3619 launched: '/home/hofman/.lldb/module_cache/remote-linux/.cache/B55E7D3C-6FAB-68C9-5CA6-52E35A527247-9710E64A/shell_no_disp' (arm) Process 3619 stopped

kytas commented 3 years ago

VS code setup bp, but no hit. do u have some advice ? Executing script: postRunCommands Current breakpoints: 1: file = '/home/hofman/ProjektyIMA/shell_no_disp/src/main.rs', line = 98, exact_match = 0

2: file = '/home/hofman/ProjektyIMA/shell_no_disp/src/main.rs', line = 108, exact_match = 0

launch.json "version": "0.2.0", "configurations": [

    {
        "name": "Remote launch",
        "type": "lldb",
        "request": "launch",
        "program": "${workspaceFolder}/target/arm-unknown-linux-gnueabihf/debug/shell_no_disp", // Local path.
        "initCommands": [
            "platform select remote-linux", // Execute `platform list` for a list of available remote platform plugins.
            "platform connect connect://192.168.203.77:1234",
            "settings set target.inherit-env false", // See the note below.

        ],
        "postRunCommands": [
            "breakpoint list --verbose"
        ],

    }
kytas commented 3 years ago

I found a problem, when i build with cargo build its ok, if i am using cross build docker container , its not working ? do u have any idea, whats might be wrong ?

vadimcn commented 3 years ago

Probably this