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

add possibility of excluding styles in useMarkdownStyles #41731

Conversation

robertKozik
Copy link
Contributor

@robertKozik robertKozik commented May 7, 2024

Details

This PR adds additional argument to useMarkdownStyle which can be used to pass which styles should be disabled in particular context.
We have to iterate over every object key and change it to undefined because in case of passing empty object instead, default styling from react-native-live-markdown would kick in.

Fixed Issues

$ #41597
PROPOSAL: N/A

Tests

  1. Enter to group chat from group policy
  2. Try typing report mention (for example #room-name)
  3. Verify that report mention is styled
  4. Enter to 1:1 chat which is not part of group policy
  5. Try typing report mention (for example #room-name)
  6. Verify that report mention is not styled
  • Verify that no errors appear in the JS console

Offline tests

Same as test steps

QA Steps

Same as test steps

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I verified the translation was requested/reviewed in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native Screenshot 2024-05-10 at 00 26 05
Android: mWeb Chrome Screenshot 2024-05-10 at 00 26 15
iOS: Native Screenshot 2024-05-10 at 00 26 41
iOS: mWeb Safari Screenshot 2024-05-10 at 00 26 37
MacOS: Chrome / Safari Screenshot 2024-05-10 at 00 25 42
MacOS: Desktop Screenshot 2024-05-10 at 00 25 52

@rlinoz rlinoz self-requested a review May 7, 2024 13:51
@robertKozik robertKozik marked this pull request as ready for review May 9, 2024 22:29
@robertKozik robertKozik requested a review from a team as a code owner May 9, 2024 22:29
@melvin-bot melvin-bot bot requested review from mollfpr and removed request for a team May 9, 2024 22:29
Copy link

melvin-bot bot commented May 9, 2024

@mollfpr @ One of you needs to copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

rlinoz
rlinoz previously approved these changes May 10, 2024
@mollfpr
Copy link
Contributor

mollfpr commented May 11, 2024

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that the left part of a conditional rendering a React component is a boolean and NOT a string, e.g. myBool && <MyComponent />.
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.js or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
41731.mWeb-Chrome.mp4
iOS: Native
41731.iOS.mov
iOS: mWeb Safari
41731.mWeb-Safari.mov
MacOS: Chrome / Safari
41731.Web.mp4
MacOS: Desktop
41731.Desktop.mp4

@mollfpr
Copy link
Contributor

mollfpr commented May 11, 2024

@robertKozik The app is crashed on iOS and Android when typing on the 1:1 chat.

iOS crashed

Translated Report (Full Report Below)

Incident Identifier: 9AE09EB4-FA54-4CAC-A852-55007C1F95B9
CrashReporter Key: 3D645DDE-D230-9353-9C6B-CC945CBDB033
Hardware Model: MacBookPro18,3
Process: New Expensify Dev [15005]
Path: /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/New Expensify Dev
Identifier: com.expensify.chat.dev
Version: 1.4.71 (1.4.71.0)
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd_sim [72939]
Coalition: com.apple.CoreSimulator.SimDevice.66845467-EFDE-47A8-BD05-D4B32C58A9A9 [291442]
Responsible Process: SimulatorTrampoline [79221]

Date/Time: 2024-05-11 22:01:19.3596 +0700
Launch Time: 2024-05-11 21:57:38.4581 +0700
OS Version: macOS 14.1.1 (23B81)
Release Type: User
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Termination Reason: SIGNAL 6 Abort trap: 6
Terminating Process: New Expensify Dev [15005]

Triggered by Thread: 0

Last Exception Backtrace:
0 CoreFoundation 0x18049111c __exceptionPreprocess + 160
1 libobjc.A.dylib 0x18008412c objc_exception_throw + 56
2 Foundation 0x180ccf298 -[NSConcreteMutableAttributedString attribute:atIndex:longestEffectiveRange:inRange:] + 0
3 New Expensify Dev 0x1059a65a8 __49-[RCTMarkdownUtils parseMarkdown:withAttributes:]_block_invoke + 4004 (RCTMarkdownUtils.mm:112)
4 CoreFoundation 0x1803f5cd8 NSARRAY_IS_CALLING_OUT_TO_A_BLOCK + 16
5 CoreFoundation 0x180376bbc -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 292
6 New Expensify Dev 0x1059a5368 -[RCTMarkdownUtils parseMarkdown:withAttributes:] + 1756 (RCTMarkdownUtils.mm:51)
7 New Expensify Dev 0x1059a7624 -[RCTUITextView(Markdown) markdown_textDidChange] + 200 (RCTUITextView+Markdown.mm:20)
8 CoreFoundation 0x1803c1878 CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER + 140
9 CoreFoundation 0x1803c179c ___CFXRegistrationPost_block_invoke + 84
10 CoreFoundation 0x1803c0c8c _CFXRegistrationPost + 404
11 CoreFoundation 0x1803c0668 _CFXNotificationPost + 688
12 Foundation 0x180d84cb4 -[NSNotificationCenter postNotificationName:object:userInfo:] + 88
13 UIKitCore 0x18564f98c -[UITextView textInputDidChange:] + 216
14 UIKitCore 0x1856285ac -[UITextInputController _sendDelegateChangeNotificationsForText:selection:] + 148
15 UIKit 0x1be79be74 -[UITextInputControllerAccessibility _sendDelegateChangeNotificationsForText:selection:] + 108
16 UIKitCore 0x185629dec -[UITextInputController _insertText:fromKeyboard:] + 692
17 UIKitCore 0x18562abb8 -[UITextInputController insertText:] + 460
18 UIKitCore 0x18564caa4 -[UITextView insertText:] + 56
19 UIKitCore 0x184da62dc -[UIKBInputDelegateManager insertText:updateInputSource:] + 328
20 UIKit 0x1be698344 -[UIKBInputDelegateManagerAccessibility insertText:updateInputSource:] + 108
21 UIKitCore 0x184da3cf4 -[UIKBInputDelegateManager insertText:] + 88
22 UIKitCore 0x1850fab0c -[UIKeyboardImpl performKeyboardOutput:checkingDelegate:forwardToRemoteInputSource:] + 3900
23 UIKit 0x1be709eb4 -[UIKeyboardImplAccessibility performKeyboardOutput:checkingDelegate:forwardToRemoteInputSource:] + 156
24 UIKitCore 0x1850f992c -[UIKeyboardImpl performKeyboardOutput:forwardToRemoteInputSource:] + 28
25 UIKitCore 0x1850f98f8 -[UIKeyboardImpl performKeyboardOutput:] + 88
26 UIKitCore 0x185122568 -[UIKeyboardImpl _performKeyboardOutput:respectingForwardingDelegate:] + 240
27 UIKitCore 0x1850f8114 __55-[UIKeyboardImpl handleKeyboardInput:executionContext:]_block_invoke.1068 + 160
28 UIKitCore 0x1850d92c4 -[UIKeyboardImpl performOperations:withTextInputSource:] + 48
29 UIKitCore 0x1850f7e98 __55-[UIKeyboardImpl handleKeyboardInput:executionContext:]_block_invoke_2 + 752
30 UIKitCore 0x18513ebec -[UIKeyboardTaskEntry execute:] + 200
31 UIKitCore 0x18513d898 -[UIKeyboardTaskQueue continueExecutionOnMainThread] + 304
32 Foundation 0x180df41d4 __NSThreadPerformPerform + 124
33 CoreFoundation 0x1803f1f18 CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 24
34 CoreFoundation 0x1803f1e60 __CFRunLoopDoSource0 + 172
35 CoreFoundation 0x1803f15d0 __CFRunLoopDoSources0 + 232
36 CoreFoundation 0x1803ebcb8 __CFRunLoopRun + 768
37 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
38 GraphicsServices 0x18e9fbae4 GSEventRunModal + 160
39 UIKitCore 0x1852f02e4 -[UIApplication _run] + 868
40 UIKitCore 0x1852f3f5c UIApplicationMain + 124
41 New Expensify Dev 0x104cf4614 main + 96 (main.m:7)
42 dyld_sim 0x10cad1544 start_sim + 20
43 dyld 0x10c4ba0e0 start + 2360
44 ??? 0xcd23800000000000 ???

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x10d364a4c __pthread_kill + 8
1 libsystem_pthread.dylib 0x10ca071d0 pthread_kill + 256
2 libsystem_c.dylib 0x180160648 __abort + 112
3 libsystem_c.dylib 0x1801605d8 abort + 116
4 libc++abi.dylib 0x18028ec78 abort_message + 128
5 libc++abi.dylib 0x180280198 demangling_terminate_handler() + 300
6 libobjc.A.dylib 0x18005fbf0 _objc_terminate() + 124
7 New Expensify Dev 0x10579c850 FIRCLSTerminateHandler() + 436 (FIRCLSException.mm:335)
8 libc++abi.dylib 0x18028e150 std::__terminate(void (*)()) + 12
9 libc++abi.dylib 0x180290d64 __cxa_rethrow + 144
10 libobjc.A.dylib 0x1800842c0 objc_exception_rethrow + 40
11 CoreFoundation 0x1803eb654 CFRunLoopRunSpecific + 748
12 GraphicsServices 0x18e9fbae4 GSEventRunModal + 160
13 UIKitCore 0x1852f02e4 -[UIApplication _run] + 868
14 UIKitCore 0x1852f3f5c UIApplicationMain + 124
15 New Expensify Dev 0x104cf4614 main + 96 (main.m:7)
16 dyld_sim 0x10cad1544 start_sim + 20
17 dyld 0x10c4ba0e0 start + 2360

Thread 1:: com.apple.uikit.eventfetch-thread
0 libsystem_kernel.dylib 0x10d35cc10 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x10d36dda4 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x10d364e34 mach_msg_overwrite + 532
3 libsystem_kernel.dylib 0x10d35cf88 mach_msg + 20
4 CoreFoundation 0x1803f1754 __CFRunLoopServiceMachPort + 156
5 CoreFoundation 0x1803ebe34 __CFRunLoopRun + 1148
6 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
7 Foundation 0x180dcd68c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8 Foundation 0x180dcd8b0 -[NSRunLoop(NSRunLoop) runUntilDate:] + 60
9 UIKitCore 0x185393b88 -[UIEventFetcher threadMain] + 404
10 Foundation 0x180df3e70 NSThread__start + 720
11 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
12 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 2:: com.google.firebase.crashlytics.MachExceptionServer
0 libsystem_kernel.dylib 0x10d35cc10 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x10d36dda4 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x10d364e34 mach_msg_overwrite + 532
3 libsystem_kernel.dylib 0x10d35cf88 mach_msg + 20
4 New Expensify Dev 0x1057a9fc0 FIRCLSMachExceptionReadMessage + 80 (FIRCLSMachException.c:194)
5 New Expensify Dev 0x1057a9ef8 FIRCLSMachExceptionServer + 52 (FIRCLSMachException.c:170)
6 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
7 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 3:: com.facebook.react.JavaScript
0 hermes 0x10eb6423c hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 21744
1 hermes 0x10eb5ed18 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132
2 hermes 0x10eb4593c hermes::vm::JSFunction::_callImpl(hermes::vm::Handlehermes::vm::Callable, hermes::vm::Runtime&) + 40
3 hermes 0x10eb451a4 hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&) + 580
4 hermes 0x10eb5f828 hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&) + 2780
5 hermes 0x10eb5ed18 hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*) + 132
6 hermes 0x10eb4593c hermes::vm::JSFunction::_callImpl(hermes::vm::Handlehermes::vm::Callable, hermes::vm::Runtime&) + 40
7 hermes 0x10eaff9c8 facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 576
8 New Expensify Dev 0x105a47b6c facebook::jsi::RuntimeDecorator<facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 76 (decorator.h:340)
9 New Expensify Dev 0x10644ef34 facebook::jsi::WithRuntimeDecorator<facebook::react::(anonymous namespace)::ReentrancyCheck, facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long) + 88 (decorator.h:753)
10 New Expensify Dev 0x1055e4674 facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const + 100 (jsi-inl.h:259)
11 New Expensify Dev 0x1055e4604 facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_listfacebook::jsi::Value) const + 112 (jsi-inl.h:264)
12 New Expensify Dev 0x10649d1d4 facebook::react::Task::execute(facebook::jsi::Runtime&, bool) + 280 (Task.cpp:42)
13 New Expensify Dev 0x10647e9fc facebook::react::RuntimeScheduler::executeTask(facebook::jsi::Runtime&, std::__1::shared_ptrfacebook::react::Task, bool) const + 180 (RuntimeScheduler.cpp:179)
14 New Expensify Dev 0x10647e784 facebook::react::RuntimeScheduler::callExpiredTasks(facebook::jsi::Runtime&) + 328 (RuntimeScheduler.cpp:120)
15 New Expensify Dev 0x106093c34 facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 228 (Scheduler.cpp:74)
16 New Expensify Dev 0x106093b44 decltype(std::declval<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&>()(std::declvalfacebook::jsi::Runtime&(), std::declval<facebook::react::EventTarget const*>(), std::declval<std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&>(), std::declvalfacebook::react::ReactEventPriority(), std::declval<facebook::react::EventPayload const&>())) std::__1::__invoke[abi:ue170006]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 72 (invoke.h:340)
17 New Expensify Dev 0x106093acc void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 64 (invoke.h:415)
18 New Expensify Dev 0x106093a80 std::__1::__function::__alloc_func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:ue170006](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 68 (function.h:193)
19 New Expensify Dev 0x106092800 std::__1::__function::__func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) + 68 (function.h:364)
20 New Expensify Dev 0x105ff38d0 std::__1::__function::__value_func<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:ue170006](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) const + 108 (function.h:518)
21 New Expensify Dev 0x105ff3320 std::__1::function<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const + 72 (function.h:1169)
22 New Expensify Dev 0x105ff313c facebook::react::EventQueueProcessor::flushEvents(facebook::jsi::Runtime&, std::__1::vector<facebook::react::RawEvent, std::__1::allocatorfacebook::react::RawEvent>&&) const + 584 (EventQueueProcessor.cpp:67)
23 New Expensify Dev 0x105feda44 facebook::react::EventQueue::flushEvents(facebook::jsi::Runtime&) const + 196 (EventQueue.cpp:97)
24 New Expensify Dev 0x105fed890 facebook::react::EventQueue::onBeat(facebook::jsi::Runtime&) const + 44 (EventQueue.cpp:80)
25 New Expensify Dev 0x105ff2dc0 facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0::operator()(facebook::jsi::Runtime&) const + 36 (EventQueue.cpp:21)
26 New Expensify Dev 0x105ff2d90 decltype(std::declval<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:340)
27 New Expensify Dev 0x105ff2d40 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:415)
28 New Expensify Dev 0x105ff2d14 std::__1::__function::__alloc_func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006 + 36 (function.h:193)
29 New Expensify Dev 0x105ff1b90 std::__1::__function::__func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:364)
30 New Expensify Dev 0x1059d0bf8 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const + 76 (function.h:518)
31 New Expensify Dev 0x1059d0ba0 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:1169)
32 New Expensify Dev 0x105f78884 facebook::react::AsynchronousEventBeat::induce() const::$_0::operator()(facebook::jsi::Runtime&) const + 136 (AsynchronousEventBeat.cpp:54)
33 New Expensify Dev 0x105f787f0 decltype(std::declval<facebook::react::AsynchronousEventBeat::induce() const::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:340)
34 New Expensify Dev 0x105f787a0 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:415)
35 New Expensify Dev 0x105f78774 std::__1::__function::__alloc_func<facebook::react::AsynchronousEventBeat::induce() const::$_0, std::__1::allocator<facebook::react::AsynchronousEventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006 + 36 (function.h:193)
36 New Expensify Dev 0x105f774b0 std::__1::__function::__func<facebook::react::AsynchronousEventBeat::induce() const::$_0, std::__1::allocator<facebook::react::AsynchronousEventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:364)
37 New Expensify Dev 0x1059d0bf8 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const + 76 (function.h:518)
38 New Expensify Dev 0x1059d0ba0 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:1169)
39 New Expensify Dev 0x106483bf8 facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0::operator()(facebook::jsi::Runtime&) const + 84 (RuntimeScheduler.cpp:33)
40 New Expensify Dev 0x106483b98 decltype(std::declval<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:340)
41 New Expensify Dev 0x106483b48 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&) + 32 (invoke.h:415)
42 New Expensify Dev 0x106483b1c std::__1::__function::__alloc_func<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0, std::__1::allocator<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006 + 36 (function.h:193)
43 New Expensify Dev 0x1064828c8 std::__1::__function::__func<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0, std::__1::allocator<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) + 36 (function.h:364)
44 New Expensify Dev 0x1059d0bf8 std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const + 76 (function.h:518)
45 New Expensify Dev 0x1059d0ba0 std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const + 32 (function.h:1169)
46 New Expensify Dev 0x1062f9014 RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()::operator()() const + 724 (RCTSurfacePresenterBridgeAdapter.mm:75)
47 New Expensify Dev 0x1062f8d34 decltype(std::declval<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&) + 24 (invoke.h:340)
48 New Expensify Dev 0x1062f8cec void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&) + 24 (invoke.h:415)
49 New Expensify Dev 0x1062f8cc8 std::__1::__function::__alloc_func<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()abi:ue170006 + 28 (function.h:193)
50 New Expensify Dev 0x1062f7a54 std::__1::__function::__func<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()() + 28 (function.h:364)
51 New Expensify Dev 0x105669b5c std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const + 68 (function.h:518)
52 New Expensify Dev 0x105669b0c std::__1::function<void ()>::operator()() const + 24 (function.h:1169)
53 New Expensify Dev 0x106417514 facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3::operator()(facebook::react::JSExecutor*) const + 28 (Instance.cpp:296)
54 New Expensify Dev 0x1064174ec decltype(std::declval<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&>()(std::declvalfacebook::react::JSExecutor*())) std::__1::__invoke[abi:ue170006]<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*>(facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*&&) + 36 (invoke.h:340)
55 New Expensify Dev 0x106417498 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*>(facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*&&) + 32 (invoke.h:415)
56 New Expensify Dev 0x10641746c std::__1::__function::__alloc_func<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3, std::__1::allocator<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3>, void (facebook::react::JSExecutor*)>::operator()abi:ue170006 + 36 (function.h:193)
57 New Expensify Dev 0x106416240 std::__1::__function::__func<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3, std::__1::allocator<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3>, void (facebook::react::JSExecutor*)>::operator()(facebook::react::JSExecutor*&&) + 36 (function.h:364)
58 New Expensify Dev 0x10643df6c std::__1::__function::__value_func<void (facebook::react::JSExecutor*)>::operator()abi:ue170006 const + 76 (function.h:518)
59 New Expensify Dev 0x10643deec std::__1::function<void (facebook::react::JSExecutor*)>::operator()(facebook::react::JSExecutor*) const + 36 (function.h:1169)
60 New Expensify Dev 0x10643deb8 facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8::operator()() const + 92 (NativeToJsBridge.cpp:308)
61 New Expensify Dev 0x10643de50 decltype(std::declval<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>(facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&) + 24 (invoke.h:340)
62 New Expensify Dev 0x10643de08 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>(facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&) + 24 (invoke.h:415)
63 New Expensify Dev 0x10643dde4 std::__1::__function::__alloc_func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8, std::__1::allocator<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8>, void ()>::operator()abi:ue170006 + 28 (function.h:193)
64 New Expensify Dev 0x10643c978 std::__1::__function::__func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8, std::__1::allocator<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8>, void ()>::operator()() + 28 (function.h:364)
65 New Expensify Dev 0x105669b5c std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const + 68 (function.h:518)
66 New Expensify Dev 0x105669b0c std::__1::function<void ()>::operator()() const + 24 (function.h:1169)
67 New Expensify Dev 0x105e6b88c facebook::react::tryAndReturnError(std::__1::function<void ()> const&) + 24 (RCTCxxUtils.mm:73)
68 New Expensify Dev 0x105e924e0 facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&) + 36 (RCTMessageThread.mm:68)
69 New Expensify Dev 0x105e96f88 facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1::operator()() const + 80 (RCTMessageThread.mm:81)
70 New Expensify Dev 0x105e96f2c decltype(std::declval<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&) + 24 (invoke.h:340)
71 New Expensify Dev 0x105e96ee4 void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&) + 24 (invoke.h:415)
72 New Expensify Dev 0x105e96ec0 std::__1::__function::__alloc_func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()abi:ue170006 + 28 (function.h:193)
73 New Expensify Dev 0x105e95bd0 std::__1::__function::__func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()() + 28 (function.h:364)
74 New Expensify Dev 0x105669b5c std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const + 68 (function.h:518)
75 New Expensify Dev 0x105669b0c std::__1::function<void ()>::operator()() const + 24 (function.h:1169)
76 New Expensify Dev 0x105e92248 invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>) + 48 (RCTMessageThread.mm:44)
77 CoreFoundation 0x1803f1ce0 CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK + 20
78 CoreFoundation 0x1803f1428 __CFRunLoopDoBlocks + 352
79 CoreFoundation 0x1803ec2f4 __CFRunLoopRun + 2364
80 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
81 New Expensify Dev 0x105e46b08 +[RCTCxxBridge runRunLoop] + 736 (RCTCxxBridge.mm:332)
82 Foundation 0x180df3e70 NSThread__start + 720
83 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
84 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 4:: hades
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 hermes 0x10ec299b4 hermes::vm::HadesGC::Executor::worker() + 544
4 hermes 0x10ec29768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44
5 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
6 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 5:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x10d35cc10 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x10d36dda4 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x10d364e34 mach_msg_overwrite + 532
3 libsystem_kernel.dylib 0x10d35cf88 mach_msg + 20
4 CoreFoundation 0x1803f1754 __CFRunLoopServiceMachPort + 156
5 CoreFoundation 0x1803ebe34 __CFRunLoopRun + 1148
6 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
7 CFNetwork 0x184467f68 0x184250000 + 2195304
8 Foundation 0x180df3e70 NSThread__start + 720
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 6:: com.apple.CFStream.LegacyThread
0 libsystem_kernel.dylib 0x10d35cc10 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x10d36dda4 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x10d364e34 mach_msg_overwrite + 532
3 libsystem_kernel.dylib 0x10d35cf88 mach_msg + 20
4 CoreFoundation 0x1803f1754 __CFRunLoopServiceMachPort + 156
5 CoreFoundation 0x1803ebe34 __CFRunLoopRun + 1148
6 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
7 CoreFoundation 0x18040ee30 _legacyStreamRunLoop_workThread + 260
8 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
9 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 7:: com.facebook.SocketRocket.NetworkThread
0 libsystem_kernel.dylib 0x10d35cc10 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x10d36dda4 mach_msg2_internal + 76
2 libsystem_kernel.dylib 0x10d364e34 mach_msg_overwrite + 532
3 libsystem_kernel.dylib 0x10d35cf88 mach_msg + 20
4 CoreFoundation 0x1803f1754 __CFRunLoopServiceMachPort + 156
5 CoreFoundation 0x1803ebe34 __CFRunLoopRun + 1148
6 CoreFoundation 0x1803eb5a4 CFRunLoopRunSpecific + 572
7 Foundation 0x180dcd68c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 208
8 New Expensify Dev 0x106520c60 -[SRRunLoopThread main] + 260 (SRRunLoopThread.m:70)
9 Foundation 0x180df3e70 NSThread__start + 720
10 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
11 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 8:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x10d3671a8 __select + 8
1 CoreFoundation 0x18040011c __CFSocketManager + 612
2 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
3 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 9:: hades
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 hermes 0x10ec299b4 hermes::vm::HadesGC::Executor::worker() + 544
4 hermes 0x10ec29768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*) + 44
5 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
6 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 10:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 11:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 12:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 13:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 14:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 15:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 16:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 17:
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 libc++.1.dylib 0x1802cf07c std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 24
3 New Expensify Dev 0x106e04f74 void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&) + 124 (condition_variable:214)
4 New Expensify Dev 0x106e01c04 void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0) + 64 (condition_variable:223)
5 New Expensify Dev 0x106e01630 ThreadPool::doWork() + 112 (ThreadPool.cpp:73)
6 New Expensify Dev 0x106e04a8c decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&) + 116 (invoke.h:308)
7 New Expensify Dev 0x106e04a0c void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>) + 48 (thread.h:227)
8 New Expensify Dev 0x106e046b8 void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*) + 84 (thread.h:238)
9 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
10 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

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

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

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

