Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] Application crash at already borrowed: BorrowMutError #9775

Open
goriunov opened this issue May 14, 2024 · 2 comments
Open

[bug] Application crash at already borrowed: BorrowMutError #9775

goriunov opened this issue May 14, 2024 · 2 comments
Labels
status: needs triage This issue needs to triage, applied to new issues type: bug

Comments

@goriunov
Copy link

goriunov commented May 14, 2024

Describe the bug

Our application keeps crashing at a random time (no specific pattern) the only thing is we have over 5 different windows for the application, and we do sync quite a few events in between those windows (probaby at least 1 event at 10-50ms). Unfortunately there is no easy way to reproduce it but I was able to fetch the stack trace on debug build when it crashed.

Not sure where to move from here at the moment hope to get some ideas on what could be the issue and if it could be the bug in tauri itself.

The issue happens on all platforms Windows/Mac/etc and we are using the global event lib

Reproduction

No response

Expected behavior

Not to crash

Full tauri info output

[✔] Environment
    - OS: Mac OS 14.3.1 X64
    ✔ Xcode Command Line Tools: installed
    ✔ rustc: 1.75.0 (82e1608df 2023-12-21)
    ✔ cargo: 1.75.0 (1d8b05cdd 2023-11-20)
    ✔ rustup: 1.26.0 (5af9b9484 2023-04-05)
    ✔ Rust toolchain: stable-aarch64-apple-darwin (environment override by RUSTUP_TOOLCHAIN)
    - node: 20.10.0
    - npm: 10.2.3

[-] Packages
    - tauri [RUST]: 1.5.2
    - tauri-build [RUST]: 1.5.0
    - wry [RUST]: 0.24.4
    - tao [RUST]: 0.16.5
    - tauri-cli [RUST]: 1.5.9
    - @tauri-apps/api [NPM]: 1.5.3 (outdated, latest: 1.5.5)
    - @tauri-apps/cli [NPM]: 1.5.9 (outdated, latest: 1.5.14)

[-] App
    - build-type: bundle
    - CSP: 
    - distDir: ../frontend
    - devPath: ../frontend
    - framework: React
    - bundler: Vite

Stack trace

thread 'main' panicked at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-runtime-wry-0.14.1/src/lib.rs:2965:35:
already borrowed: BorrowMutError
stack backtrace:
   0: rust_begin_unwind
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/std/src/panicking.rs:645:5
   1: core::panicking::panic_fmt
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/panicking.rs:72:14
   2: core::cell::panic_already_borrowed
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/cell.rs:762:5
   3: core::cell::RefCell<T>::borrow_mut
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/cell.rs:1052:25
   4: tauri_runtime_wry::handle_event_loop
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-runtime-wry-0.14.1/src/lib.rs:2965:27
   5: <tauri_runtime_wry::Wry<T> as tauri_runtime::Runtime<T>>::run::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-runtime-wry-0.14.1/src/lib.rs:2282:7
   6: <tao::platform_impl::platform::app_state::EventLoopHandler<T> as tao::platform_impl::platform::app_state::EventHandler>::handle_nonuser_event::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/app_state.rs:105:9
   7: tao::platform_impl::platform::app_state::EventLoopHandler<T>::with_callback
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/app_state.rs:79:7
   8: <tao::platform_impl::platform::app_state::EventLoopHandler<T> as tao::platform_impl::platform::app_state::EventHandler>::handle_nonuser_event
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/app_state.rs:100:5
   9: tao::platform_impl::platform::app_state::Handler::handle_nonuser_event
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/app_state.rs:208:11
  10: tao::platform_impl::platform::app_state::AppState::cleared
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/app_state.rs:383:7
  11: tao::platform_impl::platform::observer::control_flow_end_handler::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/observer.rs:187:11
  12: tao::platform_impl::platform::observer::control_flow_handler::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/observer.rs:148:5
  13: std::panicking::try::do_call
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/std/src/panicking.rs:552:40
  14: ___rust_try
  15: std::panicking::try
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/std/src/panicking.rs:516:19
  16: std::panic::catch_unwind
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/std/src/panic.rs:142:14
  17: tao::platform_impl::platform::event_loop::stop_app_on_panic
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/event_loop.rs:236:9
  18: tao::platform_impl::platform::observer::control_flow_handler
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/observer.rs:146:3
  19: tao::platform_impl::platform::observer::control_flow_end_handler
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/observer.rs:182:5
  20: <unknown>
  21: <unknown>
  22: <unknown>
  23: <unknown>
  24: <unknown>
  25: <unknown>
  26: <unknown>
  27: <unknown>
  28: <unknown>
  29: <unknown>
  30: <() as objc::message::MessageArguments>::invoke
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc-0.2.7/src/message/mod.rs:128:17
  31: objc::message::platform::send_unverified::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc-0.2.7/src/message/apple/mod.rs:27:9
  32: objc_exception::try::{{closure}}
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc_exception-0.1.2/src/lib.rs:68:31
  33: objc_exception::try_no_ret::try_objc_execute_closure
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc_exception-0.1.2/src/lib.rs:34:9
  34: RustObjCExceptionTryCatch
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc_exception-0.1.2/extern/exception.m:10:9
  35: objc_exception::try_no_ret
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc_exception-0.1.2/src/lib.rs:44:19
  36: objc_exception::try
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc_exception-0.1.2/src/lib.rs:67:9
  37: objc::exception::try
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc-0.2.7/src/exception.rs:8:5
  38: objc::message::platform::send_unverified
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc-0.2.7/src/message/apple/mod.rs:26:5
  39: objc::message::send_message
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/objc-0.2.7/src/message/mod.rs:178:5
  40: tao::platform_impl::platform::event_loop::EventLoop<T>::run_return
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/event_loop.rs:193:16
  41: tao::platform_impl::platform::event_loop::EventLoop<T>::run
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/platform_impl/macos/event_loop.rs:160:21
  42: tao::event_loop::EventLoop<T>::run
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tao-0.16.5/src/event_loop.rs:179:5
  43: <tauri_runtime_wry::Wry<T> as tauri_runtime::Runtime<T>>::run
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-runtime-wry-0.14.1/src/lib.rs:2256:5
  44: tauri::app::App<R>::run
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-1.5.2/src/app.rs:875:5
  45: tauri::app::Builder<R>::run
             at /Users/xyz/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tauri-1.5.2/src/app.rs:1724:5
  46: botter_ui::main
             at ./src/main.rs:13:5
  47: core::ops::function::FnOnce::call_once
             at /rustc/82e1608dfa6e0b5569232559e3d385fea5a93112/library/core/src/ops/function.rs:250:5
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.