Thread 21:
0 libsystem_pthread.dylib 0x10ca026dc start_wqthread + 0

Thread 22:
0 libsystem_pthread.dylib 0x10ca026dc start_wqthread + 0

Thread 23:: Dispatch queue: com.hackemist.SDWebImageDownloaderOperation.coderQueue (QOS: UNSPECIFIED)
0 libsystem_platform.dylib 0x10c4890c4 _platform_strlen + 4
1 libsystem_c.dylib 0x18012e754 __vfprintf + 3404
2 libsystem_c.dylib 0x18012d610 _vasprintf + 288
3 libsystem_c.dylib 0x18012621c asprintf + 92
4 ImageIO 0x1816442b0 IIOImageRead::copySourceInfo() + 148
5 ImageIO 0x18156a000 IIOImageSource::doBindToReader() + 900
6 ImageIO 0x18156a670 IIOImageSource::osType() + 32
7 ImageIO 0x18156f0cc CGImageSourceCreateWithData + 300
8 New Expensify Dev 0x1064e2014 -[SDImageIOCoder decodedImageWithData:options:] + 1196 (SDImageIOCoder.m:202)
9 New Expensify Dev 0x1064dacd0 -[SDImageCodersManager decodedImageWithData:options:] + 384 (SDImageCodersManager.m:109)
10 New Expensify Dev 0x1064e394c SDImageLoaderDecodeImageData + 1156 (SDImageLoader.m:74)
11 New Expensify Dev 0x1064f3cfc __70-[SDWebImageDownloaderOperation URLSession:task:didCompleteWithError:]_block_invoke.69 + 868 (SDWebImageDownloaderOperation.m:595)
12 Foundation 0x180d98ea4 NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK + 16
13 Foundation 0x180d98d98 -[NSBlockOperation main] + 100
14 Foundation 0x180d9ba8c NSOPERATION_IS_INVOKING_MAIN + 12
15 Foundation 0x180d97ff8 -[NSOperation start] + 620
16 Foundation 0x180d9c1f8 NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION + 12
17 Foundation 0x180d9bf08 __NSOQSchedule_f + 168
18 libdispatch.dylib 0x18017c418 _dispatch_block_async_invoke2 + 104
19 libdispatch.dylib 0x18016cd3c _dispatch_client_callout + 16
20 libdispatch.dylib 0x1801706d4 _dispatch_continuation_pop + 808
21 libdispatch.dylib 0x18016f8b4 _dispatch_async_redirect_invoke + 868
22 libdispatch.dylib 0x18017f30c _dispatch_root_queue_drain + 364
23 libdispatch.dylib 0x18017fd58 _dispatch_worker_thread2 + 232
24 libsystem_pthread.dylib 0x10ca038e8 _pthread_wqthread + 224
25 libsystem_pthread.dylib 0x10ca026e4 start_wqthread + 8

Thread 24:
0 libsystem_pthread.dylib 0x10ca026dc start_wqthread + 0

Thread 25:
0 libsystem_pthread.dylib 0x10ca026dc start_wqthread + 0

Thread 26:: JavaScriptCore libpas scavenger
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x196277bd0 scavenger_thread_main + 1148
3 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
4 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 27:: JIT Worklist Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 28:: JIT Worklist Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 29:: JIT Worklist Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 30:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 31:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 32:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 33:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 34:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 35:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 36:: Heap Helper Thread
0 libsystem_kernel.dylib 0x10d360110 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x10ca07a78 _pthread_cond_wait + 1216
2 JavaScriptCore 0x194db5428 WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime) + 236
3 JavaScriptCore 0x194d8f470 WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&) + 2272
4 JavaScriptCore 0x194d50fbc WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call() + 492
5 JavaScriptCore 0x194db260c WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*) + 332
6 JavaScriptCore 0x194db4a98 WTF::wtfThreadEntryPoint(void*) + 12
7 libsystem_pthread.dylib 0x10ca074c0 _pthread_start + 104
8 libsystem_pthread.dylib 0x10ca026f0 thread_start + 8

Thread 37:
0 libsystem_pthread.dylib 0x10ca026dc start_wqthread + 0

Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x0000000000000000 x5: 0x0000000000989680 x6: 0x000000000000006e x7: 0x0000000000000000
x8: 0x000000010c558240 x9: 0x4e0adf3509ffcef9 x10: 0x00000000000003e8 x11: 0x000000016b1119b0
x12: 0x0000000000000000 x13: 0x0000000180292353 x14: 0x0000000000000010 x15: 0x00000000d460e81f
x16: 0x0000000000000148 x17: 0x00000000d480e011 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000010c558240 x21: 0x0000000000000103 x22: 0x000000010c558320 x23: 0x0000000000000001
x24: 0x00006000039001b0 x25: 0x0000000000000001 x26: 0x000060000000c1d0 x27: 0x0000000000000000
x28: 0x0000000000000001 fp: 0x000000016b111db0 lr: 0x000000010ca071d0
sp: 0x000000016b111d90 pc: 0x000000010d364a4c cpsr: 0x40001000
far: 0x0000000000000000 esr: 0x56000080 Address size fault

Binary Images:
0x10c4b4000 - 0x10c54bfff dyld () /usr/lib/dyld
0x10d93c000 - 0x10d947fff libobjc-trampolines.dylib (
) <67a0ff9d-452e-3fe0-8b6e-ea95cf3a8b07> /Volumes/VOLUME//libobjc-trampolines.dylib
0x10dc48000 - 0x10e1a7fff com.plaid.LinkKit (5.2.1) <541e8913-5635-3a9b-a443-05cf533c6f76> /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/LinkKit.framework/LinkKit
0x10d64c000 - 0x10d8dffff com.mapbox.common (23.9.2) <7f5209b5-cd3a-308a-b80f-2e29d1c5cc43> /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxCommon.framework/MapboxCommon
0x10f21c000 - 0x10f933fff com.mapbox.maps (0.0.1) /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxCoreMaps.framework/MapboxCoreMaps
0x10fea8000 - 0x1101a7fff org.cocoapods.MapboxMaps (10.17.0) <813c54f0-4acc-3153-a66d-5bce514f9db3> /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxMaps.framework/MapboxMaps
0x10ca4c000 - 0x10ca73fff com.mapbox.MapboxMobileEvents (1.0.10) <49d6c881-61e8-31e7-829a-efcf5a33816c> /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents
0x11230c000 - 0x1130b7fff com.onfido.Onfido (1.0) <77a6c533-c776-33f8-8f7a-453b0ce789c1> /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/Onfido.framework/Onfido
0x10d454000 - 0x10d4c3fff org.cocoapods.Turf (2.7.0) /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/Turf.framework/Turf
0x10eaf4000 - 0x10edcbfff dev.hermesengine.iphonesimulator (0.12.0) /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/hermes.framework/hermes
0x10c488000 - 0x10c48ffff libsystem_platform.dylib (
) <6803b659-3b43-3b47-a9d0-7656a6033471> /usr/lib/system/libsystem_platform.dylib
0x10d35c000 - 0x10d393fff libsystem_kernel.dylib () <228a4127-b252-3c8f-9370-c3acc24c0b22> /usr/lib/system/libsystem_kernel.dylib
0x10ca00000 - 0x10ca0ffff libsystem_pthread.dylib (
) /usr/lib/system/libsystem_pthread.dylib
0x10ca94000 - 0x10caaffff com.apple.mlcompiler.services (95) <25f3a985-ceb4-3de6-be6b-d78298983f92> /Volumes/VOLUME//MLCompilerServices.framework/MLCompilerServices
0x104cec000 - 0x107737fff com.expensify.chat.dev (1.4.71) /Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/New Expensify Dev
0x10cad0000 - 0x10cb17fff dyld_sim (
) <45b5018b-7ae1-3c95-86a5-d89fd6cb36ae> /Volumes/VOLUME//dyld_sim
0x1800ed000 - 0x180168ff3 libsystem_c.dylib (
) /Volumes/VOLUME//libsystem_c.dylib
0x18027f000 - 0x180294fff libc++abi.dylib (
) /Volumes/VOLUME//libc++abi.dylib
0x180058000 - 0x180094fb8 libobjc.A.dylib (
) /Volumes/VOLUME//libobjc.A.dylib
0x180364000 - 0x180717fff com.apple.CoreFoundation (6.9) /Volumes/VOLUME/
/CoreFoundation.framework/CoreFoundation
0x18e9f8000 - 0x18ea00fff com.apple.GraphicsServices (1.0) <7cea06b5-77ce-3388-bb85-9a6942ca7f99> /Volumes/VOLUME//GraphicsServices.framework/GraphicsServices
0x18471f000 - 0x186085fff com.apple.UIKitCore (1.0) /Volumes/VOLUME/
/UIKitCore.framework/UIKitCore
0x0 - 0xffffffffffffffff ??? () <00000000-0000-0000-0000-000000000000> ???
0x180797000 - 0x18123dfff com.apple.Foundation (6.9) <03b66a9f-be07-39ef-812d-ea7d8b87f7eb> /Volumes/VOLUME/
/Foundation.framework/Foundation
0x1802c0000 - 0x18033efff libc++.1.dylib () /Volumes/VOLUME//libc++.1.dylib
0x184250000 - 0x1845e1fff com.apple.CFNetwork (1.0) <12886c7c-4c78-3c51-82a9-87ea2bff7b7d> /Volumes/VOLUME//CFNetwork.framework/CFNetwork
0x1814b2000 - 0x1818d8fff com.apple.ImageIO (3.3.0) /Volumes/VOLUME/
/ImageIO.framework/ImageIO
0x180169000 - 0x1801aefff libdispatch.dylib () <9505af94-04cc-3037-9759-6c4dc09943ad> /Volumes/VOLUME//libdispatch.dylib
0x194d47000 - 0x1963ccfdf com.apple.JavaScriptCore (8617) /Volumes/VOLUME//JavaScriptCore.framework/JavaScriptCore
0x1be681000 - 0x1be841fff com.apple.UIKit.axbundle (1.0.0) <22fc5e04-5700-3481-936b-b82892a093b9> /Volumes/VOLUME/
/UIKit

EOF


Full Report