Additional context

No response

@goriunov goriunov added status: needs triage This issue needs to triage, applied to new issues type: bug labels May 14, 2024
@FabianLars
Copy link
Member

Just to be sure, did you already try updating the tauri packages to their latest versions?

@goriunov
Copy link
Author

goriunov commented May 14, 2024

I have been running with the latest versions of tauri for the last night, and so far have not had that BorrowMutError error crash, but we did face another crash of the app. I know it might be tricky to figure out what is going on, but may be someone have already seen this error and can recommend the steps to look in to.

This is the resort from running the cargo tauri dev version, we do not have almost any rust code and primarily do JS with all the communication going through the global tauri events.

There was second crash but with the reason been tokio thread, however i did not copy the crash report before closing it.

-------------------------------------
Translated Report (Full Report Below)
-------------------------------------

Process:               AppxxUI [37361]
Path:                  /Users/USER/Desktop/*/AppxxUI
Identifier:            AppxxUI
Version:               ???
Code Type:             ARM-64 (Native)
Parent Process:        Exited process [36574]
Responsible:           Electron [64705]
User ID:               501

Date/Time:             2024-05-15 02:20:16.5470 +1200
OS Version:            macOS 14.3.1 (23D60)
Report Version:        12
Anonymous UUID:        2D99ABEA-6D44-A54F-3086-6F502BFFD892

Sleep/Wake UUID:       8234F69C-5836-4B60-82C5-959E150A3CC5

Time Awake Since Boot: 5100000 seconds
Time Since Wake:       14404 seconds

System Integrity Protection: enabled

Crashed Thread:        0  main  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_BREAKPOINT (SIGTRAP)
Exception Codes:       0x0000000000000001, 0x0000000101345a18

Termination Reason:    Namespace SIGNAL, Code 5 Trace/BPT trap: 5
Terminating Process:   exc handler [37361]

Thread 0 Crashed:: main Dispatch queue: com.apple.main-thread
0   AppxxUI                      	       0x101345a18 alloc::rc::RcInnerPtr::inc_strong::hc0cbfbe6da3da5b5 + 144
1   AppxxUI                      	       0x101347ab4 _$LT$alloc..rc..Rc$LT$T$C$A$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hf010e963d941e856 + 48
2   AppxxUI                      	       0x101159d34 _$LT$tauri_runtime_wry..DispatcherMainThreadContext$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h9a67d424f140ae00 + 100 (lib.rs:284)
3   AppxxUI                      	       0x101158f4c _$LT$tauri_runtime_wry..Context$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hdcb9faa8554f5c1f + 120 (lib.rs:198)
4   AppxxUI                      	       0x1010e6c78 _$LT$tauri_runtime_wry..global_shortcut..GlobalShortcutManagerHandle$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd7ed0bf915a1a83e + 32 (global_shortcut.rs:56)
5   AppxxUI                      	       0x10112bcf0 _$LT$tauri..app..AppHandle$LT$R$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hb54399697e0be1ba + 108 (app.rs:427)
6   AppxxUI                      	       0x1011814ec _$LT$tauri..window..Window$LT$R$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h02a8c6d1813d598e + 108 (window.rs:759)
7   AppxxUI                      	       0x10117c4a4 tauri::window::Window$LT$R$GT$::on_message::ha65428d301c0177f + 1212 (window.rs:1584)
8   AppxxUI                      	       0x101175694 tauri::manager::WindowManager$LT$R$GT$::prepare_ipc_handler::_$u7b$$u7b$closure$u7d$$u7d$::h174a1fd95df3e5f6 + 416 (manager.rs:627)
9   AppxxUI                      	       0x1011f6c94 _$LT$alloc..boxed..Box$LT$F$C$A$GT$$u20$as$u20$core..ops..function..Fn$LT$Args$GT$$GT$::call::h0a6eafd310901026 + 100 (boxed.rs:2021)
10  AppxxUI                      	       0x101158964 tauri_runtime_wry::create_ipc_handler::_$u7b$$u7b$closure$u7d$$u7d$::h02735730e146d641 + 532 (lib.rs:3406)
11  AppxxUI                      	       0x101460be0 _$LT$alloc..boxed..Box$LT$F$C$A$GT$$u20$as$u20$core..ops..function..Fn$LT$Args$GT$$GT$::call::h3ad71424b2dfd7f8 + 72
12  AppxxUI                      	       0x101460be0 _$LT$alloc..boxed..Box$LT$F$C$A$GT$$u20$as$u20$core..ops..function..Fn$LT$Args$GT$$GT$::call::h3ad71424b2dfd7f8 + 72
13  AppxxUI                      	       0x101452794 wry::webview::wkwebview::InnerWebView::new::did_receive::h8b044f8ccbb3efe1 + 1736
14  WebKit                        	       0x1a39de4cc ScriptMessageHandlerDelegate::didPostMessage(WebKit::WebPageProxy&, WebKit::FrameInfoData&&, API::ContentWorld&, WebCore::SerializedScriptValue&) + 228
15  WebKit                        	       0x1a3e053d8 WebKit::WebUserContentControllerProxy::didPostMessage(WTF::ObjectIdentifierGeneric<WebKit::WebPageProxyIdentifierType, WTF::ObjectIdentifierMainThreadAccessTraits>, WebKit::FrameInfoData&&, unsigned long long, std::__1::span<unsigned char const, 18446744073709551615ul> const&, WTF::CompletionHandler<void (std::__1::span<unsigned char const, 18446744073709551615ul>&&, WTF::String const&)>&&) + 680
16  WebKit                        	       0x1a41a31a8 WebKit::WebUserContentControllerProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 356
17  WebKit                        	       0x1a41bbebc IPC::MessageReceiverMap::dispatchMessage(IPC::Connection&, IPC::Decoder&) + 264
18  WebKit                        	       0x1a3d6e310 WebKit::WebProcessProxy::didReceiveMessage(IPC::Connection&, IPC::Decoder&) + 40
19  WebKit                        	       0x1a41b6e44 IPC::Connection::dispatchMessage(std::__1::unique_ptr<IPC::Decoder, std::__1::default_delete<IPC::Decoder>>) + 324
20  WebKit                        	       0x1a41b731c IPC::Connection::dispatchIncomingMessages() + 636
21  JavaScriptCore                	       0x19c9047f0 WTF::RunLoop::performWork() + 204
22  JavaScriptCore                	       0x19c9056c0 WTF::RunLoop::performWork(void*) + 36
23  CoreFoundation                	       0x180ac39dc __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 28
24  CoreFoundation                	       0x180ac3970 __CFRunLoopDoSource0 + 176
25  CoreFoundation                	       0x180ac36e0 __CFRunLoopDoSources0 + 244
26  CoreFoundation                	       0x180ac22d0 __CFRunLoopRun + 828
27  CoreFoundation                	       0x180ac193c CFRunLoopRunSpecific + 608
28  HIToolbox                     	       0x18b08a448 RunCurrentEventLoopInMode + 292
29  HIToolbox                     	       0x18b08a284 ReceiveNextEventCommon + 648
30  HIToolbox                     	       0x18b089fdc _BlockUntilNextEventMatchingListInModeWithFilter + 76
31  AppKit                        	       0x1842a0ed0 _DPSNextEvent + 660
32  AppKit                        	       0x184a8beec -[NSApplication(NSEventRouting) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 716
33  AppKit                        	       0x18429437c -[NSApplication run] + 476
34  AppxxUI                      	       0x10154afb4 _$LT$$LP$$RP$$u20$as$u20$objc..message..MessageArguments$GT$::invoke::h90d86f8906fbe79f + 64
35  AppxxUI                      	       0x10154fc60 objc::message::platform::send_unverified::_$u7b$$u7b$closure$u7d$$u7d$::h397e840600d826d4 + 52
36  AppxxUI                      	       0x10154eac0 objc_exception::try::_$u7b$$u7b$closure$u7d$$u7d$::hf8ce65cdda7b1b2c + 44
37  AppxxUI                      	       0x10154d2ac objc_exception::try_no_ret::try_objc_execute_closure::h51e4c497c55dbaf9 + 64
38  AppxxUI                      	       0x101557700 RustObjCExceptionTryCatch + 36
39  AppxxUI                      	       0x10154c014 objc_exception::try_no_ret::h09678062ddfb0f4d + 168
40  AppxxUI                      	       0x10154d634 objc_exception::try::h127e09b5b41e3005 + 72
41  AppxxUI                      	       0x10154a984 objc::exception::try::h971f627b2abfa39a + 12
42  AppxxUI                      	       0x10154f70c objc::message::platform::send_unverified::hff6f146fd5a4d4d4 + 136
43  AppxxUI                      	       0x10104d748 objc::message::send_message::hc3eb05ae4bc0a897 + 20 (mod.rs:178) [inlined]
44  AppxxUI                      	       0x10104d748 tao::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run_return::h64a298c16f2e2048 + 1068 (event_loop.rs:193)
45  AppxxUI                      	       0x10104e600 tao::platform_impl::platform::event_loop::EventLoop$LT$T$GT$::run::ha3e61b197a169d83 + 20 (event_loop.rs:160)
46  AppxxUI                      	       0x101019cf0 tao::event_loop::EventLoop$LT$T$GT$::run::hdc4c0825a2f10097 + 60 (event_loop.rs:179)
47  AppxxUI                      	       0x10115979c _$LT$tauri_runtime_wry..Wry$LT$T$GT$$u20$as$u20$tauri_runtime..Runtime$LT$T$GT$$GT$::run::h4f90e55e141d9829 + 616 (lib.rs:2299)
48  AppxxUI                      	       0x1011282c4 tauri::app::App$LT$R$GT$::run::h5964e2dfabe6a3fe + 280 (app.rs:868)
49  AppxxUI                      	       0x1011285fc tauri::app::Builder$LT$R$GT$::run::he1a9da6896c73736 + 120 (app.rs:1722)
50  AppxxUI                      	       0x100f23430 botter_ui::main::h33b9f24d38277bca + 6440 (main.rs:13)
51  AppxxUI                      	       0x101027998 core::ops::function::FnOnce::call_once::h75ed1e808aa9b79d + 20 (function.rs:250)
52  AppxxUI                      	       0x1011aa2a8 std::sys_common::backtrace::__rust_begin_short_backtrace::h014a9215cb3b3914 + 24 (backtrace.rs:154)
53  AppxxUI                      	       0x1010e8170 std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h3b4255279a306635 + 28 (rt.rs:167)
54  AppxxUI                      	       0x101a35428 std::rt::lang_start_internal::h5b246d44f1526226 + 648
55  AppxxUI                      	       0x1010e813c std::rt::lang_start::h84d9ce45efaec484 + 84 (rt.rs:166)
56  AppxxUI                      	       0x100f24574 main + 36
57  dyld                          	       0x1806650e0 start + 2360

Thread 1:: JavaScriptCore libpas scavenger
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   JavaScriptCore                	       0x19dcef438 scavenger_thread_main + 1316
3   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
4   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 2:: com.apple.coreanimation.render-server
0   libsystem_kernel.dylib        	       0x1809a5874 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1809b7cf0 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1809ae4b0 mach_msg_overwrite + 476
3   libsystem_kernel.dylib        	       0x1809a5bf8 mach_msg + 24
4   QuartzCore                    	       0x188bdf9bc CA::Render::Server::server_thread(void*) + 544
5   QuartzCore                    	       0x188bdf78c thread_fun(void*) + 32
6   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
7   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 3:: WebCore: Scrolling
0   libsystem_kernel.dylib        	       0x1809a5874 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1809b7cf0 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1809ae4b0 mach_msg_overwrite + 476
3   libsystem_kernel.dylib        	       0x1809a5bf8 mach_msg + 24
4   CoreFoundation                	       0x180ac3b84 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x180ac244c __CFRunLoopRun + 1208
6   CoreFoundation                	       0x180ac193c CFRunLoopRunSpecific + 608
7   CoreFoundation                	       0x180b3f6d4 CFRunLoopRun + 64
8   JavaScriptCore                	       0x19c9051bc WTF::Detail::CallableWrapper<WTF::RunLoop::create(char const*, WTF::ThreadType, WTF::Thread::QOS)::$_1, void>::call() + 52
9   JavaScriptCore                	       0x19c921548 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 244
10  JavaScriptCore                	       0x19c7805e4 WTF::wtfThreadEntryPoint(void*) + 16
11  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
12  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 4:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	       0x1809a5874 mach_msg2_trap + 8
1   libsystem_kernel.dylib        	       0x1809b7cf0 mach_msg2_internal + 80
2   libsystem_kernel.dylib        	       0x1809ae4b0 mach_msg_overwrite + 476
3   libsystem_kernel.dylib        	       0x1809a5bf8 mach_msg + 24
4   CoreFoundation                	       0x180ac3b84 __CFRunLoopServiceMachPort + 160
5   CoreFoundation                	       0x180ac244c __CFRunLoopRun + 1208
6   CoreFoundation                	       0x180ac193c CFRunLoopRunSpecific + 608
7   AppKit                        	       0x1843ca160 _NSEventThread + 144
8   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
9   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 5:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809ab9c0 kevent + 8
1   AppxxUI                      	       0x101945690 mio::sys::unix::selector::kqueue::Selector::select::h6f827d57c4bacfe5 + 220
2   AppxxUI                      	       0x10194417c mio::poll::Poll::poll::hb44a66460e58099c + 80
3   AppxxUI                      	       0x1018ff0b8 tokio::runtime::io::driver::Driver::turn::hf1a65261e03cfd30 + 108
4   AppxxUI                      	       0x1018fedec tokio::runtime::io::driver::Driver::park::h0f6691d5aa48620b + 88
5   AppxxUI                      	       0x101924ec0 tokio::runtime::driver::IoStack::park::h3510708a5eb6771a + 96
6   AppxxUI                      	       0x1019396bc tokio::runtime::time::Driver::park_internal::hc32289f351f49b20 + 464
7   AppxxUI                      	       0x10193940c tokio::runtime::time::Driver::park::hf1383c457329edeb + 52
8   AppxxUI                      	       0x10192534c tokio::runtime::driver::TimeDriver::park::h9b65ad9868fd98be + 76
9   AppxxUI                      	       0x1019248e0 tokio::runtime::driver::Driver::park::h0f05cef7609841dc + 32
10  AppxxUI                      	       0x10192cfe0 tokio::runtime::scheduler::multi_thread::park::Inner::park_driver::h3080f8004cc59de8 + 124
11  AppxxUI                      	       0x10192cb5c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 264
12  AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
13  AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
14  AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
15  AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
16  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
17  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
18  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
19  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
20  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
21  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
22  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
23  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
24  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
25  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
26  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
27  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
28  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
29  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
30  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
31  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
32  AppxxUI                      	       0x1018e4398 __rust_try + 32
33  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
34  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
35  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
36  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
37  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
38  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
39  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
40  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
41  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
42  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
43  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
44  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
45  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
46  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
47  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
48  AppxxUI                      	       0x1018e4398 __rust_try + 32
49  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
50  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
51  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
52  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
53  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
54  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 6:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 7:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 8:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 9:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 10:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 11:: tokio-runtime-worker
0   AppxxUI                      	       0x1019ff880 _$LT$core..slice..iter..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hb80aa45e1fa60493 + 160
1   AppxxUI                      	       0x1019fc9c8 _$LT$core..iter..adapters..enumerate..Enumerate$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h2dc01f79bc97d0f1 + 28
2   AppxxUI                      	       0x10157a788 serde_json::ser::format_escaped_str_contents::h6227334fc933cc3e + 160
3   AppxxUI                      	       0x10157a638 serde_json::ser::format_escaped_str::h248ac9cf6ce2ad8c + 128
4   AppxxUI                      	       0x10157f41c _$LT$$RF$mut$u20$serde_json..ser..Serializer$LT$W$C$F$GT$$u20$as$u20$serde..ser..Serializer$GT$::serialize_str::hb50b50faae349d29 + 56
5   AppxxUI                      	       0x10125fb34 _$LT$serde_json..ser..MapKeySerializer$LT$W$C$F$GT$$u20$as$u20$serde..ser..Serializer$GT$::serialize_str::hd592e47294a8b1ee + 36
6   AppxxUI                      	       0x10134625c serde::ser::impls::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$alloc..string..String$GT$::serialize::h63045edfd6ff3d1f + 104
7   AppxxUI                      	       0x10125f160 _$LT$serde_json..ser..Compound$LT$W$C$F$GT$$u20$as$u20$serde..ser..SerializeMap$GT$::serialize_key::hb455d931ea829b4d + 244
8   AppxxUI                      	       0x10125c224 serde::ser::SerializeMap::serialize_entry::h6dd07528ee637f20 + 44
9   AppxxUI                      	       0x101289904 serde_json::value::ser::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$serde_json..value..Value$GT$::serialize::hd6f3a6c5d0fae570 + 796
10  AppxxUI                      	       0x10129c724 serde::ser::impls::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$$RF$T$GT$::serialize::h7a1bc77d51d13797 + 36
11  AppxxUI                      	       0x10125f72c _$LT$serde_json..ser..Compound$LT$W$C$F$GT$$u20$as$u20$serde..ser..SerializeSeq$GT$::serialize_element::hf7640f1e8f8adf80 + 236
12  AppxxUI                      	       0x1012c17a0 serde::ser::Serializer::collect_seq::_$u7b$$u7b$closure$u7d$$u7d$::h37f8d0ca60b2d2bb + 40
13  AppxxUI                      	       0x10132ce50 core::iter::traits::iterator::Iterator::try_for_each::call::_$u7b$$u7b$closure$u7d$$u7d$::hcc22c739440f8d86 + 40
14  AppxxUI                      	       0x1012fdf44 core::iter::traits::iterator::Iterator::try_fold::hb5a6aa2faf176683 + 156
15  AppxxUI                      	       0x1012fd4c8 core::iter::traits::iterator::Iterator::try_for_each::h473f4a86c59367c5 + 40
16  AppxxUI                      	       0x10125bef4 serde::ser::Serializer::collect_seq::h6dd66b0f91921e1b + 316
17  AppxxUI                      	       0x101284994 serde::ser::impls::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::serialize::h0dcaf304a4bc6f0b + 44
18  AppxxUI                      	       0x1012896ec serde_json::value::ser::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$serde_json..value..Value$GT$::serialize::hd6f3a6c5d0fae570 + 260
19  AppxxUI                      	       0x10129c724 serde::ser::impls::_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$$RF$T$GT$::serialize::h7a1bc77d51d13797 + 36
20  AppxxUI                      	       0x1011d869c serde_json::ser::to_writer::h4f9a20ba43de007c + 52 (ser.rs:2145)
21  AppxxUI                      	       0x1011d71dc serde_json::ser::to_vec::h79f667355631c0a7 + 56 (ser.rs:2180)
22  AppxxUI                      	       0x1011d7ffc serde_json::ser::to_string::h8db5edeca060eadb + 36 (ser.rs:2211)
23  AppxxUI                      	       0x10113d6d4 tauri::endpoints::event::Cmd::emit::_$u7b$$u7b$closure$u7d$$u7d$::hc3a5c21b29e69009 + 40 (event.rs:138)
24  AppxxUI                      	       0x10121c8e8 core::option::Option$LT$T$GT$::and_then::hb80e47575c3b7f1e + 108 (option.rs:1411)
25  AppxxUI                      	       0x10113d2f8 tauri::endpoints::event::Cmd::emit::h1570f8412517be68 + 140 (event.rs:137)
26  AppxxUI                      	       0x10113cf44 tauri::endpoints::event::Cmd::run::h77329d25e6f3dffe + 532 (event.rs:60)
27  AppxxUI                      	       0x10101d834 tauri::endpoints::Module::run::_$u7b$$u7b$closure$u7d$$u7d$::h7b5095df307c7b2d + 148 (endpoints.rs:163)
28  AppxxUI                      	       0x101200ab0 tauri::hooks::InvokeResolver$LT$R$GT$::return_task::_$u7b$$u7b$closure$u7d$$u7d$::ha221de6c9854928b + 436 (hooks.rs:266)
29  AppxxUI                      	       0x101203928 tauri::hooks::InvokeResolver$LT$R$GT$::respond_async::_$u7b$$u7b$closure$u7d$$u7d$::hb91786afdab2c49b + 440 (hooks.rs:187)
30  AppxxUI                      	       0x1011e19fc _$LT$core..pin..Pin$LT$P$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hd37775feb958096b + 60 (future.rs:125)
31  AppxxUI                      	       0x100fdd948 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h2c7d10fa86811edc + 152 (core.rs:328)
32  AppxxUI                      	       0x100fda8a8 tokio::loom::std::unsafe_cell::UnsafeCell$LT$T$GT$::with_mut::hd85dd98a3684324c + 36 (unsafe_cell.rs:16) [inlined]
33  AppxxUI                      	       0x100fda8a8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h50f74063972eabcc + 104 (core.rs:317)
34  AppxxUI                      	       0x1011b7558 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::he0e76141e5034937 + 52 (harness.rs:485)
35  AppxxUI                      	       0x10115e8c4 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h2b0e304d086ddfff + 32 (unwind_safe.rs:272)
36  AppxxUI                      	       0x1010d004c std::panicking::try::do_call::h6f703a1194bbe7a6 + 72 (panicking.rs:552)
37  AppxxUI                      	       0x1010dc0c0 __rust_try + 32
38  AppxxUI                      	       0x1010c75cc std::panicking::try::h7472e7a53fafaaa3 + 88 (panicking.rs:516)
39  AppxxUI                      	       0x10110c004 std::panic::catch_unwind::hfc8975288e6f8b40 + 32 (panic.rs:142)
40  AppxxUI                      	       0x1011b13c0 tokio::runtime::task::harness::poll_future::h986ae6760cc98954 + 84 (harness.rs:473)
41  AppxxUI                      	       0x1011b9d44 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h45d4e84b5a6da256 + 152 (harness.rs:208)
42  AppxxUI                      	       0x1011c6590 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hfa274d97b9b0375a + 28 (harness.rs:153)
43  AppxxUI                      	       0x10112f8e8 tokio::runtime::task::raw::poll::hc4569e6a01d1e2bd + 36 (raw.rs:271)
44  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
45  AppxxUI                      	       0x10190e2e8 tokio::runtime::task::LocalNotified$LT$S$GT$::run::h1316cc6589b4779c + 44
46  AppxxUI                      	       0x1019088e0 tokio::runtime::scheduler::multi_thread::worker::Context::run_task::_$u7b$$u7b$closure$u7d$$u7d$::h6448d4317db5f889 + 52
47  AppxxUI                      	       0x1019087c4 tokio::runtime::scheduler::multi_thread::worker::Context::run_task::haf03932928a02a97 + 748
48  AppxxUI                      	       0x1019080d0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 540
49  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
50  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
51  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
52  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
53  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
54  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
55  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
56  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
57  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
58  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
59  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
60  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
61  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
62  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
63  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
64  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
65  AppxxUI                      	       0x1018e4398 __rust_try + 32
66  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
67  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
68  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
69  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
70  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
71  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
72  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
73  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
74  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
75  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
76  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
77  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
78  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
79  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
80  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
81  AppxxUI                      	       0x1018e4398 __rust_try + 32
82  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
83  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
84  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
85  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
86  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
87  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 12:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 13:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 14:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 15:: tokio-runtime-worker
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   AppxxUI                      	       0x1018f8fd8 std::sys::unix::locks::pthread_condvar::Condvar::wait::h8ef2a7e5ee492249 + 128
3   AppxxUI                      	       0x101900240 std::sync::condvar::Condvar::wait::ha95255b60ee980cb + 60
4   AppxxUI                      	       0x10192ccf4 tokio::runtime::scheduler::multi_thread::park::Inner::park_condvar::ha09976513dd64caf + 224
5   AppxxUI                      	       0x10192cb2c tokio::runtime::scheduler::multi_thread::park::Inner::park::h77a30f08851b9253 + 216
6   AppxxUI                      	       0x10192c770 tokio::runtime::scheduler::multi_thread::park::Parker::park::h373880fbbbb79a8c + 40
7   AppxxUI                      	       0x1019096cc tokio::runtime::scheduler::multi_thread::worker::Context::park_timeout::hb6250ad830c42f8d + 640
8   AppxxUI                      	       0x10190932c tokio::runtime::scheduler::multi_thread::worker::Context::park::h9baf406677e595de + 464
9   AppxxUI                      	       0x1019083a0 tokio::runtime::scheduler::multi_thread::worker::Context::run::h03405b6fcc450760 + 1260
10  AppxxUI                      	       0x101907df8 tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h5bafcf6f0da7ca91 + 104
11  AppxxUI                      	       0x1019147a0 tokio::runtime::context::scoped::Scoped$LT$T$GT$::set::he1a71bff9ad7c6b1 + 148
12  AppxxUI                      	       0x1018fe608 tokio::runtime::context::set_scheduler::_$u7b$$u7b$closure$u7d$$u7d$::h1ee8c3e3cb73d31b + 40
13  AppxxUI                      	       0x10190261c std::thread::local::LocalKey$LT$T$GT$::try_with::hd975df806b2e1133 + 316
14  AppxxUI                      	       0x101900654 std::thread::local::LocalKey$LT$T$GT$::with::h76922d184bdaa1b0 + 24
15  AppxxUI                      	       0x1018fe5d4 tokio::runtime::context::set_scheduler::hbd580a309f0909c5 + 68
16  AppxxUI                      	       0x101907d1c tokio::runtime::scheduler::multi_thread::worker::run::_$u7b$$u7b$closure$u7d$$u7d$::hb3e884b64d003b14 + 280
17  AppxxUI                      	       0x1019387a0 tokio::runtime::context::runtime::enter_runtime::h746743a0ed7b51b4 + 236
18  AppxxUI                      	       0x101907b54 tokio::runtime::scheduler::multi_thread::worker::run::h33e38fa04297d4a7 + 368
19  AppxxUI                      	       0x1019079d8 tokio::runtime::scheduler::multi_thread::worker::Launch::launch::_$u7b$$u7b$closure$u7d$$u7d$::he4221856043d363c + 24
20  AppxxUI                      	       0x1018f8ca0 _$LT$tokio..runtime..blocking..task..BlockingTask$LT$T$GT$$u20$as$u20$core..future..future..Future$GT$::poll::hb7b7dc1a1283258d + 136
21  AppxxUI                      	       0x101918fc4 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hc45bce553ec15555 + 152
22  AppxxUI                      	       0x1019185d8 tokio::runtime::task::core::Core$LT$T$C$S$GT$::poll::h7500cc6d708746d7 + 104
23  AppxxUI                      	       0x1018dedc0 tokio::runtime::task::harness::poll_future::_$u7b$$u7b$closure$u7d$$u7d$::h778d15dee9b5da02 + 52
24  AppxxUI                      	       0x10191610c _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::he92de846bfa1d451 + 32
25  AppxxUI                      	       0x1018e114c std::panicking::try::do_call::h541314e53532f422 + 72
26  AppxxUI                      	       0x1018e4398 __rust_try + 32
27  AppxxUI                      	       0x1018e0ac8 std::panicking::try::hf3d3d06dbf5b9937 + 88
28  AppxxUI                      	       0x10190ba64 std::panic::catch_unwind::h0fe008dc138bc62a + 32
29  AppxxUI                      	       0x1018ddddc tokio::runtime::task::harness::poll_future::h32943c4bcbfdcd8e + 84
30  AppxxUI                      	       0x1018db38c tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll_inner::h55d3799c75fb20ec + 152
31  AppxxUI                      	       0x1018dafe0 tokio::runtime::task::harness::Harness$LT$T$C$S$GT$::poll::hd1997d1f3582fc7e + 28
32  AppxxUI                      	       0x10191bf50 tokio::runtime::task::raw::poll::hb7f6901dc4012890 + 36
33  AppxxUI                      	       0x10191bb6c tokio::runtime::task::raw::RawTask::poll::h2c74020f820d0357 + 52
34  AppxxUI                      	       0x10190e3ac tokio::runtime::task::UnownedTask$LT$S$GT$::run::h29c47d38cbd6afc0 + 64
35  AppxxUI                      	       0x101939ed4 tokio::runtime::blocking::pool::Task::run::h8ee68493e7b364d8 + 32
36  AppxxUI                      	       0x10193cc04 tokio::runtime::blocking::pool::Inner::run::he0053f54b12ea11c + 456
37  AppxxUI                      	       0x10193c9a4 tokio::runtime::blocking::pool::Spawner::spawn_thread::_$u7b$$u7b$closure$u7d$$u7d$::h1b506166372b567a + 144
38  AppxxUI                      	       0x1018f8f20 std::sys_common::backtrace::__rust_begin_short_backtrace::hadf718aae8c63c05 + 16
39  AppxxUI                      	       0x10190370c std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h8ef669e7caa5ba76 + 40
40  AppxxUI                      	       0x101915ec8 _$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h72b8938df8471a44 + 40
41  AppxxUI                      	       0x1018e1380 std::panicking::try::do_call::h8ca17301fe1609fc + 72
42  AppxxUI                      	       0x1018e4398 __rust_try + 32
43  AppxxUI                      	       0x1018dfa38 std::panicking::try::h4ffde5a46eeb586b + 76
44  AppxxUI                      	       0x101903590 std::thread::Builder::spawn_unchecked_::_$u7b$$u7b$closure$u7d$$u7d$::h21a106fb73620b3d + 416
45  AppxxUI                      	       0x1018c82c0 core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::hcfbfb0aefed5d491 + 24
46  AppxxUI                      	       0x101a44ad8 std::sys::unix::thread::Thread::new::thread_start::h9b6324e2391e6ebb + 48
47  libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
48  libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 16:: Heap Helper Thread
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   JavaScriptCore                	       0x19c924370 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 240
3   JavaScriptCore                	       0x19c8fe8bc WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2008
4   JavaScriptCore                	       0x19c8c4d84 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 460
5   JavaScriptCore                	       0x19c921548 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 244
6   JavaScriptCore                	       0x19c7805e4 WTF::wtfThreadEntryPoint(void*) + 16
7   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
8   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 17:: Heap Helper Thread
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e65fc _pthread_cond_wait + 1228
2   JavaScriptCore                	       0x19c924370 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 240
3   JavaScriptCore                	       0x19c8fe8bc WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2008
4   JavaScriptCore                	       0x19c8c4d84 WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 460
5   JavaScriptCore                	       0x19c921548 WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 244
6   JavaScriptCore                	       0x19c7805e4 WTF::wtfThreadEntryPoint(void*) + 16
7   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
8   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 18:
0   libsystem_pthread.dylib       	       0x1809e0e28 start_wqthread + 0

Thread 19:
0   libsystem_pthread.dylib       	       0x1809e0e28 start_wqthread + 0

Thread 20:
0   libsystem_pthread.dylib       	       0x1809e0e28 start_wqthread + 0

Thread 21:: CVDisplayLink
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e6628 _pthread_cond_wait + 1272
2   CoreVideo                     	       0x1893c3528 CVDisplayLink::waitUntil(unsigned long long) + 328
3   CoreVideo                     	       0x1893c25f4 CVDisplayLink::runIOThread() + 504
4   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
5   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8

Thread 22:: CVDisplayLink
0   libsystem_kernel.dylib        	       0x1809a906c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	       0x1809e6628 _pthread_cond_wait + 1272
2   CoreVideo                     	       0x1893c3528 CVDisplayLink::waitUntil(unsigned long long) + 328
3   CoreVideo                     	       0x1893c25f4 CVDisplayLink::runIOThread() + 504
4   libsystem_pthread.dylib       	       0x1809e6034 _pthread_start + 136
5   libsystem_pthread.dylib       	       0x1809e0e3c thread_start + 8


Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x000000013260b370   x1: 0x000000013260b900   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000000000000   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x0000000000000000
    x8: 0x0000000000000001   x9: 0x0000000000000001  x10: 0x000000013260bb00  x11: 0x000000013260b900
   x12: 0x0000000000000001  x13: 0x0000000002ef6d00  x14: 0x0000000000000000  x15: 0x02ef6d0000000000
   x16: 0x02ef6d0002ef6d00  x17: 0x02ef6d0002ef6d02  x18: 0x0000000000000000  x19: 0x0000000143a9b570
   x20: 0x00000001328317a0  x21: 0x00000001140157a0  x22: 0x0000000143aa9b60  x23: 0x0000000143a189f0
   x24: 0x0000000283a2eb70  x25: 0x0000000144809418  x26: 0x0000000114018420  x27: 0x00000000211200d5
   x28: 0x0000000000000000   fp: 0x000000016ef13ab0   lr: 0x00000001013459ac
    sp: 0x000000016ef13a50   pc: 0x0000000101345a18 cpsr: 0x60001000
   far: 0x0000000000000000  esr: 0xf2000001 (Breakpoint) brk 1

Binary Images:
       0x140a34000 -        0x140a53fff com.apple.security.csparser (3.0) <01d0c1e0-2c8e-3ba5-82d1-e0e8eef9bd60> /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
       0x140000000 -        0x1408dbfff com.apple.audio.codecs.Components (7.0) <d4d6ca9f-abef-319f-aca0-1fbdbf4df379> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
       0x10353c000 -        0x1035a7fff com.apple.AppleMetalOpenGLRenderer (1.0) <72c22333-9dbf-3856-99f1-716fc2b10726> /System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer
       0x1032e4000 -        0x1032effff libobjc-trampolines.dylib (*) <39d1d8d0-6996-3bd4-8ce9-39512bb65c82> /usr/lib/libobjc-trampolines.dylib
       0x100ee0000 -        0x10216ffff AppxxUI (*) <566a0d5d-2774-3396-af95-d5c67f9ee44b> /Users/USER/Desktop/*/AppxxUI
       0x1a3629000 -        0x1a432cfff com.apple.WebKit (19617) <4e51d352-968e-38b1-a92e-0730ed2ccf7c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
       0x19c776000 -        0x19de4df9f com.apple.JavaScriptCore (19617) <0f510842-6145-3b1f-9e00-67c55b665dc4> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
       0x180a46000 -        0x180f1dfff com.apple.CoreFoundation (6.9) <6030a572-b731-3f46-b3a0-2598fbb98c9a> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
       0x18b05a000 -        0x18b319fff com.apple.HIToolbox (2.1.1) <db8a8b63-7bfb-384b-b0a9-c124675fbb39> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
       0x184267000 -        0x185592fff com.apple.AppKit (6.9) <873e5da0-bc01-399b-bf60-4066922d6a17> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x18065f000 -        0x1806f3387 dyld (*) <50746901-db0e-39a0-b391-baaa6b82ad0f> /usr/lib/dyld
               0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
       0x1809a4000 -        0x1809defff libsystem_kernel.dylib (*) <a7228b5d-53c7-3fe9-84e4-2a8c04dcf051> /usr/lib/system/libsystem_kernel.dylib
       0x1809df000 -        0x1809ebff3 libsystem_pthread.dylib (*) <449bbad3-f7ef-371d-9a59-fd4ffa78289b> /usr/lib/system/libsystem_pthread.dylib
       0x188b98000 -        0x188f60fff com.apple.QuartzCore (1.11) <fdf04ced-461a-3e20-8e8e-22a69c0b1a5f> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
       0x180a12000 -        0x180a18ffb libsystem_platform.dylib (*) <785bf993-f73b-36c1-a5ba-ccce6c6da879> /usr/lib/system/libsystem_platform.dylib
       0x1893c0000 -        0x18941dfff com.apple.CoreVideo (1.8) <9cd650ce-26fe-3a73-9855-6b3404235ad5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: needs triage This issue needs to triage, applied to new issues type: bug
Projects
None yet
Development

No branches or pull requests

2 participants