{"app_name":"New Expensify Dev","timestamp":"2024-05-11 22:01:24.00 +0700","app_version":"1.4.71","slice_uuid":"cc8ae1a4-e13e-3767-89f5-27370c1e80e1","build_version":"1.4.71.0","platform":7,"bundleID":"com.expensify.chat.dev","share_with_app_devs":1,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.1.1 (23B81)","roots_installed":0,"name":"New Expensify Dev","incident_id":"9AE09EB4-FA54-4CAC-A852-55007C1F95B9"}
{
"uptime" : 900000,
"procRole" : "Foreground",
"version" : 2,
"userID" : 501,
"deployVersion" : 210,
"modelCode" : "MacBookPro18,3",
"coalitionID" : 291442,
"osVersion" : {
"train" : "macOS 14.1.1",
"build" : "23B81",
"releaseType" : "User"
},
"captureTime" : "2024-05-11 22:01:19.3596 +0700",
"codeSigningMonitor" : 1,
"incident" : "9AE09EB4-FA54-4CAC-A852-55007C1F95B9",
"pid" : 15005,
"translated" : false,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2024-05-11 21:57:38.4581 +0700",
"procStartAbsTime" : 21616449990618,
"procExitAbsTime" : 21621750596764,
"procName" : "New Expensify Dev",
"procPath" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/New Expensify Dev",
"bundleInfo" : {"CFBundleShortVersionString":"1.4.71","CFBundleVersion":"1.4.71.0","CFBundleIdentifier":"com.expensify.chat.dev"},
"storeInfo" : {"deviceIdentifierForVendor":"2DE3F3FC-C776-5F84-87BC-FB6EDBDC23FB","thirdParty":true},
"parentProc" : "launchd_sim",
"parentPid" : 72939,
"coalitionName" : "com.apple.CoreSimulator.SimDevice.66845467-EFDE-47A8-BD05-D4B32C58A9A9",
"crashReporterKey" : "3D645DDE-D230-9353-9C6B-CC945CBDB033",
"responsiblePid" : 79221,
"responsibleProc" : "SimulatorTrampoline",
"codeSigningID" : "com.expensify.chat.dev",
"codeSigningTeamID" : "",
"codeSigningFlags" : 570425861,
"codeSigningValidationCategory" : 10,
"codeSigningTrustLevel" : 4294967295,
"instructionByteStream" : {"beforePC":"4wAAVP17v6n9AwCR2OL/l78DAJH9e8GowANf1sADX9YQKYDSARAA1A==","atPC":"4wAAVP17v6n9AwCRzuL/l78DAJH9e8GowANf1sADX9ZwCoDSARAA1A=="},
"wakeTime" : 36739,
"sleepWakeUUID" : "60911E31-358F-444E-988F-FE9CF4B02B0B",
"sip" : "enabled",
"exception" : {"codes":"0x0000000000000000, 0x0000000000000000","rawCodes":[0,0],"type":"EXC_CRASH","signal":"SIGABRT"},
"termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"New Expensify Dev","byPid":15005},
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"lastExceptionBacktrace" : [{"imageOffset":1233180,"symbol":"__exceptionPreprocess","symbolLocation":160,"imageIndex":19},{"imageOffset":180524,"symbol":"objc_exception_throw","symbolLocation":56,"imageIndex":18},{"imageOffset":5472920,"symbol":"-[NSConcreteMutableAttributedString attribute:atIndex:longestEffectiveRange:inRange:]","symbolLocation":0,"imageIndex":23},{"imageOffset":13346216,"sourceLine":112,"sourceFile":"RCTMarkdownUtils.mm","symbol":"__49-[RCTMarkdownUtils parseMarkdown:withAttributes:]_block_invoke","imageIndex":14,"symbolLocation":4004},{"imageOffset":597208,"symbol":"NSARRAY_IS_CALLING_OUT_TO_A_BLOCK","symbolLocation":16,"imageIndex":19},{"imageOffset":76732,"symbol":"-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]","symbolLocation":292,"imageIndex":19},{"imageOffset":13341544,"sourceLine":51,"sourceFile":"RCTMarkdownUtils.mm","symbol":"-[RCTMarkdownUtils parseMarkdown:withAttributes:]","imageIndex":14,"symbolLocation":1756},{"imageOffset":13350436,"sourceLine":20,"sourceFile":"RCTUITextView+Markdown.mm","symbol":"-[RCTUITextView(Markdown) markdown_textDidChange]","imageIndex":14,"symbolLocation":200},{"imageOffset":383096,"symbol":"CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER","symbolLocation":140,"imageIndex":19},{"imageOffset":382876,"symbol":"___CFXRegistrationPost_block_invoke","symbolLocation":84,"imageIndex":19},{"imageOffset":380044,"symbol":"_CFXRegistrationPost","symbolLocation":404,"imageIndex":19},{"imageOffset":378472,"symbol":"_CFXNotificationPost","symbolLocation":688,"imageIndex":19},{"imageOffset":6216884,"symbol":"-[NSNotificationCenter postNotificationName:object:userInfo:]","symbolLocation":88,"imageIndex":23},{"imageOffset":15927692,"symbol":"-[UITextView textInputDidChange:]","symbolLocation":216,"imageIndex":21},{"imageOffset":15766956,"symbol":"-[UITextInputController _sendDelegateChangeNotificationsForText:selection:]","symbolLocation":148,"imageIndex":21},{"imageOffset":1158772,"symbol":"-[UITextInputControllerAccessibility _sendDelegateChangeNotificationsForText:selection:]","symbolLocation":108,"imageIndex":29},{"imageOffset":15773164,"symbol":"-[UITextInputController _insertText:fromKeyboard:]","symbolLocation":692,"imageIndex":21},{"imageOffset":15776696,"symbol":"-[UITextInputController insertText:]","symbolLocation":460,"imageIndex":21},{"imageOffset":15915684,"symbol":"-[UITextView insertText:]","symbolLocation":56,"imageIndex":21},{"imageOffset":6845148,"symbol":"-[UIKBInputDelegateManager insertText:updateInputSource:]","symbolLocation":328,"imageIndex":21},{"imageOffset":95044,"symbol":"-[UIKBInputDelegateManagerAccessibility insertText:updateInputSource:]","symbolLocation":108,"imageIndex":29},{"imageOffset":6835444,"symbol":"-[UIKBInputDelegateManager insertText:]","symbolLocation":88,"imageIndex":21},{"imageOffset":10337036,"symbol":"-[UIKeyboardImpl performKeyboardOutput:checkingDelegate:forwardToRemoteInputSource:]","symbolLocation":3900,"imageIndex":21},{"imageOffset":560820,"symbol":"-[UIKeyboardImplAccessibility performKeyboardOutput:checkingDelegate:forwardToRemoteInputSource:]","symbolLocation":156,"imageIndex":29},{"imageOffset":10332460,"symbol":"-[UIKeyboardImpl performKeyboardOutput:forwardToRemoteInputSource:]","symbolLocation":28,"imageIndex":21},{"imageOffset":10332408,"symbol":"-[UIKeyboardImpl performKeyboardOutput:]","symbolLocation":88,"imageIndex":21},{"imageOffset":10499432,"symbol":"-[UIKeyboardImpl _performKeyboardOutput:respectingForwardingDelegate:]","symbolLocation":240,"imageIndex":21},{"imageOffset":10326292,"symbol":"__55-[UIKeyboardImpl handleKeyboardInput:executionContext:]_block_invoke.1068","symbolLocation":160,"imageIndex":21},{"imageOffset":10199748,"symbol":"-[UIKeyboardImpl performOperations:withTextInputSource:]","symbolLocation":48,"imageIndex":21},{"imageOffset":10325656,"symbol":"__55-[UIKeyboardImpl handleKeyboardInput:executionContext:]_block_invoke_2","symbolLocation":752,"imageIndex":21},{"imageOffset":10615788,"symbol":"-[UIKeyboardTaskEntry execute:]","symbolLocation":200,"imageIndex":21},{"imageOffset":10610840,"symbol":"-[UIKeyboardTaskQueue continueExecutionOnMainThread]","symbolLocation":304,"imageIndex":21},{"imageOffset":6672852,"symbol":"__NSThreadPerformPerform","symbolLocation":124,"imageIndex":23},{"imageOffset":581400,"symbol":"CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION","symbolLocation":24,"imageIndex":19},{"imageOffset":581216,"symbol":"__CFRunLoopDoSource0","symbolLocation":172,"imageIndex":19},{"imageOffset":579024,"symbol":"__CFRunLoopDoSources0","symbolLocation":232,"imageIndex":19},{"imageOffset":556216,"symbol":"__CFRunLoopRun","symbolLocation":768,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":15076,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":20},{"imageOffset":12391140,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":21},{"imageOffset":12406620,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":21},{"imageOffset":34324,"sourceLine":7,"sourceFile":"main.m","symbol":"main","imageIndex":14,"symbolLocation":96},{"imageOffset":5444,"symbol":"start_sim","symbolLocation":20,"imageIndex":15},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0},{"imageOffset":14781799139448455168,"imageIndex":22}],
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":26202698,"threadState":{"x":[{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":10000000},{"value":110},{"value":0},{"value":4501897792,"symbolLocation":0,"symbol":"_main_thread"},{"value":5623552503619505913},{"value":1000},{"value":6091250096},{"value":0},{"value":6445146963},{"value":16},{"value":3563120671},{"value":328},{"value":3565215761},{"value":0},{"value":6},{"value":4501897792,"symbolLocation":0,"symbol":"_main_thread"},{"value":259},{"value":4501898016,"symbolLocation":224,"symbol":"_main_thread"},{"value":1},{"value":105553176035760},{"value":1},{"value":105553116316112},{"value":0},{"value":1}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506808784},"cpsr":{"value":1073745920},"fp":{"value":6091251120},"sp":{"value":6091251088},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516629068,"matchesCrashFrame":1},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":35404,"symbol":"__pthread_kill","symbolLocation":8,"imageIndex":11},{"imageOffset":29136,"symbol":"pthread_kill","symbolLocation":256,"imageIndex":12},{"imageOffset":472648,"symbol":"__abort","symbolLocation":112,"imageIndex":16},{"imageOffset":472536,"symbol":"abort","symbolLocation":116,"imageIndex":16},{"imageOffset":64632,"symbol":"abort_message","symbolLocation":128,"imageIndex":17},{"imageOffset":4504,"symbol":"demangling_terminate_handler()","symbolLocation":300,"imageIndex":17},{"imageOffset":31728,"symbol":"_objc_terminate()","symbolLocation":124,"imageIndex":18},{"imageOffset":11208784,"sourceLine":335,"sourceFile":"FIRCLSException.mm","symbol":"FIRCLSTerminateHandler()","imageIndex":14,"symbolLocation":436},{"imageOffset":61776,"symbol":"std::__terminate(void ()())","symbolLocation":12,"imageIndex":17},{"imageOffset":73060,"symbol":"__cxa_rethrow","symbolLocation":144,"imageIndex":17},{"imageOffset":180928,"symbol":"objc_exception_rethrow","symbolLocation":40,"imageIndex":18},{"imageOffset":554580,"symbol":"CFRunLoopRunSpecific","symbolLocation":748,"imageIndex":19},{"imageOffset":15076,"symbol":"GSEventRunModal","symbolLocation":160,"imageIndex":20},{"imageOffset":12391140,"symbol":"-[UIApplication _run]","symbolLocation":868,"imageIndex":21},{"imageOffset":12406620,"symbol":"UIApplicationMain","symbolLocation":124,"imageIndex":21},{"imageOffset":34324,"sourceLine":7,"sourceFile":"main.m","symbol":"main","imageIndex":14,"symbolLocation":96},{"imageOffset":5444,"symbol":"start_sim","symbolLocation":20,"imageIndex":15},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":0}]},{"id":26202711,"name":"com.apple.uikit.eventfetch-thread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":40694815129600},{"value":0},{"value":40694815129600},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":9475},{"value":0},{"value":1},{"value":9475},{"value":3072},{"value":0},{"value":0},{"value":18446744073709551569},{"value":2},{"value":0},{"value":4294967295},{"value":2},{"value":40694815129600},{"value":0},{"value":40694815129600},{"value":6094675320},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862,"sourceFile":"","symbol":"RNMBXLocationModule.locationEventThrottle.modify","symbolLocation":22}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4516666788},"cpsr":{"value":4096},"fp":{"value":6094675168},"sp":{"value":6094675088},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516596752},"far":{"value":0}},"frames":[{"imageOffset":3088,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":11},{"imageOffset":73124,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":11},{"imageOffset":36404,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":11},{"imageOffset":3976,"symbol":"mach_msg","symbolLocation":20,"imageIndex":11},{"imageOffset":579412,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":19},{"imageOffset":556596,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":6514316,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":23},{"imageOffset":6514864,"symbol":"-[NSRunLoop(NSRunLoop) runUntilDate:]","symbolLocation":60,"imageIndex":23},{"imageOffset":13061000,"symbol":"-[UIEventFetcher threadMain]","symbolLocation":404,"imageIndex":21},{"imageOffset":6671984,"symbol":"NSThread__start","symbolLocation":720,"imageIndex":23},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202718,"name":"com.google.firebase.crashlytics.MachExceptionServer","threadState":{"x":[{"value":268451845},{"value":17179869190},{"value":0},{"value":0},{"value":0},{"value":135252815118336},{"value":92},{"value":0},{"value":18446744073709550527},{"value":31491},{"value":0},{"value":1},{"value":31491},{"value":92},{"value":0},{"value":0},{"value":18446744073709551569},{"value":0},{"value":0},{"value":0},{"value":92},{"value":135252815118336},{"value":0},{"value":0},{"value":4508450644},{"value":0},{"value":17179869190},{"value":17179869190},{"value":6}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4516666788},"cpsr":{"value":4096},"fp":{"value":4508450192},"sp":{"value":4508450112},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516596752},"far":{"value":0}},"frames":[{"imageOffset":3088,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":11},{"imageOffset":73124,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":11},{"imageOffset":36404,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":11},{"imageOffset":3976,"symbol":"mach_msg","symbolLocation":20,"imageIndex":11},{"imageOffset":11263936,"sourceLine":194,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionReadMessage","imageIndex":14,"symbolLocation":80},{"imageOffset":11263736,"sourceLine":170,"sourceFile":"FIRCLSMachException.c","symbol":"FIRCLSMachExceptionServer","imageIndex":14,"symbolLocation":52},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202720,"name":"com.facebook.react.JavaScript","threadState":{"x":[{"value":21182314211272},{"value":21182314211272},{"value":216},{"value":21182314211424},{"value":4501051488,"symbolLocation":352,"symbol":"_platform_memset_pattern16"},{"value":4501051496,"symbolLocation":360,"symbol":"_platform_memset_pattern16"},{"value":105553123754816},{"value":2},{"value":44},{"value":18445055223849287680},{"value":0},{"value":0},{"value":4926581248},{"value":4510980872},{"value":1},{"value":4510980872},{"value":4501051136,"symbolLocation":0,"symbol":"_platform_memset_pattern16"},{"value":0},{"value":0},{"value":4586203701},{"value":1},{"value":4544383576,"symbolLocation":0,"symbol":"hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&)::opcodeDispatch"},{"value":1},{"value":1},{"value":4586203703},{"value":1},{"value":1},{"value":4510980872},{"value":4926581248}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4541779328},"cpsr":{"value":1073745920},"fp":{"value":6097504320},"sp":{"value":6097503536},"esr":{"value":2449473547,"description":"(Data Abort) byte read Access flag fault"},"pc":{"value":4541792828},"far":{"value":0}},"frames":[{"imageOffset":459324,"symbol":"hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":21744,"imageIndex":9},{"imageOffset":437528,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock)","symbolLocation":132,"imageIndex":9},{"imageOffset":334140,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handlehermes::vm::Callable, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":9},{"imageOffset":332196,"symbol":"hermes::vm::BoundFunction::_boundCall(hermes::vm::BoundFunction*, hermes::inst::Inst const*, hermes::vm::Runtime&)","symbolLocation":580,"imageIndex":9},{"imageOffset":440360,"symbol":"hermes::vm::CallResult<hermes::vm::HermesValue, (hermes::vm::detail::CallResultSpecialize)2> hermes::vm::Interpreter::interpretFunction<false, false>(hermes::vm::Runtime&, hermes::vm::InterpreterState&)","symbolLocation":2780,"imageIndex":9},{"imageOffset":437528,"symbol":"hermes::vm::Runtime::interpretFunctionImpl(hermes::vm::CodeBlock*)","symbolLocation":132,"imageIndex":9},{"imageOffset":334140,"symbol":"hermes::vm::JSFunction::_callImpl(hermes::vm::Handlehermes::vm::Callable, hermes::vm::Runtime&)","symbolLocation":40,"imageIndex":9},{"imageOffset":47560,"symbol":"facebook::hermes::HermesRuntimeImpl::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","symbolLocation":576,"imageIndex":9},{"imageOffset":14007148,"sourceLine":340,"sourceFile":"decorator.h","symbol":"facebook::jsi::RuntimeDecorator<facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","imageIndex":14,"symbolLocation":76},{"imageOffset":24522548,"sourceLine":753,"sourceFile":"decorator.h","symbol":"facebook::jsi::WithRuntimeDecorator<facebook::react::(anonymous namespace)::ReentrancyCheck, facebook::jsi::Runtime, facebook::jsi::Runtime>::call(facebook::jsi::Function const&, facebook::jsi::Value const&, facebook::jsi::Value const*, unsigned long)","imageIndex":14,"symbolLocation":88},{"imageOffset":9406068,"sourceLine":259,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, facebook::jsi::Value const*, unsigned long) const","imageIndex":14,"symbolLocation":100},{"imageOffset":9405956,"sourceLine":264,"sourceFile":"jsi-inl.h","symbol":"facebook::jsi::Function::call(facebook::jsi::Runtime&, std::initializer_listfacebook::jsi::Value) const","imageIndex":14,"symbolLocation":112},{"imageOffset":24842708,"sourceLine":42,"sourceFile":"Task.cpp","symbol":"facebook::react::Task::execute(facebook::jsi::Runtime&, bool)","imageIndex":14,"symbolLocation":280},{"imageOffset":24717820,"sourceLine":179,"sourceFile":"RuntimeScheduler.cpp","symbol":"facebook::react::RuntimeScheduler::executeTask(facebook::jsi::Runtime&, std::__1::shared_ptrfacebook::react::Task, bool) const","imageIndex":14,"symbolLocation":180},{"imageOffset":24717188,"sourceLine":120,"sourceFile":"RuntimeScheduler.cpp","symbol":"facebook::react::RuntimeScheduler::callExpiredTasks(facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":328},{"imageOffset":20610100,"sourceLine":74,"sourceFile":"Scheduler.cpp","symbol":"facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const","imageIndex":14,"symbolLocation":228},{"imageOffset":20609860,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&>()(std::declvalfacebook::jsi::Runtime&(), std::declval<facebook::react::EventTarget const*>(), std::declval<std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&>(), std::declvalfacebook::react::ReactEventPriority(), std::declval<facebook::react::EventPayload const&>())) std::__1::__invoke[abi:ue170006]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&)","imageIndex":14,"symbolLocation":72},{"imageOffset":20609740,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&>(facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0&, facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&)","imageIndex":14,"symbolLocation":64},{"imageOffset":20609664,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:ue170006](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&)","imageIndex":14,"symbolLocation":68},{"imageOffset":20604928,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0, std::__1::allocator<facebook::react::Scheduler::Scheduler(facebook::react::SchedulerToolbox const&, facebook::react::UIManagerAnimationDelegate*, facebook::react::SchedulerDelegate*)::$_0>, void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&)","imageIndex":14,"symbolLocation":68},{"imageOffset":19953872,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()[abi:ue170006](facebook::jsi::Runtime&, facebook::react::EventTarget const*&&, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority&&, facebook::react::EventPayload const&) const","imageIndex":14,"symbolLocation":108},{"imageOffset":19952416,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&)>::operator()(facebook::jsi::Runtime&, facebook::react::EventTarget const*, std::__1::basic_string<char, std::__1::char_traits, std::__1::allocator> const&, facebook::react::ReactEventPriority, facebook::react::EventPayload const&) const","imageIndex":14,"symbolLocation":72},{"imageOffset":19951932,"sourceLine":67,"sourceFile":"EventQueueProcessor.cpp","symbol":"facebook::react::EventQueueProcessor::flushEvents(facebook::jsi::Runtime&, std::__1::vector<facebook::react::RawEvent, std::__1::allocatorfacebook::react::RawEvent>&&) const","imageIndex":14,"symbolLocation":584},{"imageOffset":19929668,"sourceLine":97,"sourceFile":"EventQueue.cpp","symbol":"facebook::react::EventQueue::flushEvents(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":196},{"imageOffset":19929232,"sourceLine":80,"sourceFile":"EventQueue.cpp","symbol":"facebook::react::EventQueue::onBeat(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":44},{"imageOffset":19951040,"sourceLine":21,"sourceFile":"EventQueue.cpp","symbol":"facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":36},{"imageOffset":19950992,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":19950912,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&>(facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":19950868,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006","imageIndex":14,"symbolLocation":36},{"imageOffset":19946384,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0, std::__1::allocator<facebook::react::EventQueue::EventQueue(facebook::react::EventQueueProcessor, std::__1::unique_ptr<facebook::react::EventBeat, std::__1::default_deletefacebook::react::EventBeat>)::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":36},{"imageOffset":13519864,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":76},{"imageOffset":13519776,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":32},{"imageOffset":19449988,"sourceLine":54,"sourceFile":"AsynchronousEventBeat.cpp","symbol":"facebook::react::AsynchronousEventBeat::induce() const::$_0::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":136},{"imageOffset":19449840,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::AsynchronousEventBeat::induce() const::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":19449760,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&>(facebook::react::AsynchronousEventBeat::induce() const::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":19449716,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::AsynchronousEventBeat::induce() const::$_0, std::__1::allocator<facebook::react::AsynchronousEventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006","imageIndex":14,"symbolLocation":36},{"imageOffset":19444912,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::AsynchronousEventBeat::induce() const::$_0, std::__1::allocator<facebook::react::AsynchronousEventBeat::induce() const::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":36},{"imageOffset":13519864,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":76},{"imageOffset":13519776,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":32},{"imageOffset":24738808,"sourceLine":33,"sourceFile":"RuntimeScheduler.cpp","symbol":"facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":84},{"imageOffset":24738712,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&>()(std::declvalfacebook::jsi::Runtime&())) std::__1::__invoke[abi:ue170006]<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":24738632,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&>(facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0&, facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":32},{"imageOffset":24738588,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0, std::__1::allocator<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0>, void (facebook::jsi::Runtime&)>::operator()abi:ue170006","imageIndex":14,"symbolLocation":36},{"imageOffset":24733896,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0, std::__1::allocator<facebook::react::RuntimeScheduler::scheduleWork(std::__1::function<void (facebook::jsi::Runtime&)>) const::$_0>, void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&)","imageIndex":14,"symbolLocation":36},{"imageOffset":13519864,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::jsi::Runtime&)>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":76},{"imageOffset":13519776,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::jsi::Runtime&)>::operator()(facebook::jsi::Runtime&) const","imageIndex":14,"symbolLocation":32},{"imageOffset":23121940,"sourceLine":75,"sourceFile":"RCTSurfacePresenterBridgeAdapter.mm","symbol":"RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()::operator()() const","imageIndex":14,"symbolLocation":724},{"imageOffset":23121204,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>()()) std::__1::__invoke[abi:ue170006]<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&)","imageIndex":14,"symbolLocation":24},{"imageOffset":23121132,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&>(RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()&)","imageIndex":14,"symbolLocation":24},{"imageOffset":23121096,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()abi:ue170006","imageIndex":14,"symbolLocation":28},{"imageOffset":23116372,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'(), std::__1::allocator<RCTRuntimeExecutorFromBridge(RCTBridge*)::$_0::operator()(std::__1::function<void (facebook::jsi::Runtime&)>&&) const::'lambda'()>, void ()>::operator()()","imageIndex":14,"symbolLocation":28},{"imageOffset":9952092,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":68},{"imageOffset":9952012,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void ()>::operator()() const","imageIndex":14,"symbolLocation":24},{"imageOffset":24294676,"sourceLine":296,"sourceFile":"Instance.cpp","symbol":"facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3::operator()(facebook::react::JSExecutor*) const","imageIndex":14,"symbolLocation":28},{"imageOffset":24294636,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&>()(std::declvalfacebook::react::JSExecutor*())) std::__1::__invoke[abi:ue170006]<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*>(facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*&&)","imageIndex":14,"symbolLocation":36},{"imageOffset":24294552,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*>(facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3&, facebook::react::JSExecutor*&&)","imageIndex":14,"symbolLocation":32},{"imageOffset":24294508,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3, std::__1::allocator<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3>, void (facebook::react::JSExecutor*)>::operator()abi:ue170006","imageIndex":14,"symbolLocation":36},{"imageOffset":24289856,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3, std::__1::allocator<facebook::react::Instance::JSCallInvoker::scheduleAsync(std::__1::function<void ()>&&)::$_3>, void (facebook::react::JSExecutor*)>::operator()(facebook::react::JSExecutor*&&)","imageIndex":14,"symbolLocation":36},{"imageOffset":24452972,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void (facebook::react::JSExecutor*)>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":76},{"imageOffset":24452844,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void (facebook::react::JSExecutor*)>::operator()(facebook::react::JSExecutor*) const","imageIndex":14,"symbolLocation":36},{"imageOffset":24452792,"sourceLine":308,"sourceFile":"NativeToJsBridge.cpp","symbol":"facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8::operator()() const","imageIndex":14,"symbolLocation":92},{"imageOffset":24452688,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>(facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&)","imageIndex":14,"symbolLocation":24},{"imageOffset":24452616,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&>(facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8&)","imageIndex":14,"symbolLocation":24},{"imageOffset":24452580,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8, std::__1::allocator<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8>, void ()>::operator()abi:ue170006","imageIndex":14,"symbolLocation":28},{"imageOffset":24447352,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8, std::__1::allocator<facebook::react::NativeToJsBridge::runOnExecutorQueue(std::__1::function<void (facebook::react::JSExecutor*)>)::$_8>, void ()>::operator()()","imageIndex":14,"symbolLocation":28},{"imageOffset":9952092,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":68},{"imageOffset":9952012,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void ()>::operator()() const","imageIndex":14,"symbolLocation":24},{"imageOffset":18348172,"sourceLine":73,"sourceFile":"RCTCxxUtils.mm","symbol":"facebook::react::tryAndReturnError(std::__1::function<void ()> const&)","imageIndex":14,"symbolLocation":24},{"imageOffset":18506976,"sourceLine":68,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::tryFunc(std::__1::function<void ()> const&)","imageIndex":14,"symbolLocation":36},{"imageOffset":18526088,"sourceLine":81,"sourceFile":"RCTMessageThread.mm","symbol":"facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1::operator()() const","imageIndex":14,"symbolLocation":80},{"imageOffset":18525996,"sourceLine":340,"sourceFile":"invoke.h","symbol":"decltype(std::declval<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>()()) std::__1::__invoke[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&)","imageIndex":14,"symbolLocation":24},{"imageOffset":18525924,"sourceLine":415,"sourceFile":"invoke.h","symbol":"void std::__1::__invoke_void_return_wrapper<void, true>::__call[abi:ue170006]<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&>(facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1&)","imageIndex":14,"symbolLocation":24},{"imageOffset":18525888,"sourceLine":193,"sourceFile":"function.h","symbol":"std::__1::__function::__alloc_func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()abi:ue170006","imageIndex":14,"symbolLocation":28},{"imageOffset":18521040,"sourceLine":364,"sourceFile":"function.h","symbol":"std::__1::__function::__func<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1, std::__1::allocator<facebook::react::RCTMessageThread::runOnQueue(std::__1::function<void ()>&&)::$_1>, void ()>::operator()()","imageIndex":14,"symbolLocation":28},{"imageOffset":9952092,"sourceLine":518,"sourceFile":"function.h","symbol":"std::__1::__function::__value_func<void ()>::operator()abi:ue170006 const","imageIndex":14,"symbolLocation":68},{"imageOffset":9952012,"sourceLine":1169,"sourceFile":"function.h","symbol":"std::__1::function<void ()>::operator()() const","imageIndex":14,"symbolLocation":24},{"imageOffset":18506312,"sourceLine":44,"sourceFile":"RCTMessageThread.mm","symbol":"invocation function for block in facebook::react::RCTMessageThread::runAsync(std::__1::function<void ()>)","imageIndex":14,"symbolLocation":48},{"imageOffset":580832,"symbol":"CFRUNLOOP_IS_CALLING_OUT_TO_A_BLOCK","symbolLocation":20,"imageIndex":19},{"imageOffset":578600,"symbol":"__CFRunLoopDoBlocks","symbolLocation":352,"imageIndex":19},{"imageOffset":557812,"symbol":"__CFRunLoopRun","symbolLocation":2364,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":18197256,"sourceLine":332,"sourceFile":"RCTCxxBridge.mm","symbol":"+[RCTCxxBridge runRunLoop]","imageIndex":14,"symbolLocation":736},{"imageOffset":6671984,"symbol":"NSThread__start","symbolLocation":720,"imageIndex":23},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202721,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":3584},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6098087608},{"value":0},{"value":105553172218408},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":159744},{"value":0},{"value":105553172218384},{"value":105553172218448},{"value":6098088160},{"value":0},{"value":0},{"value":3584},{"value":3585},{"value":3840},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6098087728},"sp":{"value":6098087584},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":1268148,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":544,"imageIndex":9},{"imageOffset":1267560,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":9},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202765,"name":"com.apple.NSURLConnectionLoader","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":229931074191360},{"value":0},{"value":229931074191360},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":53535},{"value":0},{"value":1},{"value":53535},{"value":3072},{"value":0},{"value":32985348833280},{"value":18446744073709551569},{"value":32985348840962},{"value":0},{"value":4294967295},{"value":2},{"value":229931074191360},{"value":0},{"value":229931074191360},{"value":6102097240},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862,"sourceFile":"","symbol":"RNMBXLocationModule.locationEventThrottle.modify","symbolLocation":22}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4516666788},"cpsr":{"value":4096},"fp":{"value":6102097088},"sp":{"value":6102097008},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516596752},"far":{"value":0}},"frames":[{"imageOffset":3088,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":11},{"imageOffset":73124,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":11},{"imageOffset":36404,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":11},{"imageOffset":3976,"symbol":"mach_msg","symbolLocation":20,"imageIndex":11},{"imageOffset":579412,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":19},{"imageOffset":556596,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":2195304,"imageIndex":25},{"imageOffset":6671984,"symbol":"NSThread__start","symbolLocation":720,"imageIndex":23},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202767,"name":"com.apple.CFStream.LegacyThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":368349280206848},{"value":0},{"value":368349280206848},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":85763},{"value":0},{"value":1},{"value":85763},{"value":3072},{"value":0},{"value":60473139527680},{"value":18446744073709551569},{"value":60473139541762},{"value":0},{"value":4294967295},{"value":2},{"value":368349280206848},{"value":0},{"value":368349280206848},{"value":6102671352},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862,"sourceFile":"","symbol":"RNMBXLocationModule.locationEventThrottle.modify","symbolLocation":22}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4516666788},"cpsr":{"value":4096},"fp":{"value":6102671200},"sp":{"value":6102671120},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516596752},"far":{"value":0}},"frames":[{"imageOffset":3088,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":11},{"imageOffset":73124,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":11},{"imageOffset":36404,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":11},{"imageOffset":3976,"symbol":"mach_msg","symbolLocation":20,"imageIndex":11},{"imageOffset":579412,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":19},{"imageOffset":556596,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":699952,"symbol":"_legacyStreamRunLoop_workThread","symbolLocation":260,"imageIndex":19},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202770,"name":"com.facebook.SocketRocket.NetworkThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":362851722067968},{"value":0},{"value":362851722067968},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":84483},{"value":0},{"value":1},{"value":84483},{"value":3072},{"value":0},{"value":20890720927744},{"value":18446744073709551569},{"value":20890720932610},{"value":0},{"value":4294967295},{"value":2},{"value":362851722067968},{"value":0},{"value":362851722067968},{"value":6103244104},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862,"sourceFile":"","symbol":"RNMBXLocationModule.locationEventThrottle.modify","symbolLocation":22}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4516666788},"cpsr":{"value":4096},"fp":{"value":6103243952},"sp":{"value":6103243872},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516596752},"far":{"value":0}},"frames":[{"imageOffset":3088,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":11},{"imageOffset":73124,"symbol":"mach_msg2_internal","symbolLocation":76,"imageIndex":11},{"imageOffset":36404,"symbol":"mach_msg_overwrite","symbolLocation":532,"imageIndex":11},{"imageOffset":3976,"symbol":"mach_msg","symbolLocation":20,"imageIndex":11},{"imageOffset":579412,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":156,"imageIndex":19},{"imageOffset":556596,"symbol":"__CFRunLoopRun","symbolLocation":1148,"imageIndex":19},{"imageOffset":554404,"symbol":"CFRunLoopRunSpecific","symbolLocation":572,"imageIndex":19},{"imageOffset":6514316,"symbol":"-[NSRunLoop(NSRunLoop) runMode:beforeDate:]","symbolLocation":208,"imageIndex":23},{"imageOffset":25381984,"sourceLine":70,"sourceFile":"SRRunLoopThread.m","symbol":"-[SRRunLoopThread main]","imageIndex":14,"symbolLocation":260},{"imageOffset":6671984,"symbol":"NSThread__start","symbolLocation":720,"imageIndex":23},{"imageOffset":29888,"symbol":"pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202771,"name":"com.apple.CFSocket.private","threadState":{"x":[{"value":4},{"value":0},{"value":105553116326064},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":6103822560},{"value":0},{"value":105553182740224},{"value":15},{"value":9},{"value":105553182740352},{"value":72057602383527265,"symbolLocation":72057594037927937,"symbol":"OBJC_CLASS$__NSCFArray"},{"value":8345599328,"symbolLocation":0,"symbol":"OBJC_CLASS$___NSCFArray"},{"value":93},{"value":6446494340,"symbolLocation":0,"symbol":"-[__NSCFArray objectAtIndex:]"},{"value":0},{"value":96},{"value":8345621448,"symbolLocation":0,"symbol":"__CFActiveSocketsLock"},{"value":3},{"value":4887843936},{"value":64},{"value":105553116326064},{"value":105553116325968},{"value":0},{"value":8214850776,"symbolLocation":0,"symbol":"__kCFNull"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6446645532},"cpsr":{"value":1610616832},"fp":{"value":6103822272},"sp":{"value":6103788496},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516639144},"far":{"value":0}},"frames":[{"imageOffset":45480,"symbol":"__select","symbolLocation":8,"imageIndex":11},{"imageOffset":639260,"symbol":"__CFSocketManager","symbolLocation":612,"imageIndex":19},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202778,"name":"hades","threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6104395448},{"value":0},{"value":105553172130664},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":105553172130640},{"value":105553172130704},{"value":6104396000},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6104395568},"sp":{"value":6104395424},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":1268148,"symbol":"hermes::vm::HadesGC::Executor::worker()","symbolLocation":544,"imageIndex":9},{"imageOffset":1267560,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, hermes::vm::HadesGC::Executor::Executor()::'lambda'()>>(void*)","symbolLocation":44,"imageIndex":9},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26202781,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6104968536},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":75776},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6104969440},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":96512},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6104968656},"sp":{"value":6104968512},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202782,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94464},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6105541976},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":36864},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6105542880},{"value":0},{"value":0},{"value":94464},{"value":94464},{"value":94976},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6105542096},"sp":{"value":6105541952},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202783,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6106115416},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":110592},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6106116320},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":95744},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6106115536},"sp":{"value":6106115392},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202784,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6106688856},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":112640},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6106689760},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":96000},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6106688976},"sp":{"value":6106688832},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202785,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6107262296},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":36864},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6107263200},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":96768},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6107262416},"sp":{"value":6107262272},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202786,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6107835736},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":75776},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6107836640},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":95488},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6107835856},"sp":{"value":6107835712},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202787,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":4},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6108409176},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":75776},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6108410080},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":96256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6108409296},"sp":{"value":6108409152},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26202788,"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":61564,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&)","symbolLocation":24,"imageIndex":24},{"imageOffset":34705268,"sourceLine":214,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait<std::__1::unique_lockstd::__1::mutex>(std::__1::unique_lockstd::__1::mutex&)","imageIndex":14,"symbolLocation":124},{"imageOffset":34692100,"sourceLine":223,"sourceFile":"condition_variable","symbol":"void std::__1::condition_variable_any::wait[abi:ue170006]<std::__1::unique_lockstd::__1::mutex, ThreadPool::doWork()::$_0>(std::__1::unique_lockstd::__1::mutex&, ThreadPool::doWork()::$_0)","imageIndex":14,"symbolLocation":64},{"imageOffset":34690608,"sourceLine":73,"sourceFile":"ThreadPool.cpp","symbol":"ThreadPool::doWork()","imageIndex":14,"symbolLocation":112},{"imageOffset":34704012,"sourceLine":308,"sourceFile":"invoke.h","symbol":"decltype(std::declval<ThreadPool>().std::declval<void (ThreadPool::)()>()()) std::__1::__invoke[abi:ue170006]<void (ThreadPool::)(), ThreadPool, void>(void (ThreadPool::&&)(), ThreadPool&&)","imageIndex":14,"symbolLocation":116},{"imageOffset":34703884,"sourceLine":227,"sourceFile":"thread.h","symbol":"void std::__1::__thread_execute[abi:ue170006]<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool, 2ul>(std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>&, std::__1::__tuple_indices<2ul>)","imageIndex":14,"symbolLocation":48},{"imageOffset":34703032,"sourceLine":238,"sourceFile":"thread.h","symbol":"void* std::__1::__thread_proxy[abi:ue170006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct>, void (ThreadPool::)(), ThreadPool>>(void*)","imageIndex":14,"symbolLocation":84},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}],"threadState":{"x":[{"value":260},{"value":0},{"value":94720},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6108982616},{"value":0},{"value":105553156434000},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":120832},{"value":0},{"value":105553156433976},{"value":105553247519232},{"value":6108983520},{"value":0},{"value":0},{"value":94720},{"value":94720},{"value":95232},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6108982736},"sp":{"value":6108982592},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}}},{"id":26204541,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6092959744},{"value":121551},{"value":6092423168},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6092959744},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26205062,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6091812864},{"value":21027},{"value":6091276288},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6091812864},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26206219,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6095826944},{"value":125727},{"value":6095290368},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6095826944},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26207224,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6092386304},{"value":125227},{"value":6091849728},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6092386304},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26207225,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6093533184},{"value":71743},{"value":6092996608},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6093533184},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26207226,"threadState":{"x":[{"value":6467932098},{"value":6467932096},{"value":97083},{"value":6094102320},{"value":6468219508,"symbolLocation":52208,"symbol":"etc_selector_unscramble"},{"value":6094102320},{"value":105553165152128},{"value":0},{"value":6467932098},{"value":6443921230,"symbolLocation":585,"symbol":"hexlist"},{"value":389},{"value":6443905910,"symbolLocation":8,"symbol":"puts_null"},{"value":0},{"value":2095104},{"value":16},{"value":2938269792},{"value":4501049536,"symbolLocation":0,"symbol":"_platform_strlen"},{"value":2940364866},{"value":0},{"value":18446744073709551615},{"value":18446744073709551615},{"value":10},{"value":6467932098},{"value":115},{"value":6468219508,"symbolLocation":52208,"symbol":"etc_selector_unscramble"},{"value":0},{"value":6468219523,"symbolLocation":52223,"symbol":"etc_selector_unscramble"},{"value":6468219525,"symbolLocation":52225,"symbol":"etc_selector_unscramble"},{"value":6094101088}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6443689812},"cpsr":{"value":536875008},"fp":{"value":6094101792},"sp":{"value":6094100800},"esr":{"value":2449473543,"description":"(Data Abort) byte read Translation fault"},"pc":{"value":4501049540},"far":{"value":6467932096}},"queue":"com.hackemist.SDWebImageDownloaderOperation.coderQueue (QOS: UNSPECIFIED)","frames":[{"imageOffset":4292,"symbol":"_platform_strlen","symbolLocation":4,"imageIndex":10},{"imageOffset":268116,"symbol":"__vfprintf","symbolLocation":3404,"imageIndex":16},{"imageOffset":263696,"symbol":"_vasprintf","symbolLocation":288,"imageIndex":16},{"imageOffset":234012,"symbol":"asprintf","symbolLocation":92,"imageIndex":16},{"imageOffset":1647280,"symbol":"IIOImageRead::copySourceInfo()","symbolLocation":148,"imageIndex":26},{"imageOffset":753664,"symbol":"IIOImageSource::doBindToReader()","symbolLocation":900,"imageIndex":26},{"imageOffset":755312,"symbol":"IIOImageSource::osType()","symbolLocation":32,"imageIndex":26},{"imageOffset":774348,"symbol":"CGImageSourceCreateWithData","symbolLocation":300,"imageIndex":26},{"imageOffset":25124884,"sourceLine":202,"sourceFile":"SDImageIOCoder.m","symbol":"-[SDImageIOCoder decodedImageWithData:options:]","imageIndex":14,"symbolLocation":1196},{"imageOffset":25095376,"sourceLine":109,"sourceFile":"SDImageCodersManager.m","symbol":"-[SDImageCodersManager decodedImageWithData:options:]","imageIndex":14,"symbolLocation":384},{"imageOffset":25131340,"sourceLine":74,"sourceFile":"SDImageLoader.m","symbol":"SDImageLoaderDecodeImageData","imageIndex":14,"symbolLocation":1156},{"imageOffset":25197820,"sourceLine":595,"sourceFile":"SDWebImageDownloaderOperation.m","symbol":"__70-[SDWebImageDownloaderOperation URLSession:task:didCompleteWithError:]_block_invoke.69","imageIndex":14,"symbolLocation":868},{"imageOffset":6299300,"symbol":"NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK","symbolLocation":16,"imageIndex":23},{"imageOffset":6299032,"symbol":"-[NSBlockOperation main]","symbolLocation":100,"imageIndex":23},{"imageOffset":6310540,"symbol":"NSOPERATION_IS_INVOKING_MAIN","symbolLocation":12,"imageIndex":23},{"imageOffset":6295544,"symbol":"-[NSOperation start]","symbolLocation":620,"imageIndex":23},{"imageOffset":6312440,"symbol":"NSOPERATIONQUEUE_IS_STARTING_AN_OPERATION","symbolLocation":12,"imageIndex":23},{"imageOffset":6311688,"symbol":"__NSOQSchedule_f","symbolLocation":168,"imageIndex":23},{"imageOffset":78872,"symbol":"_dispatch_block_async_invoke2","symbolLocation":104,"imageIndex":27},{"imageOffset":15676,"symbol":"_dispatch_client_callout","symbolLocation":16,"imageIndex":27},{"imageOffset":30420,"symbol":"_dispatch_continuation_pop","symbolLocation":808,"imageIndex":27},{"imageOffset":26804,"symbol":"_dispatch_async_redirect_invoke","symbolLocation":868,"imageIndex":27},{"imageOffset":90892,"symbol":"_dispatch_root_queue_drain","symbolLocation":364,"imageIndex":27},{"imageOffset":93528,"symbol":"_dispatch_worker_thread2","symbolLocation":232,"imageIndex":27},{"imageOffset":14568,"symbol":"_pthread_wqthread","symbolLocation":224,"imageIndex":12},{"imageOffset":9956,"symbol":"start_wqthread","symbolLocation":8,"imageIndex":12}]},{"id":26207227,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6095253504},{"value":96023},{"value":6094716928},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6095253504},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26207228,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6096400384},{"value":238339},{"value":6095863808},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6096400384},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}},{"id":26207236,"name":"JavaScriptCore libpas scavenger","threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":100000032},{"value":6098661032},{"value":0},{"value":5288929304},{"value":1099511628034},{"value":256},{"value":0},{"value":256},{"value":1099511628032},{"value":305},{"value":43980465121536},{"value":0},{"value":5288929280},{"value":5288929344},{"value":6098661600},{"value":100000032},{"value":0},{"value":0},{"value":10497},{"value":10752},{"value":8353357824,"symbolLocation":9160,"symbol":"pas_compact_expendable_memory_header"},{"value":8353345536,"symbolLocation":2076,"symbol":"jit_common_primitive_heap_support"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6098661152},"sp":{"value":6098661008},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":22219728,"symbol":"scavenger_thread_main","symbolLocation":1148,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207237,"name":"JIT Worklist Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":3072},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999999338},{"value":6099233992},{"value":0},{"value":5436916136},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":5436916112},{"value":5436916176},{"value":6099235040},{"value":999999338},{"value":9},{"value":3072},{"value":3073},{"value":3328},{"value":5436916096},{"value":2199336949}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6099234112},"sp":{"value":6099233968},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207238,"name":"JIT Worklist Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":512},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999998697},{"value":6099807432},{"value":0},{"value":5437260200},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":0},{"value":0},{"value":5437260176},{"value":5437260240},{"value":6099808480},{"value":999998697},{"value":9},{"value":512},{"value":513},{"value":768},{"value":5437260160},{"value":1956230160}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6099807552},"sp":{"value":6099807408},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207239,"name":"JIT Worklist Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999998391},{"value":6100380872},{"value":0},{"value":5438276008},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":40},{"value":0},{"value":5438275984},{"value":5438276048},{"value":6100381920},{"value":999998391},{"value":9},{"value":0},{"value":1},{"value":256},{"value":5438275968},{"value":845494133}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6100380992},"sp":{"value":6100380848},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207240,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":1536},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999999791},{"value":6100954312},{"value":0},{"value":5438816520},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":3298534884352},{"value":0},{"value":5438816496},{"value":5438816560},{"value":6100955360},{"value":999999791},{"value":9},{"value":1536},{"value":1537},{"value":1792},{"value":5438816480},{"value":1301982943}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6100954432},"sp":{"value":6100954288},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207241,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":1536},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999998731},{"value":6101527752},{"value":0},{"value":5438750984},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":7696581396480},{"value":0},{"value":5438750960},{"value":5438751024},{"value":6101528800},{"value":999998731},{"value":9},{"value":1536},{"value":1537},{"value":1792},{"value":5438750944},{"value":3703476634}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6101527872},"sp":{"value":6101527728},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207242,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999999744},{"value":6210219208},{"value":0},{"value":5438865672},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":6597069768448},{"value":0},{"value":5438865648},{"value":5438865712},{"value":6210220256},{"value":999999744},{"value":9},{"value":1024},{"value":1025},{"value":1280},{"value":5438865632},{"value":2947317718}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6210219328},"sp":{"value":6210219184},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207243,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":3072},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999999969},{"value":6210792648},{"value":0},{"value":5438636296},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":16383},{"value":0},{"value":5438636272},{"value":5438636336},{"value":6210793696},{"value":999999969},{"value":9},{"value":3072},{"value":3073},{"value":3328},{"value":5438636256},{"value":4148248786}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6210792768},"sp":{"value":6210792624},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207244,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":2048},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999998777},{"value":6211366088},{"value":0},{"value":5438734600},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":16383},{"value":0},{"value":5438734576},{"value":5438734640},{"value":6211367136},{"value":999998777},{"value":9},{"value":2048},{"value":2049},{"value":2304},{"value":5438734560},{"value":3708599916}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6211366208},"sp":{"value":6211366064},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207245,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":1536},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999998824},{"value":6211939528},{"value":0},{"value":5438701832},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":1099511628288},{"value":0},{"value":5438701808},{"value":5438701872},{"value":6211940576},{"value":999998824},{"value":9},{"value":1536},{"value":1537},{"value":1792},{"value":5438701792},{"value":3797480285}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6211939648},"sp":{"value":6211939504},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207246,"name":"Heap Helper Thread","threadState":{"x":[{"value":260},{"value":0},{"value":1024},{"value":0},{"value":0},{"value":160},{"value":9},{"value":999999499},{"value":6212512968},{"value":0},{"value":5438898440},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":16383},{"value":0},{"value":5438898416},{"value":5438898480},{"value":6212514016},{"value":999999499},{"value":9},{"value":1024},{"value":1025},{"value":1280},{"value":5438898400},{"value":3950575704}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4506811000},"cpsr":{"value":1610616832},"fp":{"value":6212513088},"sp":{"value":6212512944},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4516610320},"far":{"value":0}},"frames":[{"imageOffset":16656,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":11},{"imageOffset":31352,"symbol":"_pthread_cond_wait","symbolLocation":1216,"imageIndex":12},{"imageOffset":451624,"symbol":"WTF::ThreadCondition::timedWait(WTF::Mutex&, WTF::WallTime)","symbolLocation":236,"imageIndex":28},{"imageOffset":296048,"symbol":"WTF::ParkingLot::parkConditionallyImpl(void const*, WTF::ScopedLambda<bool ()> const&, WTF::ScopedLambda<void ()> const&, WTF::TimeWithDynamicClockType const&)","symbolLocation":2272,"imageIndex":28},{"imageOffset":40892,"symbol":"WTF::Detail::CallableWrapper<WTF::AutomaticThread::start(WTF::AbstractLocker const&)::$_0, void>::call()","symbolLocation":492,"imageIndex":28},{"imageOffset":439820,"symbol":"WTF::Thread::entryPoint(WTF::Thread::NewThreadContext*)","symbolLocation":332,"imageIndex":28},{"imageOffset":449176,"symbol":"WTF::wtfThreadEntryPoint(void*)","symbolLocation":12,"imageIndex":28},{"imageOffset":29888,"symbol":"_pthread_start","symbolLocation":104,"imageIndex":12},{"imageOffset":9968,"symbol":"thread_start","symbolLocation":8,"imageIndex":12}]},{"id":26207308,"frames":[{"imageOffset":9948,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":12}],"threadState":{"x":[{"value":6237515776},{"value":237827},{"value":6236979200},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6237515776},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":4506789596},"far":{"value":0}}}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64e",
"base" : 4501225472,
"size" : 622592,
"uuid" : "ec7a3ba0-f9bf-3ab8-a0f4-8622e5606b20",
"path" : "/usr/lib/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4522754048,
"size" : 49152,
"uuid" : "67a0ff9d-452e-3fe0-8b6e-ea95cf3a8b07",
"path" : "/Volumes/VOLUME//libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4525948928,
"CFBundleShortVersionString" : "5.2.1",
"CFBundleIdentifier" : "com.plaid.LinkKit",
"size" : 5636096,
"uuid" : "541e8913-5635-3a9b-a443-05cf533c6f76",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/LinkKit.framework/LinkKit",
"name" : "LinkKit",
"CFBundleVersion" : "2951.6"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4519673856,
"CFBundleShortVersionString" : "23.9.2",
"CFBundleIdentifier" : "com.mapbox.common",
"size" : 2703360,
"uuid" : "7f5209b5-cd3a-308a-b80f-2e29d1c5cc43",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxCommon.framework/MapboxCommon",
"name" : "MapboxCommon",
"CFBundleVersion" : "23.9.2"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4548837376,
"CFBundleShortVersionString" : "0.0.1",
"CFBundleIdentifier" : "com.mapbox.maps",
"size" : 7438336,
"uuid" : "c8015c0b-eb38-3869-916e-c4329cd0f4be",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxCoreMaps.framework/MapboxCoreMaps",
"name" : "MapboxCoreMaps",
"CFBundleVersion" : "0.0.1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4561993728,
"CFBundleShortVersionString" : "10.17.0",
"CFBundleIdentifier" : "org.cocoapods.MapboxMaps",
"size" : 3145728,
"uuid" : "813c54f0-4acc-3153-a66d-5bce514f9db3",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxMaps.framework/MapboxMaps",
"name" : "MapboxMaps",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4507090944,
"CFBundleShortVersionString" : "1.0.10",
"CFBundleIdentifier" : "com.mapbox.MapboxMobileEvents",
"size" : 163840,
"uuid" : "49d6c881-61e8-31e7-829a-efcf5a33816c",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/MapboxMobileEvents.framework/MapboxMobileEvents",
"name" : "MapboxMobileEvents",
"CFBundleVersion" : "30"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4600152064,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.onfido.Onfido",
"size" : 14336000,
"uuid" : "77a6c533-c776-33f8-8f7a-453b0ce789c1",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/Onfido.framework/Onfido",
"name" : "Onfido",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4517609472,
"CFBundleShortVersionString" : "2.7.0",
"CFBundleIdentifier" : "org.cocoapods.Turf",
"size" : 458752,
"uuid" : "f95d41ee-3574-30e8-a495-bd9353e1c015",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/Turf.framework/Turf",
"name" : "Turf",
"CFBundleVersion" : "1"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4541333504,
"CFBundleShortVersionString" : "0.12.0",
"CFBundleIdentifier" : "dev.hermesengine.iphonesimulator",
"size" : 2981888,
"uuid" : "e0b4045f-10b9-313c-8b13-2e389b5e6678",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/Frameworks/hermes.framework/hermes",
"name" : "hermes",
"CFBundleVersion" : "0.12.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4501045248,
"size" : 32768,
"uuid" : "6803b659-3b43-3b47-a9d0-7656a6033471",
"path" : "/usr/lib/system/libsystem_platform.dylib",
"name" : "libsystem_platform.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4516593664,
"size" : 229376,
"uuid" : "228a4127-b252-3c8f-9370-c3acc24c0b22",
"path" : "/usr/lib/system/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4506779648,
"size" : 65536,
"uuid" : "b6ee0a94-15cc-3a0a-8301-9d177a3d70be",
"path" : "/usr/lib/system/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4507385856,
"CFBundleShortVersionString" : "95",
"CFBundleIdentifier" : "com.apple.mlcompiler.services",
"size" : 114688,
"uuid" : "25f3a985-ceb4-3de6-be6b-d78298983f92",
"path" : "/Volumes/VOLUME/
/MLCompilerServices.framework/MLCompilerServices",
"name" : "MLCompilerServices",
"CFBundleVersion" : "95"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4375625728,
"CFBundleShortVersionString" : "1.4.71",
"CFBundleIdentifier" : "com.expensify.chat.dev",
"size" : 44351488,
"uuid" : "cc8ae1a4-e13e-3767-89f5-27370c1e80e1",
"path" : "/Users/USER/Library/Developer/CoreSimulator/Devices/66845467-EFDE-47A8-BD05-D4B32C58A9A9/data/Containers/Bundle/Application/04DFA4F7-0BC7-40E8-89FE-2802DB5763D7/New Expensify Dev.app/New Expensify Dev",
"name" : "New Expensify Dev",
"CFBundleVersion" : "1.4.71.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4507631616,
"size" : 294912,
"uuid" : "45b5018b-7ae1-3c95-86a5-d89fd6cb36ae",
"path" : "/Volumes/VOLUME//dyld_sim",
"name" : "dyld_sim"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6443421696,
"size" : 507892,
"uuid" : "de8d98a3-089c-3288-84e7-4e960ea3c60c",
"path" : "/Volumes/VOLUME/
/libsystem_c.dylib",
"name" : "libsystem_c.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6445068288,
"size" : 90112,
"uuid" : "a1a1690e-d964-3381-a1f8-5e319e33e359",
"path" : "/Volumes/VOLUME//libc++abi.dylib",
"name" : "libc++abi.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6442811392,
"size" : 249785,
"uuid" : "b2783f96-4cc1-3b2e-9055-f4be292c839d",
"path" : "/Volumes/VOLUME/
/libobjc.A.dylib",
"name" : "libobjc.A.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6446006272,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 3883008,
"uuid" : "fc74142f-1b8b-3994-9466-f5061dd43152",
"path" : "/Volumes/VOLUME//CoreFoundation.framework/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "2202"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6687784960,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.GraphicsServices",
"size" : 36864,
"uuid" : "7cea06b5-77ce-3388-bb85-9a6942ca7f99",
"path" : "/Volumes/VOLUME/
/GraphicsServices.framework/GraphicsServices",
"name" : "GraphicsServices",
"CFBundleVersion" : "1.0"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6517026816,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.UIKitCore",
"size" : 26636288,
"uuid" : "d0dea36b-57cc-3509-be3f-07785430decd",
"path" : "/Volumes/VOLUME//UIKitCore.framework/UIKitCore",
"name" : "UIKitCore",
"CFBundleVersion" : "7209.1.104"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6450409472,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.Foundation",
"size" : 11169792,
"uuid" : "03b66a9f-be07-39ef-812d-ea7d8b87f7eb",
"path" : "/Volumes/VOLUME/
/Foundation.framework/Foundation",
"name" : "Foundation",
"CFBundleVersion" : "2202"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6445334528,
"size" : 520192,
"uuid" : "ce654fbb-502f-3faf-9db0-109fcc2a85af",
"path" : "/Volumes/VOLUME//libc++.1.dylib",
"name" : "libc++.1.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6511984640,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.CFNetwork",
"size" : 3743744,
"uuid" : "12886c7c-4c78-3c51-82a9-87ea2bff7b7d",
"path" : "/Volumes/VOLUME/
/CFNetwork.framework/CFNetwork",
"name" : "CFNetwork",
"CFBundleVersion" : "1490.0.4"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6464151552,
"CFBundleShortVersionString" : "3.3.0",
"CFBundleIdentifier" : "com.apple.ImageIO",
"size" : 4354048,
"uuid" : "ebc20ce3-0986-3d1b-921c-8846787436b0",
"path" : "/Volumes/VOLUME//ImageIO.framework/ImageIO",
"name" : "ImageIO",
"CFBundleVersion" : "2488.4.15"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6443929600,
"size" : 286720,
"uuid" : "9505af94-04cc-3037-9759-6c4dc09943ad",
"path" : "/Volumes/VOLUME/
/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6791917568,
"CFBundleShortVersionString" : "8617",
"CFBundleIdentifier" : "com.apple.JavaScriptCore",
"size" : 23617504,
"uuid" : "fea1fb52-5e41-3501-916c-1f54a58c1843",
"path" : "/Volumes/VOLUME//JavaScriptCore.framework/JavaScriptCore",
"name" : "JavaScriptCore",
"CFBundleVersion" : "8617.1.17.10.9"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 7489458176,
"CFBundleShortVersionString" : "1.0.0",
"CFBundleIdentifier" : "com.apple.UIKit.axbundle",
"size" : 1839104,
"uuid" : "22fc5e04-5700-3481-936b-b82892a093b9",
"path" : "/Volumes/VOLUME/
/UIKit",
"name" : "UIKit",
"CFBundleVersion" : "1.0"
}
],
"sharedCache" : {
"base" : 6442450944,
"size" : 2846113792,
"uuid" : "e7803c3f-6aaf-3a4d-9faf-316d2629e8bc"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.7G resident=0K(0%) swapped_out_or_unallocated=1.7G(100%)\nWritable regions: Total=2.4G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.4G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG image 9040K 6 \nCG raster data 15.9M 160 \nColorSync 272K 8 \nCoreAnimation 60.1M 411 \nCoreData 64K 2 \nCoreData Object IDs 4112K 2 \nFoundation 16K 1 \nIOSurface 368K 1 \nJS JIT generated code 512.0M 3 \nKernel Alloc Once 32K 1 \nMALLOC 978.4M 903 \nMALLOC guard page 320K 20 \nMach message 32K 2 \nSQLite page cache 1152K 9 \nSTACK GUARD 56.6M 37 \nStack 27.6M 38 \nVM_ALLOCATE 234.7M 89 \nVM_ALLOCATE (reserved) 384.0M 1 reserved VM address space (unallocated)\nWebKit Malloc 192.1M 6 \nWebKit Malloc (reserved) 64.0M 1 reserved VM address space (unallocated)\n__DATA 31.8M 805 \n__DATA_CONST 80.8M 817 \n__DATA_DIRTY 107K 9 \n__FONT_DATA 4K 1 \n__LINKEDIT 837.5M 17 \n__OBJC_RO 66.6M 1 \n__OBJC_RW 2196K 1 \n__TEXT 864.2M 831 \ndyld private memory 1616K 12 \nlibnetwork 1664K 24 \nmapped file 192.4M 179 \nshared memory 16K 1 \n=========== ======= ======= \nTOTAL 4.5G 4401 \nTOTAL, minus reserved VM space 4.1G 4401 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "com.apple.main-thread"
}
},
"logWritingSignature" : "162869e3942dfcb7dcc8bf148aa6138433a0b507",
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "632e3df958740028737bffc0",
"factorPackIds" : {
"SIRI_UNDERSTANDING_NL_OVERRIDES" : "65e7a8ec68da4f6d14fe7a05"
},
"deploymentId" : 240000670
},
{
"rolloutId" : "61675b89201f677a9a4cbd65",
"factorPackIds" : {
"HEALTH_FEATURE_AVAILABILITY" : "65287aa4be905e686a05f0a2"
},
"deploymentId" : 240000079
}
],
"experiments" : [

]
}
}

Model: MacBookPro18,3, BootROM 10151.41.12, proc 8:6:2 processors, 16 GB, SMC
Graphics: Apple M1 Pro, Apple M1 Pro, Built-In
Display: Color LCD, 3024 x 1964 Retina, Main, MirrorOff, Online
Memory Module: LPDDR5, Samsung
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4387), wl0: Sep 1 2023 19:46:07 version 20.10.1073.3.8.7.165 FWID 01-b66346c5
AirPort:
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB31Bus
USB Device: USB31Bus
USB Device: USB31Bus
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.

Android crashed
untitled.2.mp4

This comment has been minimized.

@rlinoz
Copy link
Contributor

rlinoz commented May 13, 2024

Same thing happening in the adhoc build, @robertKozik can you merge main and check what is happening?

@robertKozik
Copy link
Contributor Author

That's fault of my changes - I'm on it right now, I'l should be able to resolve this in within couple of hours

Copy link
Contributor

@rlinoz
Copy link
Contributor

rlinoz commented May 14, 2024

I think we are not considering a dark theme here.

PHOTO-2024-05-14-11-16-06

@robertKozik
Copy link
Contributor Author

Thanks for checking it out @rlinoz . I'm on it

@robertKozik
Copy link
Contributor Author

Should be resolved - now we are getting color value from the theme

video
Screen.Recording.2024-05-14.at.18.37.05.mov

Copy link
Contributor

Copy link
Contributor

@mollfpr mollfpr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

I can't test the Android platform because of the current issue on the BE.

Copy link

melvin-bot bot commented May 15, 2024

We did not find an internal engineer to review this PR, trying to assign a random engineer to #41597 as well as to this PR... Please reach out for help on Slack if no one gets assigned!

Copy link
Contributor

@rlinoz rlinoz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests well!

@rlinoz rlinoz merged commit 4705d89 into Expensify:main May 15, 2024
16 checks passed
@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Contributor

🚀 Deployed to staging by https://github.com/rlinoz in version: 1.4.75-0 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

@OSBotify
Copy link
Contributor

🚀 Deployed to production by https://github.com/puneetlath in version: 1.4.75-1 🚀

platform result
🤖 android 🤖 success ✅
🖥 desktop 🖥 success ✅
🍎 iOS 🍎 success ✅
🕸 web 🕸 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants