obsproject / obs-studio

OBS Studio - Free and open source software for live streaming and screen recording
https://obsproject.com
GNU General Public License v2.0
60.28k stars 7.99k forks source link

26.1 instantly crashes on macOS 10.13.6: libssl was built for 10.15 #3887

Closed syropian closed 3 years ago

syropian commented 3 years ago

Platform

Operating system and version: macOS High Sierra 10.13.6 OBS Studio version: 26.1

Expected Behavior

It shouldn't crash on launch.

Current Behavior

It crashes immediately on launch

Error:

Dyld Error Message:
  Symbol not found: ____chkstk_darwin
  Referenced from: /Applications/OBS.app/Contents/MacOS/../Frameworks/libssl.1.1.dylib (which was built for Mac OS X 10.15)
  Expected in: /usr/lib/libSystem.B.dylib

Steps to Reproduce

  1. Be on macOS 10.13.6 or potentially anything below 10.15
  2. Launch OBS
  3. Watch it crash 😢

Additional information

N/A

WizardCM commented 3 years ago

Yeah that's a bug - thanks for letting us know. We'll look into it.

akionsight commented 3 years ago

is this bug similar to that which happened about 4 years ago with macOS Yosemite Link to the OBS forum thread for the same here: https://obsproject.com/forum/threads/obs-quit-unexpectedly-mac-tried-everything%E2%80%A6need-help.42126/

PatTheMav commented 3 years ago

This is introduced by Github Action runners having curl installed via Homebrew now, which is picked up as the version used for OBS and linked against.

curl from Homebrew uses OpenSSL by default, which is then linked and assembled into the package. It's also is incompatible with our license, so the fix is to change our CI workflow and re-build/re-release the macOS version.

PatTheMav commented 3 years ago

Alright I was mistaken, but only by a bit. The main issue is this:

https://github.com/Homebrew/homebrew-core/commit/dcb64548b56b60cc16fa80cca1146527ad25ca8c#diff-1194b56196ad506daef7a11d505e62d7922c193a0c2b77c332c9940a837a8c27

Homebrew merged the curl and curl-openssl packages that existed before, so now "there is only curl" and this one has all those nasty dependencies that break OBS on macOS versions older than 10.15. The older curl version did not, so that's why it was ok for us, but OBS should've never been linked against Homebrew's curl in the first place.

Give that curl is keg-only for that reason, it is weird how/why cmake finds this version and prefers it over the system-provided curl, so the actual fix requires futzing around with FindLibcurl.cmake.

syropian commented 3 years ago

Thanks for looking into this @PatTheMav, if you need someone to test any release binaries I'll be around most of the day.

PatTheMav commented 3 years ago

Another involved factor is this: https://gitlab.kitware.com/cmake/cmake/-/issues/20863

The system curl libraries do not actually exist in the file system, instead you link against stub files provided by the Xcode SDK which are then resolved by dyld using the new dynamic linker cache on Big Sur. At least that's what happens on Big Sur. Still cmake seems to prefer libraries installed in /usr/local which is the part we need to disable/work around.

PatTheMav commented 3 years ago

@syropian Please check the macOS build found here: https://github.com/obsproject/obs-studio/actions/runs/423640705

I've found that the JACK plugin still uses OpenSSL (mainly because it requires berkeley-db which requires OpenSSL on Homebrew) so maybe we'll need to fix this as well.

syropian commented 3 years ago

Hey @PatTheMav, just tried it but unfortunately it's still crashing for me, this time with a slightly different error:

Process:               obs [12864]
Path:                  /Applications/OBS.app/Contents/MacOS/obs
Identifier:            com.obsproject.obs-studio
Version:               26.1.0-da458d0e7 (26.1.0-da458d0e7)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           obs [12864]
User ID:               501

Date/Time:             2020-12-15 12:06:00.792 -0500
OS Version:            Mac OS X 10.13.6 (17G7024)
Report Version:        12
Anonymous UUID:        53822BA7-5425-7DB6-C0B6-79FB1D0CAD06

Time Awake Since Boot: 8300 seconds

System Integrity Protection: disabled

Crashed Thread:        52  mp_media_thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    DYLD, [0x4] Symbol missing

Dyld Error Message:
  Symbol not found: ____chkstk_darwin
  Referenced from: /Applications/OBS.app/Contents/MacOS/../Frameworks/libavcodec.58.dylib
  Expected in: /usr/lib/libSystem.B.dylib
PatTheMav commented 3 years ago

That's ffmpeg - all our dependencies should be built with macOS 10.13 as minimum target, so that's weird. I can check it out, but no promises yet.

PatTheMav commented 3 years ago

Just to be sure, 26.0.2 works fine for you?

syropian commented 3 years ago

@PatTheMav Yep, just re-downloaded 26.0.2 and it seems to be running fine!

PatTheMav commented 3 years ago

~Might be a long shot, but this makes me suspect x264:~

~https://github.com/Homebrew/homebrew-core/commit/574fc01bdf61ceb20a395db2dc5efeb77b737f32#diff-318a52baff36863f732059e8e4a104569f55e712ce6fa7bbf5b1a347cbf2f7ed~

So after searching through the object dumps of all our dependencies I cam to the conclusion that mp3lame which I added to macOS was the culprit - no other library had references to ____chkstk_darwin.

Explicitly setting MACOSX_DEPLOYMENT_TARGET="10.13" before compiling it seems to have fixed it (at least object dumps didn't show the symbol anymore), which is weird as that one is set to the build environments by default.

I'll update our dependency configuration tomorrow, after which I can create a PR updating the pre-built deps for macOS to fix this. I don't know when we'll release an actual fix version after that, but probably not this week.

syropian commented 3 years ago

Sounds good, thank you for your time and effort @PatTheMav! OBS 26.0.2 works perfectly fine in the meantime 😄

akionsight commented 3 years ago

Hey @PatTheMav, just tried it but unfortunately it's still crashing for me, this time with a slightly different error:

Process:               obs [12864]
Path:                  /Applications/OBS.app/Contents/MacOS/obs
Identifier:            com.obsproject.obs-studio
Version:               26.1.0-da458d0e7 (26.1.0-da458d0e7)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           obs [12864]
User ID:               501

Date/Time:             2020-12-15 12:06:00.792 -0500
OS Version:            Mac OS X 10.13.6 (17G7024)
Report Version:        12
Anonymous UUID:        53822BA7-5425-7DB6-C0B6-79FB1D0CAD06

Time Awake Since Boot: 8300 seconds

System Integrity Protection: disabled

Crashed Thread:        52  mp_media_thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Reason:    DYLD, [0x4] Symbol missing

Dyld Error Message:
  Symbol not found: ____chkstk_darwin
  Referenced from: /Applications/OBS.app/Contents/MacOS/../Frameworks/libavcodec.58.dylib
  Expected in: /usr/lib/libSystem.B.dylib

I don't think this is a crash @syropian. This looks more like an about due to an exception. Due to bad data (i suspect, could be 100% wrong).

PatTheMav commented 3 years ago

@akionsight Well yes technically it is an exception, as a function called abort() during execution, hence EXC_CRASH (SIGABRT). Nevertheless it is a crash induced by that and the core reason is that ____chkstk_darwin doesn't exist in libSystem.B.dylib shipped on macOS 10.13.

PatTheMav commented 3 years ago

@akionsight Please check the macOS artifact available here: https://github.com/obsproject/obs-studio/actions/runs/426640862

akionsight commented 3 years ago

@PatTheMav, I just tested the macOS artifact on MacOS Big Sur (version: 11.1). It works flawlessly and after some serious testing and recording some videos with a lot of inputs, I think it works fine.

PatTheMav commented 3 years ago

@akionsight Thanks, but... The crashes happened on 10.13.6 right? That's where the artifact needs to be tested, because Big Sur of course has the ____chkstk_darwin symbol in libSystem so it wouldn't have crashed even without the fix.

But that's on me, I meant to mention @syropian. 😬

syropian commented 3 years ago

@PatTheMav Just tried it, still crashing 😢 . I'm attaching the longer version of the log in case it helps narrow things down:

Open for Crash Log ``` Process: obs [1209] Path: /Users/USER/*/OBS.app/Contents/MacOS/obs Identifier: com.obsproject.obs-studio Version: 26.1.0-f92aaf5fb (26.1.0-f92aaf5fb) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: obs [1209] User ID: 501 Date/Time: 2020-12-17 09:03:44.367 -0500 OS Version: Mac OS X 10.13.6 (17G7024) Report Version: 12 Anonymous UUID: 53822BA7-5425-7DB6-C0B6-79FB1D0CAD06 Time Awake Since Boot: 280 seconds System Integrity Protection: disabled Crashed Thread: 51 mp_media_thread Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Reason: DYLD, [0x4] Symbol missing Dyld Error Message: Symbol not found: ____chkstk_darwin Referenced from: /Users/USER/*/OBS.app/Contents/MacOS/../Frameworks/libavcodec.58.dylib Expected in: /usr/lib/libSystem.B.dylib Thread 0:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 org.qt-project.QtSvg 0x00000001083515a4 0x10833b000 + 91556 1 org.qt-project.QtSvg 0x00000001083539a5 0x10833b000 + 100773 2 org.qt-project.QtSvg 0x0000000108355c76 0x10833b000 + 109686 3 org.qt-project.QtSvg 0x0000000108354cee 0x10833b000 + 105710 4 org.qt-project.QtSvg 0x00000001083496a1 QSvgHandler::startElement(QString const&, QXmlStreamAttributes const&) + 3137 5 org.qt-project.QtSvg 0x00000001083487fa QSvgHandler::parse() + 234 6 org.qt-project.QtSvg 0x0000000108348472 QSvgHandler::init() + 194 7 org.qt-project.QtSvg 0x0000000108363ee0 QSvgTinyDocument::load(QXmlStreamReader*) + 32 8 org.qt-project.QtSvg 0x00000001083664e1 QSvgRenderer::load(QXmlStreamReader*) + 49 9 libqsvg.dylib 0x000000000b891f94 0xb88b000 + 28564 10 libqsvg.dylib 0x000000000b8926fe 0xb88b000 + 30462 11 org.qt-project.QtGui 0x0000000008ac01c5 QImageReader::size() const + 85 12 org.qt-project.QtGui 0x0000000008bec3a8 QCss::ValueExtractor::extractImage(QIcon*, QFlags*, QSize*) + 344 13 org.qt-project.QtWidgets 0x00000000083fe0b4 0x8355000 + 692404 14 org.qt-project.QtWidgets 0x00000000084034ea 0x8355000 + 713962 15 org.qt-project.QtWidgets 0x00000000083fbf5d 0x8355000 + 683869 16 org.qt-project.QtWidgets 0x000000000841355e 0x8355000 + 779614 17 org.qt-project.QtWidgets 0x00000000084147ab 0x8355000 + 784299 18 org.qt-project.QtWidgets 0x000000000845fc60 QCheckBox::sizeHint() const + 336 19 org.qt-project.QtWidgets 0x0000000008388ee8 QWidgetItemV2::updateCacheIfNecessary() const + 40 20 org.qt-project.QtWidgets 0x0000000008389433 QWidgetItemV2::maximumSize() const + 67 21 org.qt-project.QtWidgets 0x0000000008379c7c 0x8355000 + 150652 22 org.qt-project.QtWidgets 0x000000000837b828 QBoxLayout::setGeometry(QRect const&) + 136 23 org.qt-project.QtWidgets 0x0000000008385551 QLayoutPrivate::doResize() + 145 24 org.qt-project.QtWidgets 0x0000000008385a0a QLayout::activate() + 858 25 org.qt-project.QtWidgets 0x00000000083a182c QWidgetPrivate::setVisible(bool) + 540 26 org.qt-project.QtWidgets 0x00000000085dabf2 QAbstractItemView::setIndexWidget(QModelIndex const&, QWidget*) + 242 27 com.obsproject.obs-studio 0x00000001080c780f SourceTree::ResetWidgets() + 303 28 com.obsproject.obs-studio 0x00000001080c72c1 SourceTreeModel::SceneChanged() + 129 29 com.obsproject.obs-studio 0x0000000107fae0ef OBSStudioAPI::on_event(obs_frontend_event) + 111 30 com.obsproject.obs-studio 0x0000000107fbf022 OBSBasic::Load(char const*) + 4562 31 com.obsproject.obs-studio 0x0000000107fc3a23 OBSBasic::OBSInit() + 1587 32 com.obsproject.obs-studio 0x0000000107f9fbf9 OBSApp::OBSInit() + 505 33 com.obsproject.obs-studio 0x0000000107fa3c28 main + 5032 34 libdyld.dylib 0x00007fff5633f015 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff5649028a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff56657009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff56656be9 start_wqthread + 13 Thread 2: 0 libsystem_kernel.dylib 0x00007fff5649028a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff56657009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff56656be9 start_wqthread + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff5649028a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff56657009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff56656be9 start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff5649028a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff56657009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff56656be9 start_wqthread + 13 Thread 5:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 6:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 7:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 8:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 9:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 10:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 11:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 12:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x0000000009059fa0 0x9031000 + 167840 3 org.qt-project.QtCore 0x0000000009059cfe 0x9031000 + 167166 4 org.qt-project.QtCore 0x0000000009059c73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000090566dd 0x9031000 + 153309 6 org.qt-project.QtCore 0x0000000009052229 0x9031000 + 135721 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000008958930 os_event_timedwait + 176 3 libobs.0.dylib 0x00000000089918ce obs_hotkey_thread + 174 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 14:: audio-io: audio thread 0 libsystem_kernel.dylib 0x00007fff5648fd82 __semwait_signal + 10 1 libsystem_c.dylib 0x00007fff5640a724 nanosleep + 199 2 libsystem_c.dylib 0x00007fff5640a618 usleep + 53 3 libobs.0.dylib 0x0000000008944402 audio_thread + 418 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 15:: video-io: video thread 0 libsystem_kernel.dylib 0x00007fff56486246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000008958ad0 os_sem_wait + 16 2 libobs.0.dylib 0x0000000008942b7b video_thread + 75 3 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 16:: libobs: graphics thread 0 libz.1.dylib 0x00007fff561319b0 0x7fff56127000 + 43440 1 libz.1.dylib 0x00007fff5612e6b7 inflate + 5432 2 libavcodec.58.dylib 0x0000000108a6dddd png_decode_idat + 109 Thread 17: 0 libsystem_kernel.dylib 0x00007fff56486246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000008958ad0 os_sem_wait + 16 2 libobs-scripting.dylib 0x0000000011578b29 defer_thread + 25 3 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 18: 0 libsystem_kernel.dylib 0x00007fff5648635a mach_wait_until + 10 1 com.kinoni.EpocCamPlugIn 0x0000000011bb160e ClockDriver::waitThreadMain() + 232 2 com.kinoni.EpocCamPlugIn 0x0000000011bb1a89 void* std::__1::__thread_proxy >, void (ClockDriver::*)(), ClockDriver*> >(void*) + 59 3 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 19:: com.apple.CFSocket.private 0 libsystem_kernel.dylib 0x00007fff5648fcf2 __select + 10 1 com.apple.CoreFoundation 0x00007fff2e3fe01b __CFSocketManager + 635 2 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 3 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 4 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 20: 0 libsystem_kernel.dylib 0x00007fff5648625e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff5631594f _dispatch_sema4_timedwait + 72 2 libdispatch.dylib 0x00007fff5630d94e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff56308e53 _dispatch_worker_thread + 251 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 21: 0 libsystem_kernel.dylib 0x00007fff5648625e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff5631594f _dispatch_sema4_timedwait + 72 2 libdispatch.dylib 0x00007fff5630d94e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff56308e53 _dispatch_worker_thread + 251 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 22: 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000008958930 os_event_timedwait + 176 3 mac-capture.so 0x0000000012861b8d reconnect_thread + 29 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 23: 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000008958930 os_event_timedwait + 176 3 mac-capture.so 0x0000000012861b8d reconnect_thread + 29 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 24:: com.apple.audio.IOThread.client 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.audio.CoreAudio 0x00007fff2de1b87a HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 124 3 com.apple.audio.CoreAudio 0x00007fff2de1b7ed HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 45 4 com.apple.audio.CoreAudio 0x00007fff2de18859 HALC_ProxyIOContext::IOWorkLoop() + 977 5 com.apple.audio.CoreAudio 0x00007fff2de182bc HALC_ProxyIOContext::IOThreadEntry(void*) + 128 6 com.apple.audio.CoreAudio 0x00007fff2de17ffe HALB_IOThread::Entry(void*) + 72 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 25:: ThreadPoolServiceThread 0 libsystem_kernel.dylib 0x00007fff56490c02 kevent64 + 10 1 org.chromium.ContentShell.framework 0x000000001521a051 0x12a2c000 + 41869393 2 org.chromium.ContentShell.framework 0x0000000015219ee6 0x12a2c000 + 41869030 3 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 4 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 5 org.chromium.ContentShell.framework 0x00000000151cf1b4 0x12a2c000 + 41562548 6 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 26:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca9ad 0x12a2c000 + 41544109 6 org.chromium.ContentShell.framework 0x00000000151ca694 0x12a2c000 + 41543316 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 27:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca9ad 0x12a2c000 + 41544109 6 org.chromium.ContentShell.framework 0x00000000151ca604 0x12a2c000 + 41543172 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 28:: Chrome_IOThread 0 libsystem_kernel.dylib 0x00007fff56490c02 kevent64 + 10 1 org.chromium.ContentShell.framework 0x000000001521a051 0x12a2c000 + 41869393 2 org.chromium.ContentShell.framework 0x0000000015219ee6 0x12a2c000 + 41869030 3 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 4 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 5 org.chromium.ContentShell.framework 0x0000000014067804 0x12a2c000 + 23312388 6 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 29:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff2e3c3ed5 __CFRunLoopServiceMachPort + 341 3 com.apple.CoreFoundation 0x00007fff2e3c3227 __CFRunLoopRun + 1783 4 com.apple.CoreFoundation 0x00007fff2e3c28a3 CFRunLoopRunSpecific + 483 5 com.apple.Foundation 0x00007fff304c0e76 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277 6 org.chromium.ContentShell.framework 0x0000000015176d21 0x12a2c000 + 41200929 7 org.chromium.ContentShell.framework 0x0000000015175b48 0x12a2c000 + 41196360 8 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 9 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 10 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 11 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 12 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 13 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 14 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 30:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca9ad 0x12a2c000 + 41544109 6 org.chromium.ContentShell.framework 0x00000000151ca694 0x12a2c000 + 41543316 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 31:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca9ad 0x12a2c000 + 41544109 6 org.chromium.ContentShell.framework 0x00000000151ca694 0x12a2c000 + 41543316 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 32:: ThreadPoolForegroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca9ad 0x12a2c000 + 41544109 6 org.chromium.ContentShell.framework 0x00000000151ca694 0x12a2c000 + 41543316 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 33:: CompositorTileWorker1/119819 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 org.chromium.ContentShell.framework 0x0000000015210965 0x12a2c000 + 41830757 3 org.chromium.ContentShell.framework 0x00000000164bd608 0x12a2c000 + 61412872 4 org.chromium.ContentShell.framework 0x00000000151df172 0x12a2c000 + 41628018 5 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 6 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 7 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 8 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 34:: AudioThread 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afa4f 0x12a2c000 + 41433679 4 org.chromium.ContentShell.framework 0x00000000151759d1 0x12a2c000 + 41195985 5 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 6 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 7 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 8 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 9 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 10 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 11 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 35:: ThreadPoolSingleThreadSharedBackgroundBlocking0 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afa4f 0x12a2c000 + 41433679 4 org.chromium.ContentShell.framework 0x00000000151ca12a 0x12a2c000 + 41541930 5 org.chromium.ContentShell.framework 0x00000000151ca77f 0x12a2c000 + 41543551 6 org.chromium.ContentShell.framework 0x00000000151ca634 0x12a2c000 + 41543220 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 36:: ThreadPoolSingleThreadSharedForegroundBlocking1 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afa4f 0x12a2c000 + 41433679 4 org.chromium.ContentShell.framework 0x00000000151ca12a 0x12a2c000 + 41541930 5 org.chromium.ContentShell.framework 0x00000000151ca77f 0x12a2c000 + 41543551 6 org.chromium.ContentShell.framework 0x00000000151ca6c4 0x12a2c000 + 41543364 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 37:: ThreadPoolBackgroundWorker 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 org.chromium.ContentShell.framework 0x00000000151afb90 0x12a2c000 + 41434000 3 org.chromium.ContentShell.framework 0x00000000151afca1 0x12a2c000 + 41434273 4 org.chromium.ContentShell.framework 0x00000000151ca138 0x12a2c000 + 41541944 5 org.chromium.ContentShell.framework 0x00000000151ca77f 0x12a2c000 + 41543551 6 org.chromium.ContentShell.framework 0x00000000151ca604 0x12a2c000 + 41543172 7 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 8 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 9 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 10 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 38:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff2e3c3ed5 __CFRunLoopServiceMachPort + 341 3 com.apple.CoreFoundation 0x00007fff2e3c3227 __CFRunLoopRun + 1783 4 com.apple.CoreFoundation 0x00007fff2e3c28a3 CFRunLoopRunSpecific + 483 5 com.apple.Foundation 0x00007fff304c0e76 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277 6 org.chromium.ContentShell.framework 0x0000000015176d21 0x12a2c000 + 41200929 7 org.chromium.ContentShell.framework 0x0000000015175b48 0x12a2c000 + 41196360 8 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 9 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 10 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 11 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 12 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 13 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 14 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 39:: NetworkConfigWatcher 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff2e3c3ed5 __CFRunLoopServiceMachPort + 341 3 com.apple.CoreFoundation 0x00007fff2e3c3227 __CFRunLoopRun + 1783 4 com.apple.CoreFoundation 0x00007fff2e3c28a3 CFRunLoopRunSpecific + 483 5 com.apple.Foundation 0x00007fff304c0e76 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277 6 org.chromium.ContentShell.framework 0x0000000015176d21 0x12a2c000 + 41200929 7 org.chromium.ContentShell.framework 0x0000000015175b48 0x12a2c000 + 41196360 8 org.chromium.ContentShell.framework 0x00000000151c2818 0x12a2c000 + 41510936 9 org.chromium.ContentShell.framework 0x0000000015197fb7 0x12a2c000 + 41336759 10 org.chromium.ContentShell.framework 0x00000000151dfd44 0x12a2c000 + 41631044 11 org.chromium.ContentShell.framework 0x00000000152116d7 0x12a2c000 + 41834199 12 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 13 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 14 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 40:: mp_media_thread 0 libsystem_kernel.dylib 0x00007fff56486246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000008958ad0 os_sem_wait + 16 2 obs-ffmpeg.so 0x000000001abb0bad mp_media_thread_start + 701 3 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 41:: com.apple.coreaudio.AQClient 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff2e3c3ed5 __CFRunLoopServiceMachPort + 341 3 com.apple.CoreFoundation 0x00007fff2e3c3227 __CFRunLoopRun + 1783 4 com.apple.CoreFoundation 0x00007fff2e3c28a3 CFRunLoopRunSpecific + 483 5 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd2640a GenericRunLoopThread::Entry(void*) + 158 6 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd26119 CAPThread::Entry(CAPThread*) + 77 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 42:: AQConverterThread 0 libsystem_kernel.dylib 0x00007fff5648fa16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff56658589 _pthread_cond_wait + 732 2 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd55acb CAGuard::Wait() + 73 3 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd4ffa1 AQConverterManager::AQConverterThread::Run() + 425 4 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd4fded AQConverterManager::AQConverterThread::ConverterThreadEntry(void*) + 9 5 com.apple.audio.toolbox.AudioToolbox 0x00007fff2cd26119 CAPThread::Entry(CAPThread*) + 77 6 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 7 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 8 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 43:: mp_media_thread 0 libsystem_kernel.dylib 0x00007fff56486246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000008958ad0 os_sem_wait + 16 2 obs-ffmpeg.so 0x000000001abb0bad mp_media_thread_start + 701 3 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 44: 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac117a6 0x7fff3ab5f000 + 731046 3 com.apple.VideoToolbox 0x00007fff3ac1e350 0x7fff3ab5f000 + 783184 4 com.apple.VideoToolbox 0x00007fff3ab6f7f4 0x7fff3ab5f000 + 67572 5 com.apple.VideoToolbox 0x00007fff3ab6e373 0x7fff3ab5f000 + 62323 6 com.apple.CMIOUnits 0x0000000024069012 0x24045000 + 147474 7 com.apple.CMIOUnits 0x0000000024067aa4 0x24045000 + 141988 8 com.apple.CMIOUnits 0x00000000240dbb3b 0x24045000 + 617275 9 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 10 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 11 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 12 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 13 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 14 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 15 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 16 com.apple.CMIOUnits 0x00000000240d971a 0x24045000 + 608026 17 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 18 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 19 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 20 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 21 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 22 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 23 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 24 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 25 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 26 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 27 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 28 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 29 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 30 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 31 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 32 com.apple.CMIOUnits 0x00000000240e6e34 0x24045000 + 663092 33 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 34 com.apple.CMIOUnits 0x00000000240e7612 0x24045000 + 665106 35 com.apple.CMIOUnits 0x000000002409009c 0x24045000 + 307356 36 com.apple.CoreMediaIO 0x00007fff2f48e8c9 CMIOGraph::PullOutputUnits(bool, bool&, bool&, bool&) + 279 37 com.apple.CoreMediaIO 0x00007fff2f48eeee CMIOGraph::DoWork(unsigned int) + 836 38 com.apple.CoreMediaIO 0x00007fff2f491543 CMIO::Thread::QueuedTWorkThread::DoWork() + 125 39 com.apple.CoreMediaIO 0x00007fff2f49ac67 CMIO::Thread::SignaledThread::ThreadLoop() + 227 40 com.apple.CoreMediaIO 0x00007fff2f49ab5a CMIO::Thread::SignaledThread::WorkQueuedThreadCallback(void*) + 154 41 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 42 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 43 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 44 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 45: 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff2e3c3ed5 __CFRunLoopServiceMachPort + 341 3 com.apple.CoreFoundation 0x00007fff2e3c3227 __CFRunLoopRun + 1783 4 com.apple.CoreFoundation 0x00007fff2e3c28a3 CFRunLoopRunSpecific + 483 5 com.apple.CoreFoundation 0x00007fff2e401373 CFRunLoopRun + 99 6 com.apple.cmio.DAL.VDC-4 0x0000000012807bd6 0x12801000 + 27606 7 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 46: 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac117a6 0x7fff3ab5f000 + 731046 3 com.apple.VideoToolbox 0x00007fff3ac1e350 0x7fff3ab5f000 + 783184 4 com.apple.VideoToolbox 0x00007fff3ab6f7f4 0x7fff3ab5f000 + 67572 5 com.apple.VideoToolbox 0x00007fff3ab6e373 0x7fff3ab5f000 + 62323 6 com.apple.CMIOUnits 0x0000000024069012 0x24045000 + 147474 7 com.apple.CMIOUnits 0x0000000024067aa4 0x24045000 + 141988 8 com.apple.CMIOUnits 0x00000000240dbb3b 0x24045000 + 617275 9 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 10 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 11 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 12 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 13 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 14 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 15 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 16 com.apple.CMIOUnits 0x00000000240d971a 0x24045000 + 608026 17 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 18 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 19 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 20 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 21 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 22 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 23 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 24 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 25 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 26 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 27 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 28 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 29 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 30 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 31 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 32 com.apple.CMIOUnits 0x00000000240e6e34 0x24045000 + 663092 33 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 34 com.apple.CMIOUnits 0x00000000240e7612 0x24045000 + 665106 35 com.apple.CMIOUnits 0x000000002409009c 0x24045000 + 307356 36 com.apple.CoreMediaIO 0x00007fff2f48e8c9 CMIOGraph::PullOutputUnits(bool, bool&, bool&, bool&) + 279 37 com.apple.CoreMediaIO 0x00007fff2f48eeee CMIOGraph::DoWork(unsigned int) + 836 38 com.apple.CoreMediaIO 0x00007fff2f491543 CMIO::Thread::QueuedTWorkThread::DoWork() + 125 39 com.apple.CoreMediaIO 0x00007fff2f49ac67 CMIO::Thread::SignaledThread::ThreadLoop() + 227 40 com.apple.CoreMediaIO 0x00007fff2f49ab5a CMIO::Thread::SignaledThread::WorkQueuedThreadCallback(void*) + 154 41 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 42 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 43 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 44 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 47: 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac117a6 0x7fff3ab5f000 + 731046 3 com.apple.VideoToolbox 0x00007fff3ac1e350 0x7fff3ab5f000 + 783184 4 com.apple.VideoToolbox 0x00007fff3ab6f7f4 0x7fff3ab5f000 + 67572 5 com.apple.VideoToolbox 0x00007fff3ab6e373 0x7fff3ab5f000 + 62323 6 com.apple.CMIOUnits 0x0000000024069012 0x24045000 + 147474 7 com.apple.CMIOUnits 0x0000000024067aa4 0x24045000 + 141988 8 com.apple.CMIOUnits 0x00000000240dbb3b 0x24045000 + 617275 9 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 10 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 11 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 12 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 13 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 14 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 15 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 16 com.apple.CMIOUnits 0x00000000240d971a 0x24045000 + 608026 17 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 18 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 19 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 20 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 21 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 22 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 23 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 24 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 25 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 26 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 27 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 28 com.apple.CMIOUnits 0x00000000240dbac0 0x24045000 + 617152 29 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 30 com.apple.CMIOUnits 0x000000002408f2bb 0x24045000 + 303803 31 com.apple.CMIOUnits 0x00000000240c8061 0x24045000 + 536673 32 com.apple.CMIOUnits 0x00000000240e6e34 0x24045000 + 663092 33 com.apple.CMIOUnits 0x000000002404fda7 0x24045000 + 44455 34 com.apple.CMIOUnits 0x00000000240e7612 0x24045000 + 665106 35 com.apple.CMIOUnits 0x000000002409009c 0x24045000 + 307356 36 com.apple.CoreMediaIO 0x00007fff2f48e8c9 CMIOGraph::PullOutputUnits(bool, bool&, bool&, bool&) + 279 37 com.apple.CoreMediaIO 0x00007fff2f48eeee CMIOGraph::DoWork(unsigned int) + 836 38 com.apple.CoreMediaIO 0x00007fff2f491543 CMIO::Thread::QueuedTWorkThread::DoWork() + 125 39 com.apple.CoreMediaIO 0x00007fff2f49ac67 CMIO::Thread::SignaledThread::ThreadLoop() + 227 40 com.apple.CoreMediaIO 0x00007fff2f49ab5a CMIO::Thread::SignaledThread::WorkQueuedThreadCallback(void*) + 154 41 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 42 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 43 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 44 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 48:: com.apple.coremedia.vtremotedecompressionclient.notifier 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac1f124 0x7fff3ab5f000 + 786724 3 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 49:: com.apple.coremedia.vtremotedecompressionclient.notifier 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac1f124 0x7fff3ab5f000 + 786724 3 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 50:: com.apple.coremedia.vtremotedecompressionclient.notifier 0 libsystem_kernel.dylib 0x00007fff5648620a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff56485724 mach_msg + 60 2 com.apple.VideoToolbox 0x00007fff3ac1f124 0x7fff3ab5f000 + 786724 3 com.apple.CoreMedia 0x00007fff2f374937 figThreadMain + 277 4 libsystem_pthread.dylib 0x00007fff56657661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff5665750d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff56656bf9 thread_start + 13 Thread 51 Crashed:: mp_media_thread 0 dyld 0x000000010a76324a __abort_with_payload + 10 1 dyld 0x000000010a762bbc abort_with_payload_wrapper_internal + 89 2 dyld 0x000000010a762be9 abort_with_payload + 9 3 dyld 0x000000010a736482 dyld::halt(char const*) + 354 4 dyld 0x000000010a7365a9 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 170 5 libdyld.dylib 0x00007fff5633f292 dyld_stub_binder + 282 6 ??? 0x000000010982a000 0 + 4454522880 7 libavcodec.58.dylib 0x000000010911f535 vp9_receive_compressed_data + 853 8 libavcodec.58.dylib 0x000000010910ae5f decode_one + 79 9 libavcodec.58.dylib 0x000000010910a23c decoder_decode + 732 10 libavcodec.58.dylib 0x0000000108eda420 vpx_codec_decode + 64 11 libavcodec.58.dylib 0x00000001088b8dab vpx_decode + 91 Thread 51 crashed with X86 Thread State (64-bit): rax: 0x0000000002000209 rbx: 0x0000000000000004 rcx: 0x000070000a7bd778 rdx: 0x000070000a7bdbf0 rdi: 0x0000000000000006 rsi: 0x0000000000000004 rbp: 0x000070000a7bd7d0 rsp: 0x000070000a7bd778 r8: 0x000070000a7bd7f0 r9: 0x0000000000000000 r10: 0x0000000000000097 r11: 0x0000000000000246 r12: 0x0000000000000097 r13: 0x000070000a7bdbf0 r14: 0x0000000000000006 r15: 0x0000000000000000 rip: 0x000000010a76324a rfl: 0x0000000000000246 cr2: 0x000000010a7b3fe0 Logical CPU: 0 Error Code: 0x02000209 Trap Number: 133 Binary Images: 0x7f82000 - 0x81b5fff +libavformat.58.dylib (0) <5C064026-EECF-3BF8-A88F-14DC2893EBC9> /Users/USER/*/OBS.app/Contents/Frameworks/libavformat.58.dylib 0x8292000 - 0x82e4ff7 +org.sparkle-project.Sparkle (1.23.0 34-g962878b84 - 1.23.0) <75E94DED-6421-391D-A542-553EAFBBAA1A> /Users/USER/*/OBS.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle 0x8339000 - 0x8344ff7 +org.qt-project.QtMacExtras (5.15 - 5.15.2) <24966A40-80C1-3BCC-B630-07C8E13F9F2E> /Users/USER/*/OBS.app/Contents/Frameworks/QtMacExtras.framework/Versions/5/QtMacExtras 0x8355000 - 0x87a0ffb +org.qt-project.QtWidgets (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets 0x8919000 - 0x89c0ffb +libobs.0.dylib (0) <6A2AA05F-49CD-3D51-8CE9-D77808955F8F> /Users/USER/*/OBS.app/Contents/Frameworks/libobs.0.dylib 0x8a19000 - 0x8f04ffb +org.qt-project.QtGui (5.15 - 5.15.2) <7170EC47-E7C7-3807-BFBB-06B6F9CD2589> /Users/USER/*/OBS.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui 0x9031000 - 0x9574a47 +org.qt-project.QtCore (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore 0x9651000 - 0x965cfff +libjansson.4.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libjansson.4.dylib 0x966d000 - 0x9734fff +libswscale.5.dylib (0) <00AD3E3C-553A-34EE-9BA2-ACED74684133> /Users/USER/*/OBS.app/Contents/Frameworks/libswscale.5.dylib 0x977d000 - 0x9798ff7 +libswresample.3.dylib (0) <2395DC6C-2AAD-34EA-B354-6031F83DA0C9> /Users/USER/*/OBS.app/Contents/Frameworks/libswresample.3.dylib 0x97ad000 - 0x97e4ff7 +libmbedtls.2.24.0.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libmbedtls.2.24.0.dylib 0x97f9000 - 0x9818ff3 +libmbedx509.2.24.0.dylib (0) <68D52367-129E-306C-A282-E70B66B7966E> /Users/USER/*/OBS.app/Contents/Frameworks/libmbedx509.2.24.0.dylib 0x9829000 - 0x989cff7 +libmbedcrypto.2.24.0.dylib (0) <7E38FD09-FE8C-36B3-8E41-26E80FD2040E> /Users/USER/*/OBS.app/Contents/Frameworks/libmbedcrypto.2.24.0.dylib 0xb3c5000 - 0xb52cff7 +libqcocoa.dylib (0) <377A156F-724F-34E6-A468-C621B8272934> /Users/USER/*/OBS.app/Contents/PlugIns/platforms/libqcocoa.dylib 0xb589000 - 0xb5e8ff3 +org.qt-project.QtDBus (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtDBus.framework/Versions/5/QtDBus 0xb611000 - 0xb63cffb +org.qt-project.QtPrintSupport (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport 0xb7e7000 - 0xb80efff +libqmacstyle.dylib (0) <78928D28-4ABF-3B0B-9216-B62C347BFE92> /Users/USER/*/OBS.app/Contents/PlugIns/styles/libqmacstyle.dylib 0xb827000 - 0xb82effb +libqgif.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqgif.dylib 0xb83b000 - 0xb842fff +libqicns.dylib (0) <6BE53464-6ADE-395B-B34D-596CAC1417AF> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqicns.dylib 0xb84f000 - 0xb856ff3 +libqico.dylib (0) <9B4DEDD8-5050-32F6-B7DE-A93C4F3A1E28> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqico.dylib 0xb863000 - 0xb86aff3 +libqmacheif.dylib (0) <4AFB29A7-9BBA-3710-B66D-A0F5FF9E28B0> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqmacheif.dylib 0xb877000 - 0xb87eff3 +libqmacjp2.dylib (0) <5BA6CDD7-761C-3199-B1C2-86412E5B3624> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqmacjp2.dylib 0xb88b000 - 0xb892ffb +libqsvg.dylib (0) <4EA03F6B-C421-3F20-BE88-7569CD9084E0> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqsvg.dylib 0xb89f000 - 0xb8a6ffb +libqtga.dylib (0) <0C917909-96DF-3056-AE24-3DBE525039C6> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqtga.dylib 0xc3db000 - 0xc43effb +libqjpeg.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqjpeg.dylib 0xc44f000 - 0xc4b6ff3 +libqtiff.dylib (0) <7F918372-7B34-3637-8E4C-A9985127D32D> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqtiff.dylib 0xc4c7000 - 0xc4ceff7 +libqwbmp.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqwbmp.dylib 0xc4db000 - 0xc576ff3 +libqwebp.dylib (0) <000193C3-9EA7-3099-88C8-7919DD2948CB> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqwebp.dylib 0xc776000 - 0xc783ff7 com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <3044C23E-A258-376F-A7F6-74F6CA8770FA> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib 0xc7e0000 - 0xc7e7ffb +libqsvgicon.dylib (0) <014B7106-D373-35EA-A283-9C754E1C011C> /Users/USER/*/OBS.app/Contents/PlugIns/iconengines/libqsvgicon.dylib 0xd331000 - 0xd348ff3 +libobs-opengl.so (0) <3DE8BE29-D3C2-3B3A-92A9-E767FD9569D5> /Users/USER/*/OBS.app/Contents/Frameworks/libobs-opengl.so 0xd35d000 - 0xd3a0fff +libobsglad.0.dylib (0) <84DF403D-8DB1-382A-AD4B-88D4B4ED0C9D> /Users/USER/*/OBS.app/Contents/MacOS/libobsglad.0.dylib 0xd3fd000 - 0xde22fff com.nvidia.web.GeForceGLDriverWeb (10.33.0 - 10.3.3) <3E9D1E27-7B00-344E-B8F0-DA811518D3E0> /System/Library/Extensions/GeForceGLDriverWeb.bundle/Contents/MacOS/GeForceGLDriverWeb 0xf26e000 - 0xf271ff7 +linux-jack.so (0) <411B99D6-DC29-37DA-9D0B-3AC9B656AC17> /Users/USER/*/OBS.app/Contents/PlugIns/linux-jack.so 0xf2a2000 - 0xf2adff3 +coreaudio-encoder.so (0) <9C7D2340-86FA-36C2-A765-FBF1D9F04E89> /Users/USER/*/OBS.app/Contents/PlugIns/coreaudio-encoder.so 0x11488000 - 0x1148ffff +decklink-captions.so (0) <6EA77F25-211B-31D9-8151-17124394CA8D> /Users/USER/*/OBS.app/Contents/PlugIns/decklink-captions.so 0x114a0000 - 0x114bbfff +decklink-ouput-ui.so (0) <4A9E2968-3FE1-3DA4-9BB1-9C1645A89597> /Users/USER/*/OBS.app/Contents/PlugIns/decklink-ouput-ui.so 0x114ec000 - 0x11527fff +frontend-tools.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/frontend-tools.so 0x11574000 - 0x11583ff3 +libobs-scripting.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libobs-scripting.dylib 0x11598000 - 0x11613ff7 +libluajit-5.1.2.1.0.dylib (0) <315CC7B1-F917-374A-A6B2-2DB7343139B2> /Users/USER/*/OBS.app/Contents/Frameworks/libluajit-5.1.2.1.0.dylib 0x11624000 - 0x1162bfff +image-source.so (0) <1DD72A51-1DD8-3D10-9DD8-FD7AA3B290E1> /Users/USER/*/OBS.app/Contents/PlugIns/image-source.so 0x1163c000 - 0x1168bff3 +libjack.0.1.0.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libjack.0.1.0.dylib 0x116c8000 - 0x1170ffff +libopus.0.dylib (0) <96FF16C3-2C3F-390B-BECE-81DA8C649C84> /Users/USER/*/OBS.app/Contents/Frameworks/libopus.0.dylib 0x1171e000 - 0x11866ffb +libdb-18.1.dylib (0) <3B08A923-DF94-3423-956E-59F126DDA594> /Users/USER/*/OBS.app/Contents/Frameworks/libdb-18.1.dylib 0x1189b000 - 0x118eaff7 +libssl.1.1.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libssl.1.1.dylib 0x11923000 - 0x11ae2c1b +libcrypto.1.1.dylib (0) <0D4C193D-F91C-332F-B941-413CF775DBDF> /Users/USER/*/OBS.app/Contents/Frameworks/libcrypto.1.1.dylib 0x11b87000 - 0x11b96ff3 +mac-avcapture.so (0) <00361E9D-0271-3E7F-BE7D-5A8B97717577> /Users/USER/*/OBS.app/Contents/PlugIns/mac-avcapture.so 0x11bab000 - 0x11bbeff7 +com.kinoni.EpocCamPlugIn (1.1 - 1.1) /Library/CoreMediaIO/*/EpocCamPlugIn.plugin/Contents/MacOS/EpocCamPlugIn 0x11c0b000 - 0x11c1aff7 +SnapCamera (8.5.0 - 8.5.0) <5A08F270-B2A0-3D49-8B9C-F413E7856316> /Library/CoreMediaIO/*/SnapCamera.plugin/Contents/MacOS/SnapCamera 0x11c3f000 - 0x11c5aff7 +com.reincubate.macos.cam.dal (1.0.9 - 90) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/MacOS/ReincubateCamoDAL 0x11cab000 - 0x11cb2fff +com.reincubate.util.cam.logging (1.0.9 - 90) <3647703D-98AC-3972-8777-BEAB0352C8D3> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/CamLogging.framework/Versions/A/CamLogging 0x11cc3000 - 0x11cd7ff7 +libswiftAppKit.dylib (5.0.1 - 1001.0.82.4) <1297109A-D760-3C74-A36C-C0273A7217EC> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftAppKit.dylib 0x11cfb000 - 0x1206cfff +libswiftCore.dylib (5.0.1 - 1001.0.82.4) <44D65143-94D5-306A-8D56-15359A7FF04E> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCore.dylib 0x12355000 - 0x1235afff +libswiftCoreAudio.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreAudio.dylib 0x12368000 - 0x12370ff7 +libswiftCoreData.dylib (5.0.1 - 1001.0.82.4) <72A6FD8B-034C-3F50-9FF6-9D5723920201> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreData.dylib 0x12381000 - 0x12384fff +libswiftCoreFoundation.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreFoundation.dylib 0x1238c000 - 0x1239bfff +libswiftCoreGraphics.dylib (5.0.1 - 1001.0.82.4) <4C9FA634-B14A-343E-9F76-5AAFCA5FC077> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreGraphics.dylib 0x123bd000 - 0x123c2ffb +libswiftCoreImage.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreImage.dylib 0x123ca000 - 0x123d4fff +libswiftCoreMedia.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreMedia.dylib 0x123e0000 - 0x123e7ff7 +libswiftDarwin.dylib (5.0.1 - 1001.0.82.4) <144DA4C8-8322-3E6E-942D-9976CAFA8BAE> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftDarwin.dylib 0x123f9000 - 0x12411ff7 +libswiftDispatch.dylib (5.0.1 - 1001.0.82.4) <0A4818EF-BCD8-3183-9D34-5F8D4920C05C> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftDispatch.dylib 0x1244c000 - 0x125e4ff7 +libswiftFoundation.dylib (5.0.1 - 1001.0.82.4) <868B3228-5A2C-3556-A77A-695000EFCE27> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftFoundation.dylib 0x12766000 - 0x12769ff3 +libswiftIOKit.dylib (5.0.1 - 1001.0.82.4) <75FE0421-8424-38AD-9372-17A730C44643> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftIOKit.dylib 0x12772000 - 0x1277bfff +libswiftMetal.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftMetal.dylib 0x12788000 - 0x1278cff7 +libswiftObjectiveC.dylib (5.0.1 - 1001.0.82.4) <1A3E8F91-FF6E-3733-B1AD-CC4D4F3378F4> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftObjectiveC.dylib 0x12798000 - 0x1279eff7 +libswiftQuartzCore.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftQuartzCore.dylib 0x127a7000 - 0x127aafff +libswiftXPC.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftXPC.dylib 0x127b3000 - 0x127baff7 +libswiftos.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftos.dylib 0x127c5000 - 0x127f0ff3 +com.johnboiles.obs-mac-virtualcam.dal-plugin (1.2.1 - 1.2.1) <967DEF02-74CE-3398-A5B4-681AA9D2DD12> /Library/CoreMediaIO/*/obs-mac-virtualcam.plugin/Contents/MacOS/obs-mac-virtualcam 0x12801000 - 0x12827fff com.apple.cmio.DAL.VDC-4 (814.0 - 4995) <7374F00D-71A9-3EC2-A090-957183D6446D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC 0x12833000 - 0x1284cfff com.apple.cmio.DAL.iOSScreenCapture (814.0 - 4995) <9A2DC4AE-D697-3CD4-82C5-2BB3E5DD97A8> /System/Library/Frameworks/CoreMediaIO.framework/Resources/iOSScreenCapture.plugin/Contents/MacOS/iOSScreenCapture 0x1285a000 - 0x12865fff +mac-capture.so (0) <6C6952E1-99C8-31D1-AEE7-121CDCC3540D> /Users/USER/*/OBS.app/Contents/PlugIns/mac-capture.so 0x12876000 - 0x12881ff3 +mac-decklink.so (0) <4A684CA5-AC9D-321F-B85A-99B328C850EE> /Users/USER/*/OBS.app/Contents/PlugIns/mac-decklink.so 0x1289e000 - 0x128adff3 +mac-syphon.so (0) <77897E53-0881-3555-A243-044478C8174E> /Users/USER/*/OBS.app/Contents/PlugIns/mac-syphon.so 0x128c6000 - 0x128d1fff +mac-virtualcam.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/mac-virtualcam.so 0x128de000 - 0x128e5fff +mac-vth264.so (0) <787F2305-5022-3A79-B674-1D2F0FE1587D> /Users/USER/*/OBS.app/Contents/PlugIns/mac-vth264.so 0x1292c000 - 0x12993ff7 +obs-browser.so (0) <1C3C490E-9C08-3745-A41C-F78D6DD1DF52> /Users/USER/*/OBS.app/Contents/PlugIns/obs-browser.so 0x12a2c000 - 0x1a11df7f +org.chromium.ContentShell.framework (75.1.16.0 - 16.0) <7599C8E5-3EE0-3B46-AC5F-3583974DCD43> /Users/USER/*/OBS.app/Contents/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework 0x1aba1000 - 0x1abb4ffb +obs-ffmpeg.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-ffmpeg.so 0x1abc9000 - 0x1ae20fe7 +libavfilter.7.dylib (0) <734BBE61-E459-36B8-B8F9-199FE60807A9> /Users/USER/*/OBS.app/Contents/Frameworks/libavfilter.7.dylib 0x1af39000 - 0x1af44ff7 +libavdevice.58.dylib (0) <4FFF6943-6778-334E-9AC9-5CA06BC8B87C> /Users/USER/*/OBS.app/Contents/Frameworks/libavdevice.58.dylib 0x1af55000 - 0x1af78ff7 +libpostproc.55.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libpostproc.55.dylib 0x1af85000 - 0x1af94ff3 +obs-filters.so (0) <27386481-D340-360D-AF59-7E957E7709B5> /Users/USER/*/OBS.app/Contents/PlugIns/obs-filters.so 0x1afa9000 - 0x1afb5ff7 +libspeexdsp.1.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libspeexdsp.1.dylib 0x1afbf000 - 0x1afdeff7 +librnnoise.0.dylib (0) <77B07DEC-E837-30FB-B80A-088939387503> /Users/USER/*/OBS.app/Contents/Frameworks/librnnoise.0.dylib 0x1afeb000 - 0x1afeefff +obs-libfdk.so (0) <4AB14E3A-3BD8-3BFD-A0F2-1C1001F4BDCA> /Users/USER/*/OBS.app/Contents/PlugIns/obs-libfdk.so 0x1affb000 - 0x1b0fcfff +libfdk-aac.2.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libfdk-aac.2.dylib 0x1b138000 - 0x1b163fff +obs-outputs.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-outputs.so 0x1b180000 - 0x1b187fff +obs-transitions.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-transitions.so 0x1b198000 - 0x1b1a3ffb +obs-vst.so (0) <430AC653-CB32-3036-9382-A4A32F88F9B6> /Users/USER/*/OBS.app/Contents/PlugIns/obs-vst.so 0x1b1b8000 - 0x1b1bffff +obs-x264.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-x264.so 0x1b1cc000 - 0x1b3dbfef +libx264.161.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libx264.161.dylib 0x1b4e8000 - 0x1b4effff +rtmp-services.so (0) <3F9988CD-A7F0-35E2-B345-4E113F75DE0F> /Users/USER/*/OBS.app/Contents/PlugIns/rtmp-services.so 0x1b500000 - 0x1b507ffb +text-freetype2.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/text-freetype2.so 0x1b518000 - 0x1b61ffff +libfreetype.6.dylib (0) <068F6531-D454-39A0-B5BD-5C94E21CD994> /Users/USER/*/OBS.app/Contents/Frameworks/libfreetype.6.dylib 0x1b658000 - 0x1b65ffff +vlc-video.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/vlc-video.so 0x1b670000 - 0x1b746ff7 +libvlccore.dylib (10) <078B7BFB-360F-3EF4-A9F0-88876775D423> /Applications/VLC.app/Contents/MacOS/lib/libvlccore.dylib 0x1b765000 - 0x1b77dff7 +libvlc.5.dylib (12) <30B34240-0E67-3DCF-AE7A-66D2DFD7D882> /Applications/VLC.app/Contents/MacOS/lib/libvlc.5.dylib 0x1b78c000 - 0x1b7bdfff +StreamDeckPlugin.so (0) <226F463F-AB9B-348C-8A64-D8A6439DC487> /Library/Application Support/obs-studio/*/StreamDeckPlugin.so 0x1b7db000 - 0x1b8eefff +org.qt-project.QtNetwork (5.15 - 5.15.2) <1822D5DD-20A2-384F-9229-5AFAE70163E4> /Users/USER/*/OBS.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork 0x1b943000 - 0x1b94bff7 +obs-mac-virtualcam.so (0) <7D8AFEA2-4864-3F9C-9061-81668C6C5B58> /Library/Application Support/obs-studio/*/obs-mac-virtualcam.so 0x1b955000 - 0x1bec0ff7 com.apple.audio.codecs.Components (7.0 - 7.0) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs 0x1bfd0000 - 0x1bfd4ffb com.apple.audio.AppleHDAHALPlugIn (281.52 - 281.52) <23C7DDE6-A44B-3BE4-B47C-EB3045B267D9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn 0x1c00b000 - 0x1c1b3ff7 com.apple.audio.units.Components (1.14 - 1.14) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x1c2b7000 - 0x1c2c3ff7 +com.meldaproduction.MEqualizer (13.03) <3F9F0365-31FA-33E1-B0ED-28D518617AAB> /Library/Audio/Plug-Ins/VST/MeldaProduction/EQ/MEqualizer.vst/Contents/MacOS/MEqualizer.bin 0x1c2d0000 - 0x1fe9afff +libMeldaProductionAudioPluginKernelV11.dylib (0) <95AA5CBC-1DB6-3272-A6E3-8787DB768FB1> /Library/Application Support/MeldaProduction/*/libMeldaProductionAudioPluginKernelV11.dylib 0x24045000 - 0x241acff7 com.apple.CMIOUnits (814.0 - 4995) <672B2D73-FAF8-3C33-AC83-9905C596F9E3> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Contents/MacOS/CMIOUnits 0x249f6000 - 0x24e7dfff com.nvidia.web.GeForceMTLDriverWeb (10.33.0 - 10.3.3) <402C7EA4-0797-33AB-9590-CA3F90B710A6> /System/Library/Extensions/GeForceMTLDriverWeb.bundle/Contents/MacOS/GeForceMTLDriverWeb 0x107f72000 - 0x1081b1ffb +com.obsproject.obs-studio (26.1.0-f92aaf5fb - 26.1.0-f92aaf5fb) <15FAE19C-66E8-39B5-A40D-A6E2371EBA92> /Users/USER/*/OBS.app/Contents/MacOS/obs 0x10833b000 - 0x108372ff7 +org.qt-project.QtSvg (5.15 - 5.15.2) <829132DA-086E-315A-8C3A-E889AA18A4C7> /Users/USER/*/OBS.app/Contents/Frameworks/QtSvg.framework/Versions/5/QtSvg 0x10839c000 - 0x1083d3fff +org.qt-project.QtXml (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtXml.framework/Versions/5/QtXml 0x1083ef000 - 0x1083f2fff +libobs-frontend-api.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libobs-frontend-api.dylib 0x10840a000 - 0x109829fcf +libavcodec.58.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libavcodec.58.dylib 0x10a485000 - 0x10a4dcfff +libavutil.56.dylib (0) <24001412-83ED-3DBF-9E49-CAD83E3A851D> /Users/USER/*/OBS.app/Contents/Frameworks/libavutil.56.dylib 0x10a732000 - 0x10a77cacf dyld (551.5) <30B355CB-35BA-3112-AA76-4E46CD45F699> /usr/lib/dyld 0x7fff268f0000 - 0x7fff26c3eff7 com.apple.RawCamera.bundle (8.05.0 - 1017.4.1) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff2a510000 - 0x7fff2a514ffb com.apple.agl (3.3.1 - AGL-3.3.1) <3741CDE0-4030-32F2-A7B4-ACE7D2E92214> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x7fff2a515000 - 0x7fff2a6f5ff3 com.apple.avfoundation (2.0 - 1536.36) <352C74E0-0F17-376A-9A80-CB53CF96D97F> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff2a6f6000 - 0x7fff2a7affff com.apple.audio.AVFAudio (1.0 - ???) <981E3F2C-08CF-3A05-A34E-F25533200A27> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff2a8b5000 - 0x7fff2a8b5fff com.apple.Accelerate (1.11 - Accelerate 1.11) <8632A9C5-19EA-3FD7-A44D-80765CC9C540> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff2a8b6000 - 0x7fff2a8ccfef libCGInterfaces.dylib (417.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff2a8cd000 - 0x7fff2adcbfc3 com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff2adcc000 - 0x7fff2af26fe3 libBLAS.dylib (1211.50.2) <62C659EB-3E32-3B5F-83BF-79F5DF30D5CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff2af27000 - 0x7fff2af55fef libBNNS.dylib (38.1) <7BAEFDCA-3227-3E07-80D8-59B6370B89C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff2af56000 - 0x7fff2b315ff7 libLAPACK.dylib (1211.50.2) <40ADBA5F-8B2D-30AC-A7AD-7B17C37EE52D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff2b316000 - 0x7fff2b32bff7 libLinearAlgebra.dylib (1211.50.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff2b32c000 - 0x7fff2b331ff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff2b332000 - 0x7fff2b3b2fff libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff2b3b3000 - 0x7fff2b3c6fff libSparseBLAS.dylib (1211.50.2) <722573CC-31CC-34B2-9032-E4F652A9CCFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff2b3c7000 - 0x7fff2b574fc3 libvDSP.dylib (622.50.5) <40690941-CF89-3F90-A0AC-A4D200744A5D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff2b575000 - 0x7fff2b626fff libvMisc.dylib (622.50.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff2b627000 - 0x7fff2b627fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <54FF3B43-E66C-3F36-B34B-A2B3B0A36502> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff2b91b000 - 0x7fff2c779fff com.apple.AppKit (6.9 - 1561.60.100) <77CA789F-B01E-3D3C-82CC-5D1205BDDBEA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff2c7cb000 - 0x7fff2c7cbfff com.apple.ApplicationServices (48 - 50) <63B0C61F-CFE8-3884-853F-E6FB6CD84A44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff2c7cc000 - 0x7fff2c832fff com.apple.ApplicationServices.ATS (377 - 445.5) <703CE7E4-426A-35C0-A229-F140F30F5340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff2c8cb000 - 0x7fff2c9edfff libFontParser.dylib (222.1.7) <9C4CEFB4-0F08-3B60-BD50-0120A37F6EA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff2c9ee000 - 0x7fff2ca38ff7 libFontRegistry.dylib (221.5) <8F68EA59-C8EE-3FA3-BD19-0F1A58441440> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff2ca8a000 - 0x7fff2ca8ffff libFontRegistryUI.dylib (221.5) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistryUI.dylib 0x7fff2cadd000 - 0x7fff2cb10ff7 libTrueTypeScaler.dylib (222.1.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff2cb7a000 - 0x7fff2cb7eff3 com.apple.ColorSyncLegacy (4.13.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff2cc1e000 - 0x7fff2cc70ffb com.apple.HIServices (1.22 - 625) <78A1FB4F-A39C-3159-B285-600C997335FB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff2cc71000 - 0x7fff2cc7ffff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff2cc80000 - 0x7fff2ccccfff com.apple.print.framework.PrintCore (13.4 - 503.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff2cccd000 - 0x7fff2cd07fff com.apple.QD (3.12 - 404.2) <38B20AFF-9D54-3B52-A6DC-C0D71380AA5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff2cd08000 - 0x7fff2cd14fff com.apple.speech.synthesis.framework (7.8.1 - 7.8.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff2cd15000 - 0x7fff2cfa3ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <287960E1-605E-3789-9237-FDC3F3EC4000> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff2cfa5000 - 0x7fff2cfa5fff com.apple.audio.units.AudioUnit (1.14 - 1.14) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff2d2c8000 - 0x7fff2d663ff7 com.apple.CFNetwork (902.3.1 - 902.3.1) <4C012538-BB8A-32F3-AACA-011092BEFAB1> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff2d678000 - 0x7fff2d678fff com.apple.Carbon (158 - 158) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff2d679000 - 0x7fff2d67cffb com.apple.CommonPanels (1.2.6 - 98) <2391761C-5CAA-3F68-86B7-50B37927B104> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff2d67d000 - 0x7fff2d982fff com.apple.HIToolbox (2.1.1 - 911.10) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff2d983000 - 0x7fff2d986ffb com.apple.help (1.3.8 - 66) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff2d987000 - 0x7fff2d98cfff com.apple.ImageCapture (9.0 - 9.0) <23B4916F-3B43-3DFF-B956-FC390EECA284> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff2d98d000 - 0x7fff2da22ffb com.apple.ink.framework (10.9 - 221) <5206C8B0-22DA-36C9-998E-846EDB626D5B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff2da23000 - 0x7fff2da3dff7 com.apple.openscripting (1.7 - 174) <1B2A1F9E-5534-3D61-83CA-9199B39E8708> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff2da5e000 - 0x7fff2da5ffff com.apple.print.framework.Print (12 - 267) <3682ABFB-2561-3419-847D-02C247F4800D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff2da60000 - 0x7fff2da62ff7 com.apple.securityhi (9.0 - 55006) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff2da63000 - 0x7fff2da69fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2ED8643D-B0C3-3F17-82A2-BBF13E6CBABC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff2db8a000 - 0x7fff2db8afff com.apple.Cocoa (6.11 - 22) <7AE76ADE-B550-3838-9B7F-0EF4101EC09F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff2db98000 - 0x7fff2dc51fff com.apple.ColorSync (4.13.0 - 3325) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff2ddde000 - 0x7fff2de71ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff2ded8000 - 0x7fff2df01ffb com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff2df02000 - 0x7fff2e258fef com.apple.CoreData (120 - 851) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff2e259000 - 0x7fff2e33cfff com.apple.CoreDisplay (99.14 - 99.14) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff2e33d000 - 0x7fff2e7dfff7 com.apple.CoreFoundation (6.9 - 1454.96) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff2e7e1000 - 0x7fff2edf1fef com.apple.CoreGraphics (2.0 - 1161.21.2) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff2edf3000 - 0x7fff2f0e2fff com.apple.CoreImage (13.0.0 - 579.5) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff2f14f000 - 0x7fff2f194fff com.apple.audio.midi.CoreMIDI (1.10 - 88) <497D7787-8CBC-378E-9DBB-65ADDF983CAB> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff2f371000 - 0x7fff2f467ffb com.apple.CoreMedia (1.0 - 2276.80.3) <3C80D00B-39A9-3719-8B5B-58F47BC25DCF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff2f468000 - 0x7fff2f4b6fff com.apple.CoreMediaIO (814.0 - 4995) <365473D9-B771-3C68-BEFB-21F7492321A9> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff2f4b7000 - 0x7fff2f4b7fff com.apple.CoreServices (822.37 - 822.37) <58ADA4D7-2FC0-32AC-BB75-DD8834454ACC> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff2f4b8000 - 0x7fff2f52cffb com.apple.AE (735.2 - 735.2) <690A6F47-1306-371F-B257-783D8F83EA9E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff2f52d000 - 0x7fff2f804fff com.apple.CoreServices.CarbonCore (1178.4.1 - 1178.4.1) <009E1ABC-A66B-3355-9E6C-0D4E9B7BEA4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff2f805000 - 0x7fff2f839fff com.apple.DictionaryServices (1.2 - 284.2) <6505B075-41C3-3C62-A4C3-85CE3F6825CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff2f83a000 - 0x7fff2f842ffb com.apple.CoreServices.FSEvents (1239.50.1 - 1239.50.1) <3637CEC7-DF0E-320E-9634-44A442925C65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff2f843000 - 0x7fff2fa01ff7 com.apple.LaunchServices (822.37 - 822.37) <5FD5F15D-0D10-302E-AF17-AD2A3B9B5926> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff2fa02000 - 0x7fff2fab2fff com.apple.Metadata (10.7.0 - 1191.7) <3DD530A7-E104-3469-98BB-20449834B2FE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff2fab3000 - 0x7fff2fb13fff com.apple.CoreServices.OSServices (822.37 - 822.37) <789FD38A-B612-3A66-8EE8-27A344FAD7A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff2fb14000 - 0x7fff2fb82fff com.apple.SearchKit (1.4.0 - 1.4.0) <3662545A-B1CF-3079-BDCD-C83855CEFEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff2fb83000 - 0x7fff2fba7ffb com.apple.coreservices.SharedFileList (71.21 - 71.21) <1B5228EF-D869-3A50-A373-7F4B0289FADD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff2fe48000 - 0x7fff2ff98fff com.apple.CoreText (352.0 - 578.22) <6129F39D-284D-3BBF-8999-7854AB61C01C> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff2ff99000 - 0x7fff2ffd3fff com.apple.CoreVideo (1.8 - 0.0) <86CCC036-51BB-3DD1-9601-D93798BCCD0F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff2ffd4000 - 0x7fff3005fff3 com.apple.framework.CoreWLAN (13.0 - 1350.2) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff302da000 - 0x7fff302dffff com.apple.DiskArbitration (2.7 - 2.7) <2F628584-8177-3894-92CE-9CA6089B61C6> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff3049d000 - 0x7fff3049fff7 com.apple.ForceFeedback (1.0.6 - 1.0.6) <87FB3F31-DF4C-3172-BF86-45EFC331BDD8> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff304a0000 - 0x7fff30866ff3 com.apple.Foundation (6.9 - 1454.96) <0DD43942-B183-3A39-BCDE-E3CCA0E4DE59> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff308d7000 - 0x7fff30907ff3 com.apple.GSS (4.0 - 2.0) <62F1A2A7-EBDB-3CAB-8306-4DA9EFA70E81> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff30908000 - 0x7fff30920ff3 com.apple.GameController (1.0 - 1) /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff30a19000 - 0x7fff30b1dffb com.apple.Bluetooth (6.0.7 - 6.0.7f13) <79541841-2777-3217-B918-2A59601BCCEB> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff30b7d000 - 0x7fff30c18fff com.apple.framework.IOKit (2.0.2 - 1445.71.6) <9337E730-48FF-306C-B8A2-5DFCDBECD9F6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff30c1a000 - 0x7fff30c21fff com.apple.IOSurface (211.16 - 211.16) <3A727DBA-324D-3ED5-9665-573D091A9B67> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff30c22000 - 0x7fff30c77ff3 com.apple.ImageCaptureCore (7.0 - 7.0) <0DAB3D7E-8C3F-35DE-96DF-C370AD35EB65> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff30c78000 - 0x7fff30df2fe7 com.apple.ImageIO.framework (3.3.0 - 1739.3.1) <9E5567EF-14E5-3D8B-985A-E4746043FD26> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff30df3000 - 0x7fff30df7ffb libGIF.dylib (1739.3.1) <18C293BB-E3FD-3125-87A9-3BEBC49060CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff30df8000 - 0x7fff30edffe7 libJP2.dylib (1739.3.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff30ee0000 - 0x7fff30f03ff7 libJPEG.dylib (1739.3.1) <94116E67-CD25-3D46-B1BE-EB6E7BD42177> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff311df000 - 0x7fff31205feb libPng.dylib (1739.3.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff31206000 - 0x7fff31208ffb libRadiance.dylib (1739.3.1) <7DA8A381-4902-375D-AC3F-53B2A738208C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff31209000 - 0x7fff31257fef libTIFF.dylib (1739.3.1) <184BD146-22B2-3342-AC90-C328050C6558> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff31413000 - 0x7fff320f9fff com.apple.JavaScriptCore (13605 - 13605.3.8) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff32111000 - 0x7fff3212aff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff3212b000 - 0x7fff32160fff com.apple.LDAPFramework (2.4.28 - 194.5) <08888215-BBCE-3402-8142-2C9ADB091580> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff321aa000 - 0x7fff321c8ffb com.apple.CoreAuthentication.SharedUtils (1.0 - 425.70.1) <6A9A9D8D-73F5-374D-A37C-3A24A75033CF> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff321c9000 - 0x7fff321dfff7 com.apple.LocalAuthentication (1.0 - 425.70.1) <089B783E-4DA5-3B3E-82B4-63E42E414880> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff323e9000 - 0x7fff323f0fff com.apple.MediaAccessibility (1.0 - 114) <9F72AACD-BAEB-3646-BD0F-12C47591C20D> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff32406000 - 0x7fff3249ffff com.apple.MediaPlayer (1.0 - 1.0) <9668BB09-DD6B-302B-AF01-2B5928128F63> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff324a0000 - 0x7fff32b0aff7 com.apple.MediaToolbox (1.0 - 2276.80.3) <38D00207-A8BA-3B26-B1BB-F4124E25E043> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff32b0c000 - 0x7fff32b8dfff com.apple.Metal (125.30 - 125.30) <659DF560-9B89-3E8A-88AC-4C0BCB4578B4> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff32baa000 - 0x7fff32bc5fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff32bc6000 - 0x7fff32c35fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <338B7779-E608-3D68-8A07-2ACC11299744> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff32c36000 - 0x7fff32c5afff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <9CE072D7-853B-3939-9645-7EB951376B87> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff32c5b000 - 0x7fff32d42ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <0DE891AD-27E5-38FF-AEC8-4A95356C4357> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff32d43000 - 0x7fff32d43ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <2D2D261C-50B0-32F9-BF9A-5C01382BB528> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff33d42000 - 0x7fff33d4effb com.apple.NetFS (6.0 - 4.0) <471DD96F-FA2E-3FE9-9746-2519A6780D1A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff36b37000 - 0x7fff36b3ffef libcldcpuengine.dylib (2.8.7) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff36b40000 - 0x7fff36b9aff7 com.apple.opencl (2.8.24 - 2.8.24) <1104D870-CE68-3240-81D7-C58D8A24EF0A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff36b9b000 - 0x7fff36bb7ffb com.apple.CFOpenDirectory (10.13 - 207.50.1) <29F55F7B-379F-3053-8FF3-5C6675A3DD4D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff36bb8000 - 0x7fff36bc3fff com.apple.OpenDirectory (10.13 - 207.50.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff37d42000 - 0x7fff37d44fff libCVMSPluginSupport.dylib (16.7.4) <6846D939-478C-3AE3-9DCD-CD4F4CD05409> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff37d45000 - 0x7fff37d4affb libCoreFSCache.dylib (162.9) <1BBC6180-FCC0-31EB-8C0A-A1287A9A87C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff37d4b000 - 0x7fff37d4ffff libCoreVMClient.dylib (162.9) <8F26B9F9-75DB-3292-9DE8-D9E023B2690C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff37d50000 - 0x7fff37d59ff3 libGFXShared.dylib (16.7.4) <6187AD8B-1CD2-3775-84CD-76A0EA8BCDD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff37d5a000 - 0x7fff37d65fff libGL.dylib (16.7.4) <2BB333D3-5C61-33DF-8545-06DF2D08B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff37d66000 - 0x7fff37da1fe7 libGLImage.dylib (16.7.4) <4DA003CE-0B74-3FE4-808C-B2FBCE517EB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff37da2000 - 0x7fff37f0fff3 libGLProgrammability.dylib (16.7.4) <694056A5-DAF8-32BB-A75B-F25FE08351AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff37f10000 - 0x7fff37f4effb libGLU.dylib (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff388c6000 - 0x7fff388d5ff3 com.apple.opengl (16.7.4 - 16.7.4) <7B71A596-B6D8-335A-B7CA-8684D83B9C0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff388d6000 - 0x7fff38a6dff3 GLEngine (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x7fff38a6e000 - 0x7fff38a96ffb GLRendererFloat (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x7fff38c4f000 - 0x7fff38d9bff7 com.apple.QTKit (7.7.3 - 3014.8) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff38d9c000 - 0x7fff39001ff7 com.apple.imageKit (3.0 - 1043) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff39002000 - 0x7fff390f1ffb com.apple.PDFKit (1.0 - 677.67) <6BD11C23-1AEA-3078-8D0C-A7152BCF9031> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff390f2000 - 0x7fff39604ff7 com.apple.QuartzComposer (5.1 - 364) <1369D6DA-8842-3878-B546-1D09828331F5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff39605000 - 0x7fff39628fff com.apple.quartzfilters (1.10.0 - 1.10.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff39629000 - 0x7fff39722ff7 com.apple.QuickLookUIFramework (5.0 - 743.13) <09B296B3-4242-3224-9F44-5DFB4AB894CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff39723000 - 0x7fff39723fff com.apple.quartzframework (1.5 - 21) /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff39724000 - 0x7fff39970ff7 com.apple.QuartzCore (1.11 - 584.64.2) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff39971000 - 0x7fff399c8ff7 com.apple.QuickLookFramework (5.0 - 743.13) <8254FFF2-EE0D-323D-A6F3-BEB59615EE47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff39b8e000 - 0x7fff39ba7ffb com.apple.SafariServices.framework (13607 - 13607.2.6.1.2) /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff3a18f000 - 0x7fff3a1a6fff com.apple.ScriptingBridge (1.3.3 - 70) <2C987E75-B409-3824-84E8-0F1DD6B96E8B> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge 0x7fff3a1a7000 - 0x7fff3a4d2fff com.apple.security (7.0 - 58286.70.14) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff3a4d3000 - 0x7fff3a55fff7 com.apple.securityfoundation (6.0 - 55185.50.5) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff3a560000 - 0x7fff3a590fff com.apple.securityinterface (10.0 - 55109.50.6) <1CA937BE-06CC-37A3-9DB8-98259CDA8652> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff3a591000 - 0x7fff3a595ffb com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff3a93a000 - 0x7fff3a9aaff3 com.apple.SystemConfiguration (1.17 - 1.17) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff3ab5f000 - 0x7fff3aedafff com.apple.VideoToolbox (1.0 - 2276.80.3) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff3b182000 - 0x7fff3b6e1feb libwebrtc.dylib (7605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib 0x7fff3b6e2000 - 0x7fff3cdb5ff7 com.apple.WebCore (13605 - 13605.3.8) <7A44888D-C70E-39D6-A7A7-DB8228B4CB63> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff3cdb6000 - 0x7fff3cf9dff7 com.apple.WebKitLegacy (13605 - 13605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff3cf9e000 - 0x7fff3d437fff com.apple.WebKit (13605 - 13605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff3d8a7000 - 0x7fff3d93afff com.apple.APFS (1.0 - 1) <7CC77BF1-881B-357A-9E05-A73C661F830E> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff3e568000 - 0x7fff3e590fff com.apple.framework.Apple80211 (13.0 - 1370.4) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff3e592000 - 0x7fff3e5a1fef com.apple.AppleFSCompression (96.60.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff3e6a0000 - 0x7fff3e6abff7 com.apple.AppleIDAuthSupport (1.0 - 1) <2FAF5567-CDB3-33EF-AB71-05D37F2248B7> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff3e6e5000 - 0x7fff3e72dff3 com.apple.AppleJPEG (1.0 - 1) <8DD410CB-76A1-3F22-9A9F-0491FA0CEB4A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff3e75f000 - 0x7fff3e767ff3 com.apple.AppleSRP (5.0 - 1) <4CEC34CF-63E3-3023-B61B-F8D133698534> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff3e768000 - 0x7fff3e790fff com.apple.applesauce (1.0 - ???) /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff3e859000 - 0x7fff3e85cfff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <39419365-1166-3B27-BFFB-ADD281E38290> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff3e85d000 - 0x7fff3e8adff7 com.apple.AppleVAFramework (5.0.41 - 5.0.41) <3E322B24-26DC-3A1F-A253-425BBAD293D8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff3ebe3000 - 0x7fff3ee7cffb com.apple.AuthKit (1.0 - 1) <6CA71A11-91C5-307C-B933-9FCDEDCB580A> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff3efb3000 - 0x7fff3efbaff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <51A41CA3-DB1D-3380-993E-99C54AEE518E> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff3efbb000 - 0x7fff3f042ff7 com.apple.backup.framework (1.9.6 - 1.9.6) <8322892C-9183-318D-9489-2C16D228DC85> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff3f04b000 - 0x7fff3f051ff7 com.apple.BezelServicesFW (305.1 - 305.1) <7D2C4717-FFF2-3262-B822-1982596BE46B> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff3fe24000 - 0x7fff3fe73ff3 com.apple.ChunkingLibrary (189 - 189) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff409fc000 - 0x7fff40a05ff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff40d41000 - 0x7fff41149fff com.apple.CoreAUC (259.0.0 - 259.0.0) <1E0FB2C7-109E-3924-8E7F-8C6ACD78AF26> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff4114a000 - 0x7fff4117aff7 com.apple.CoreAVCHD (5.9.0 - 5900.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff41211000 - 0x7fff41263ff7 com.apple.corebrightness (1.0 - 1) /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff413a2000 - 0x7fff413abff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <35A43584-2AF8-3202-A139-27D916E444BE> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff41519000 - 0x7fff41529ff7 com.apple.CoreEmoji (1.0 - 69.3) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff4182d000 - 0x7fff41843ff7 com.apple.CoreMediaAuthoring (2.2 - 956) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff41b72000 - 0x7fff41b77ff7 com.apple.CoreOptimization (1.0 - 1) <785B622B-8F7D-3B4D-83AF-EB98CB79FFF6> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization 0x7fff41b78000 - 0x7fff41c1dfff com.apple.CorePDF (4.0 - 414) /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff41cbd000 - 0x7fff41cc5ff3 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff41cc6000 - 0x7fff41d22fff com.apple.CorePrediction (1.0 - 1) /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction 0x7fff41e50000 - 0x7fff41e81ff3 com.apple.CoreServicesInternal (309.1 - 309.1) <4ECD14EA-A493-3B84-A32F-CF928474A405> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff421fb000 - 0x7fff4228cfff com.apple.CoreSymbolication (9.3 - 64026.2) <270D337A-5CF1-340A-9A9C-0A837E542303> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff4230f000 - 0x7fff42444fff com.apple.coreui (2.1 - 494.1) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff42445000 - 0x7fff42576fff com.apple.CoreUtils (5.6 - 560.11) <1A02D6F0-8C65-3FAE-AD63-56477EDE4773> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff425cb000 - 0x7fff4262ffff com.apple.framework.CoreWiFi (13.0 - 1350.2) <50E8598A-0611-323D-B9A8-72A336424090> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff42630000 - 0x7fff42640ff7 com.apple.CrashReporterSupport (10.13 - 1) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff426bf000 - 0x7fff426ceff7 com.apple.framework.DFRFoundation (1.0 - 191.7) <3B8ED6F7-5DFF-34C3-BA90-DDB85679684C> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff426d1000 - 0x7fff426d5ffb com.apple.DSExternalDisplay (3.1 - 380) <901B7F6D-376A-3848-99D0-170C4D00F776> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff42757000 - 0x7fff427cdfff com.apple.datadetectorscore (7.0 - 590.3) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff4281b000 - 0x7fff4285bff7 com.apple.DebugSymbols (181.0 - 181.0) <299A0238-ED78-3676-B131-274D972824AA> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff4285c000 - 0x7fff4298bfff com.apple.desktopservices (1.12.5 - 1.12.5) <7739C9A5-64D9-31A5-899B-5FFA242AD70D> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff42c59000 - 0x7fff42c5dff7 com.apple.DisplayServicesFW (3.1 - 380) <6F0B8AC6-7E62-3DFC-B373-BF04833724C0> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff43775000 - 0x7fff4379fff7 com.apple.FWAVC (501.47 - 47) <9F0CF3A0-03CB-3123-94E6-80942006D32F> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC 0x7fff437a0000 - 0x7fff43bcefff com.apple.vision.FaceCore (3.3.2 - 3.3.2) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff46e8a000 - 0x7fff46e95ff7 libGPUSupportMercury.dylib (16.7.4) <2580DF66-92EA-38DC-A4AB-A7515C578E0E> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff46e96000 - 0x7fff46e9bfff com.apple.GPUWrangler (3.20.0 - 3.20.0) /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff4724f000 - 0x7fff47274ff3 com.apple.GenerationalStorage (2.0 - 285.3) <13B96400-FF70-376B-B20E-FB7D61064800> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff47c11000 - 0x7fff47c20fff com.apple.GraphVisualizer (1.0 - 5) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff47ca3000 - 0x7fff47d17fff com.apple.Heimdal (4.0 - 2.0) <9F4D7008-944E-3A7C-8E58-A9F7D8497C32> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff48627000 - 0x7fff4862eff7 com.apple.IOAccelerator (378.28 - 378.28) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff48632000 - 0x7fff48649fff com.apple.IOPresentment (1.0 - 35.1) <53B47F2A-9A9A-33F5-ADCB-FF766292B93A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff48a14000 - 0x7fff48a3affb com.apple.IconServices (97.6 - 97.6) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff48b47000 - 0x7fff48b4aff3 com.apple.InternationalSupport (1.0 - 1) <5AB382FD-BF81-36A1-9565-61F1FD398ECA> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff48bb8000 - 0x7fff48bc8ffb com.apple.IntlPreferences (2.0 - 227.5.2) <7FC3783F-C96A-3CD6-BBA8-2BC682BC7109> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences 0x7fff48cbf000 - 0x7fff48cd2ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff48cd3000 - 0x7fff48dc8ff7 com.apple.LanguageModeling (1.0 - 159.5.3) <7F0AC200-E3DD-39FB-8A95-00DD70B66A9F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff48dc9000 - 0x7fff48e0bfff com.apple.Lexicon-framework (1.0 - 33.5) /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff48e0f000 - 0x7fff48e16ff7 com.apple.LinguisticData (1.0 - 238.3) <49A54649-1021-3DBD-99B8-1B2EDFFA5378> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff49615000 - 0x7fff49618fff com.apple.Mangrove (1.0 - 1) <27D6DF76-B5F8-3443-8826-D25B284331BF> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff49768000 - 0x7fff49a91ff7 com.apple.MediaRemote (1.0 - 1) <0B972F7E-27D6-3214-99DF-957C03F8D878> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff49a92000 - 0x7fff49ab3fff com.apple.MediaServices (1.0 - 1) <6C3DDABB-2C14-3E1B-BA15-D1CD8EDB8202> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff49b28000 - 0x7fff49b91ff7 com.apple.gpusw.MetalTools (1.0 - 1) <2C0FE0FB-FAC2-3906-A46D-CF68392EC549> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff49b9a000 - 0x7fff49bb1ff7 com.apple.MobileAssets (1.0 - 437.60.1) <5FFD8A8B-F33F-3FA9-8F50-31C24A67862C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff49d6f000 - 0x7fff49d88fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff49e14000 - 0x7fff49e3effb com.apple.MultitouchSupport.framework (1614.1 - 1614.1) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff4a0a5000 - 0x7fff4a0b0fff com.apple.NetAuth (6.2 - 6.2) <2CFA1228-61A1-3708-988D-30499A1D6A9F> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff4b949000 - 0x7fff4b959ffb com.apple.PerformanceAnalysis (1.194 - 194) <8022ED1F-CE70-388E-B37B-6FB1E5F90CF2> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff4d718000 - 0x7fff4d736fff com.apple.ProtocolBuffer (1 - 260) <40704740-4A53-3010-A49B-08D1D69D1D5E> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff4d8a3000 - 0x7fff4d8b9ff7 com.apple.QuickLookThumbnailing (1.0 - 1) <8F0092E4-6494-349D-B4C9-494DF293D716> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff4d904000 - 0x7fff4d910fff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1205.70.12) <2F346908-26B6-35D5-9F5F-5C5689054B5D> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff4d911000 - 0x7fff4d934ffb com.apple.RemoteViewServices (2.0 - 125) <592323D1-CB44-35F1-9921-4C2AB8D920A0> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff4d935000 - 0x7fff4d94aff3 com.apple.xpc.RemoteXPC (1.0 - 1205.70.12) <731C1EAA-37D7-3C31-B9AA-75B8226104C8> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff4f258000 - 0x7fff4f36dff7 com.apple.Sharing (1050.22.3 - 1050.22.3) <6427670D-140A-3F4C-8BD8-2D9EED677FA0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff4f398000 - 0x7fff4f399ff7 com.apple.performance.SignpostNotification (1.2.6 - 2.6) <6B51F579-9FFC-30AB-863B-97BF787D6BD3> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification 0x7fff500f6000 - 0x7fff50392fff com.apple.SkyLight (1.600.0 - 312.103.11) <3E03D943-2BA4-3658-B014-1675DD191696> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff50b5b000 - 0x7fff50b68fff com.apple.SpeechRecognitionCore (4.6.1 - 4.6.1) <87EE7AB5-6925-3D21-BE00-F155CB457699> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff51015000 - 0x7fff5103cfff com.apple.StreamingZip (1.0 - 1) <32F550C9-3DF8-3DF9-A1EC-699C3D32621B> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff5170e000 - 0x7fff51797fc7 com.apple.Symbolication (9.3 - 64033) <824C0843-2779-33D0-AF29-57B00B2C1608> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff51d07000 - 0x7fff51d0fff7 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff51f1c000 - 0x7fff51fd9ff7 com.apple.TextureIO (3.7 - 3.7) /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff52083000 - 0x7fff52084fff com.apple.TrustEvaluationAgent (2.0 - 31) <39F533B2-211E-3635-AF47-23F27749FF4A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff5208a000 - 0x7fff52239fff com.apple.UIFoundation (1.0 - 547.5) <86A2FBA7-2709-3894-A3D5-A00C19BAC48D> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff52f0e000 - 0x7fff52fddff7 com.apple.ViewBridge (343.2 - 343.2) <5519FCED-1F88-3BE6-9BE1-69992086B01B> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff539b5000 - 0x7fff539b7ffb com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff53b1e000 - 0x7fff53b51ff7 libclosured.dylib (551.5) <112BC241-6626-3848-8DD8-B34B5B6F7ABC> /usr/lib/closure/libclosured.dylib 0x7fff53c0b000 - 0x7fff53c44ff7 libCRFSuite.dylib (41) /usr/lib/libCRFSuite.dylib 0x7fff53c45000 - 0x7fff53c50fff libChineseTokenizer.dylib (28) <53633C9B-A3A8-36F7-A53C-432D802F4BB8> /usr/lib/libChineseTokenizer.dylib 0x7fff53ce2000 - 0x7fff53ce3ff3 libDiagnosticMessagesClient.dylib (104) <9712E980-76EE-3A89-AEA6-DF4BAF5C0574> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff53d1a000 - 0x7fff53ee4ff3 libFosl_dynamic.dylib (17.8) <413FDC7A-28B1-3966-9E25-9536E0164B4F> /usr/lib/libFosl_dynamic.dylib 0x7fff53f04000 - 0x7fff53f0bfff libMatch.1.dylib (31) <74AB4815-11D1-3930-A559-BD6550CE5865> /usr/lib/libMatch.1.dylib 0x7fff53f1c000 - 0x7fff53f1cfff libOpenScriptingUtil.dylib (174) <610F0242-7CE5-3C86-951B-B646562694AF> /usr/lib/libOpenScriptingUtil.dylib 0x7fff54053000 - 0x7fff54057ffb libScreenReader.dylib (562.18.5) <0FEFDAC8-0FDF-38A0-AB88-A84E0DBA058F> /usr/lib/libScreenReader.dylib 0x7fff54058000 - 0x7fff54059ffb libSystem.B.dylib (1252.50.4) <237634FA-3FEA-3C76-8236-DE684D9894A2> /usr/lib/libSystem.B.dylib 0x7fff540ec000 - 0x7fff540ecfff libapple_crypto.dylib (109.50.14) <48BA2E76-BF2F-3522-A54E-D7FB7EAF7A57> /usr/lib/libapple_crypto.dylib 0x7fff540ed000 - 0x7fff54103ff7 libapple_nghttp2.dylib (1.24) <01402BC4-4822-3676-9C80-50D83F816424> /usr/lib/libapple_nghttp2.dylib 0x7fff54104000 - 0x7fff5412eff3 libarchive.2.dylib (54) <8FC28DD8-E315-3C3E-95FE-D1D2CBE49888> /usr/lib/libarchive.2.dylib 0x7fff5412f000 - 0x7fff541b0fdf libate.dylib (1.13.1) <178ACDAD-DE7E-346C-A613-1CBF7929AC07> /usr/lib/libate.dylib 0x7fff541b4000 - 0x7fff541b4ff3 libauto.dylib (187) /usr/lib/libauto.dylib 0x7fff541b5000 - 0x7fff5426dff3 libboringssl.dylib (109.50.14) /usr/lib/libboringssl.dylib 0x7fff5426e000 - 0x7fff5427eff3 libbsm.0.dylib (39) <6BC96A72-AFBE-34FD-91B1-748A530D8AE6> /usr/lib/libbsm.0.dylib 0x7fff5427f000 - 0x7fff5428cffb libbz2.1.0.dylib (38) <0A5086BB-4724-3C14-979D-5AD4F26B5B45> /usr/lib/libbz2.1.0.dylib 0x7fff5428d000 - 0x7fff542e3fff libc++.1.dylib (400.9) <7D3DACCC-3804-393C-ABC1-1A580FD00CB6> /usr/lib/libc++.1.dylib 0x7fff542e4000 - 0x7fff54308ff7 libc++abi.dylib (400.8.2) /usr/lib/libc++abi.dylib 0x7fff5430a000 - 0x7fff5431afff libcmph.dylib (6) <890DEC4C-4334-393C-8B56-7C8560BBED9D> /usr/lib/libcmph.dylib 0x7fff5431b000 - 0x7fff54332fcf libcompression.dylib (47.60.2) <543F07BF-2F2F-37D5-9866-E84BF659885B> /usr/lib/libcompression.dylib 0x7fff545dd000 - 0x7fff545f5ff7 libcoretls.dylib (155.50.1) /usr/lib/libcoretls.dylib 0x7fff545f6000 - 0x7fff545f7ff3 libcoretls_cfhelpers.dylib (155.50.1) /usr/lib/libcoretls_cfhelpers.dylib 0x7fff54790000 - 0x7fff54921fff libcrypto.35.dylib (22.50.3) <6E609F99-59BC-3AEA-9DB3-FD360A2C50CC> /usr/lib/libcrypto.35.dylib 0x7fff54ac8000 - 0x7fff54b1eff3 libcups.2.dylib (462.2.5) /usr/lib/libcups.2.dylib 0x7fff54b49000 - 0x7fff54b9dffb libcurl.4.dylib (105.40.1) /usr/lib/libcurl.4.dylib 0x7fff54c5e000 - 0x7fff54c5efff libenergytrace.dylib (16) /usr/lib/libenergytrace.dylib 0x7fff54c5f000 - 0x7fff54c78ffb libexpat.1.dylib (16.1.1) <5E1796FA-4041-3187-B5C2-8E6B03D1D72A> /usr/lib/libexpat.1.dylib 0x7fff54c86000 - 0x7fff54c87fff libffi.dylib (18.1) <02011073-8CB7-362F-BC52-43B4E83687B0> /usr/lib/libffi.dylib 0x7fff54c95000 - 0x7fff54c9aff3 libheimdal-asn1.dylib (520.50.8) <6C10CD33-2920-340F-A98B-E1A465A40D03> /usr/lib/libheimdal-asn1.dylib 0x7fff54cc6000 - 0x7fff54db7ff7 libiconv.2.dylib (51.50.1) <2FEC9707-3FAF-3828-A50D-8605086D060F> /usr/lib/libiconv.2.dylib 0x7fff54db8000 - 0x7fff54fdfffb libicucore.A.dylib (59181.0.1) <2CE6205F-D375-3BF5-AA0A-3254BC4773D0> /usr/lib/libicucore.A.dylib 0x7fff5502c000 - 0x7fff5502dfff liblangid.dylib (128) <39C39393-0D05-301D-93B2-F224FC4949AA> /usr/lib/liblangid.dylib 0x7fff5502e000 - 0x7fff55047ffb liblzma.5.dylib (10) <3D419A50-961F-37D2-8A01-3DC7AB7B8D18> /usr/lib/liblzma.5.dylib 0x7fff55048000 - 0x7fff5505eff7 libmarisa.dylib (9) /usr/lib/libmarisa.dylib 0x7fff5510f000 - 0x7fff55337ff7 libmecabra.dylib (779.7.6) /usr/lib/libmecabra.dylib 0x7fff5550f000 - 0x7fff5568afff libnetwork.dylib (1229.70.2) /usr/lib/libnetwork.dylib 0x7fff55711000 - 0x7fff55aff7e7 libobjc.A.dylib (723) /usr/lib/libobjc.A.dylib 0x7fff55b12000 - 0x7fff55b16fff libpam.2.dylib (22) <7B4D2CE2-1438-387A-9802-5CEEFBF26F86> /usr/lib/libpam.2.dylib 0x7fff55b19000 - 0x7fff55b4dfff libpcap.A.dylib (79.20.1) /usr/lib/libpcap.A.dylib 0x7fff55bcc000 - 0x7fff55be8ffb libresolv.9.dylib (65) /usr/lib/libresolv.9.dylib 0x7fff55bea000 - 0x7fff55c23ff3 libsandbox.1.dylib (765.70.1) /usr/lib/libsandbox.1.dylib 0x7fff55c24000 - 0x7fff55c36fff libsasl2.2.dylib (211) <04EF3F61-12EC-3319-A649-851999F4C7A4> /usr/lib/libsasl2.2.dylib 0x7fff55c37000 - 0x7fff55c38ff3 libspindump.dylib (252) /usr/lib/libspindump.dylib 0x7fff55c39000 - 0x7fff55dccff7 libsqlite3.dylib (274.8.1) /usr/lib/libsqlite3.dylib 0x7fff55e28000 - 0x7fff55e7bffb libssl.35.dylib (22.50.3) <208CD5D9-F165-3DED-9DE0-BF2B349895E8> /usr/lib/libssl.35.dylib 0x7fff55fa0000 - 0x7fff56000ff3 libusrtcp.dylib (1229.70.2) <1E065228-D0E3-3808-9405-894056C6BEC0> /usr/lib/libusrtcp.dylib 0x7fff56001000 - 0x7fff56004ffb libutil.dylib (51.20.1) <216D18E5-0BAF-3EAF-A38E-F6AC37CBABD9> /usr/lib/libutil.dylib 0x7fff56005000 - 0x7fff56012ff3 libxar.1.dylib (417.1) <351781D5-3CCF-320F-BB5A-4DFCC1CCD31D> /usr/lib/libxar.1.dylib 0x7fff56016000 - 0x7fff560fdfff libxml2.2.dylib (31.13) <8C12B82A-66FD-330C-9BEA-AAC090C7076A> /usr/lib/libxml2.2.dylib 0x7fff560fe000 - 0x7fff56126fff libxslt.1.dylib (15.12) <4A5E011D-8B29-3135-A52B-9A9070ABD752> /usr/lib/libxslt.1.dylib 0x7fff56127000 - 0x7fff56139ffb libz.1.dylib (70) <48C67CFC-940D-3857-8DAD-857774605352> /usr/lib/libz.1.dylib 0x7fff561d5000 - 0x7fff561d9ff7 libcache.dylib (80) <092479CB-1008-3A83-BECF-E115F24D13C1> /usr/lib/system/libcache.dylib 0x7fff561da000 - 0x7fff561e4ff3 libcommonCrypto.dylib (60118.50.1) <029F5985-9B6E-3DCB-9B96-FD007678C6A7> /usr/lib/system/libcommonCrypto.dylib 0x7fff561e5000 - 0x7fff561ecfff libcompiler_rt.dylib (62) <968B8E3F-3681-3230-9D78-BB8732024F6E> /usr/lib/system/libcompiler_rt.dylib 0x7fff561ed000 - 0x7fff561f6ffb libcopyfile.dylib (146.50.5) <3885083D-50D8-3EEC-B481-B2E605180D7F> /usr/lib/system/libcopyfile.dylib 0x7fff561f7000 - 0x7fff5627cffb libcorecrypto.dylib (562.70.3) <37AF8EC6-BF34-3D15-BC3A-A9B98F2427D4> /usr/lib/system/libcorecrypto.dylib 0x7fff56304000 - 0x7fff5633dff7 libdispatch.dylib (913.60.3) /usr/lib/system/libdispatch.dylib 0x7fff5633e000 - 0x7fff5635bff7 libdyld.dylib (551.5) <49BF9E96-8297-30CF-8AA6-128CC14054B2> /usr/lib/system/libdyld.dylib 0x7fff5635c000 - 0x7fff5635cffb libkeymgr.dylib (28) /usr/lib/system/libkeymgr.dylib 0x7fff5635d000 - 0x7fff56369ff3 libkxld.dylib (4570.71.45) <03FEE7FE-74F1-3EAE-99AE-DEB3EC414AEF> /usr/lib/system/libkxld.dylib 0x7fff5636a000 - 0x7fff5636aff7 liblaunch.dylib (1205.70.12) <4950A0B3-5EE1-3F9A-8B1A-94FB85FCCA2C> /usr/lib/system/liblaunch.dylib 0x7fff5636b000 - 0x7fff5636fffb libmacho.dylib (906) <1902A611-081A-3452-B11E-EBD1B166E831> /usr/lib/system/libmacho.dylib 0x7fff56370000 - 0x7fff56372ff3 libquarantine.dylib (86) <26C0BA22-8F93-3A07-9A4E-C8D53D2CE42E> /usr/lib/system/libquarantine.dylib 0x7fff56373000 - 0x7fff56374ff3 libremovefile.dylib (45) <711E18B2-5BBE-3211-A916-56740C27D17A> /usr/lib/system/libremovefile.dylib 0x7fff56375000 - 0x7fff5638cfff libsystem_asl.dylib (356.70.1) <39E46A6F-B228-3E78-B83E-1779F9707A39> /usr/lib/system/libsystem_asl.dylib 0x7fff5638d000 - 0x7fff5638dfff libsystem_blocks.dylib (67) <17303FDF-0D2D-3963-B05E-B4DF63052D47> /usr/lib/system/libsystem_blocks.dylib 0x7fff5638e000 - 0x7fff56417ff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib 0x7fff56418000 - 0x7fff5641bffb libsystem_configuration.dylib (963.50.9) /usr/lib/system/libsystem_configuration.dylib 0x7fff5641c000 - 0x7fff5641fffb libsystem_coreservices.dylib (51) <486000D3-D8CB-3BE7-8EE5-8BF380DE6DF7> /usr/lib/system/libsystem_coreservices.dylib 0x7fff56420000 - 0x7fff56421fff libsystem_darwin.dylib (1244.50.9) <09C21A4A-9EE0-388B-A9D9-DFF8F6758791> /usr/lib/system/libsystem_darwin.dylib 0x7fff56422000 - 0x7fff56428ff7 libsystem_dnssd.dylib (878.70.3) /usr/lib/system/libsystem_dnssd.dylib 0x7fff56429000 - 0x7fff56472ff7 libsystem_info.dylib (517.30.1) /usr/lib/system/libsystem_info.dylib 0x7fff56473000 - 0x7fff56499ff7 libsystem_kernel.dylib (4570.71.45) <939FEA3D-15A3-33E5-9476-789AF120C330> /usr/lib/system/libsystem_kernel.dylib 0x7fff5649a000 - 0x7fff564e5fcb libsystem_m.dylib (3147.50.1) <17570F46-566C-39FC-BEF6-635A355DD549> /usr/lib/system/libsystem_m.dylib 0x7fff564e6000 - 0x7fff56505ff7 libsystem_malloc.dylib (140.50.7) /usr/lib/system/libsystem_malloc.dylib 0x7fff56506000 - 0x7fff56636ff7 libsystem_network.dylib (1229.70.2) <5E86B2DE-9E15-3354-8714-4094ED5F698D> /usr/lib/system/libsystem_network.dylib 0x7fff56637000 - 0x7fff56641ffb libsystem_networkextension.dylib (767.70.2) <9DC03712-552D-3AEE-9519-B5ED70980B70> /usr/lib/system/libsystem_networkextension.dylib 0x7fff56642000 - 0x7fff5664bff3 libsystem_notify.dylib (172) <08012EC0-2CD2-34BE-BF93-E7F56491299A> /usr/lib/system/libsystem_notify.dylib 0x7fff5664c000 - 0x7fff56653ff7 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib 0x7fff56654000 - 0x7fff5665ffff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib 0x7fff56660000 - 0x7fff56663fff libsystem_sandbox.dylib (765.70.1) <553DFCC6-9D31-3B9C-AB7C-30F6F265786D> /usr/lib/system/libsystem_sandbox.dylib 0x7fff56664000 - 0x7fff56665ff3 libsystem_secinit.dylib (30) /usr/lib/system/libsystem_secinit.dylib 0x7fff56666000 - 0x7fff5666dff7 libsystem_symptoms.dylib (820.60.3) <70753784-099A-3E44-9E80-7364C9901CDA> /usr/lib/system/libsystem_symptoms.dylib 0x7fff5666e000 - 0x7fff56681fff libsystem_trace.dylib (829.70.1) <3A6CB706-8CA6-3616-8AFC-14AAD7FAF187> /usr/lib/system/libsystem_trace.dylib 0x7fff56683000 - 0x7fff56688ff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib 0x7fff56689000 - 0x7fff566b6ff7 libxpc.dylib (1205.70.12) <7B82608D-ED82-35C1-B13F-99855E25D6DC> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 1102 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=726.1M resident=0K(0%) swapped_out_or_unallocated=726.1M(100%) Writable regions: Total=488.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=488.5M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 2 Activity Tracing 256K 2 CG image 76K 4 CoreServices 148K 2 CoreUI image data 100K 2 CoreUI image file 180K 4 Foundation 4K 2 Kernel Alloc Once 8K 2 MALLOC 319.8M 85 MALLOC guard page 48K 13 MALLOC_LARGE (reserved) 320K 3 reserved VM address space (unallocated) Memory Tag 242 12K 2 OpenGL GLSL 256K 4 PROTECTED_MEMORY 4K 2 STACK GUARD 56.2M 53 Stack 146.4M 54 VM_ALLOCATE 6680K 19 __DATA 68.5M 438 __DATA_CONST 268K 8 __FONT_DATA 4K 2 __GLSLBUILTINS 2588K 2 __LINKEDIT 224.6M 187 __TEXT 502.1M 417 __UNICODE 560K 2 mapped file 77.6M 90 shared memory 680K 10 =========== ======= ======= TOTAL 1.4G 1385 TOTAL, minus reserved VM space 1.4G 1385 ```
PatTheMav commented 3 years ago

Well I can confirm that the symbol exists in the libavcodec built on CI but I have no idea why. When I build the deps locally the symbol was there before but my recent fix for lame-mp3 solved it (cannot find the symbol in either object files or the final dylibs).

Feel free to fork the obs-deps repo and use something like https://github.com/marketplace/actions/debugging-with-tmate to break into the workflow and inspect the objects to find out where/why it's introduced there (I have too much on my desk right now).

syropian commented 3 years ago

@jp9000 I don't think this is ready to be closed yet, as the build from 20bb465 is still crashing on High Sierra.

Click to see log ``` Process: obs [1329] Path: /Users/USER/*/OBS.app/Contents/MacOS/obs Identifier: com.obsproject.obs-studio Version: 26.1.0-20bb46504 (26.1.0-20bb46504) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: obs [1329] User ID: 501 Date/Time: 2020-12-20 09:11:54.840 -0500 OS Version: Mac OS X 10.13.6 (17G7024) Report Version: 12 Anonymous UUID: 53822BA7-5425-7DB6-C0B6-79FB1D0CAD06 Time Awake Since Boot: 380 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x0000000000000002, 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Trace/BPT trap: 5 Termination Reason: Namespace SIGNAL, Code 0x5 Terminating Process: exc handler [0] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 org.chromium.ContentShell.framework 0x000000001cfab325 0x1ad98000 + 35730213 1 org.chromium.ContentShell.framework 0x000000001cfaca5b 0x1ad98000 + 35736155 2 org.chromium.ContentShell.framework 0x000000001f793929 0x1ad98000 + 77576489 3 org.chromium.ContentShell.framework 0x000000001d21aa18 0x1ad98000 + 38283800 4 org.chromium.ContentShell.framework 0x000000001d21a64c 0x1ad98000 + 38282828 5 org.chromium.ContentShell.framework 0x000000001ad9a5d4 cef_initialize + 276 6 obs-browser.so 0x000000001ad03392 CefInitialize(CefMainArgs const&, CefStructBase const&, scoped_refptr, void*) + 146 7 obs-browser.so 0x000000001acafb56 obs_browser_initialize + 1606 8 obs-browser.so 0x000000001acb21a5 RegisterBrowserSource()::$_1::__invoke(obs_data*, obs_source*) + 21 9 libobs.0.dylib 0x0000000010cd820f obs_source_create_internal + 2335 10 libobs.0.dylib 0x0000000010cf5305 obs_load_source_type + 181 11 libobs.0.dylib 0x0000000010cf5731 obs_load_sources + 177 12 com.obsproject.obs-studio 0x000000010e203443 OBSBasic::Load(char const*) + 1523 13 com.obsproject.obs-studio 0x000000010e208a23 OBSBasic::OBSInit() + 1587 14 com.obsproject.obs-studio 0x000000010e1e4bf9 OBSApp::OBSInit() + 505 15 com.obsproject.obs-studio 0x000000010e1e8c28 main + 5032 16 libdyld.dylib 0x00007fff698ab015 start + 1 Thread 1: 0 libsystem_kernel.dylib 0x00007fff699fc28a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff69bc3009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff69bc2be9 start_wqthread + 13 Thread 2: 0 libsystem_kernel.dylib 0x00007fff699fc28a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff69bc320e _pthread_wqthread + 1552 2 libsystem_pthread.dylib 0x00007fff69bc2be9 start_wqthread + 13 Thread 3: 0 libsystem_kernel.dylib 0x00007fff699fc28a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff69bc3009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff69bc2be9 start_wqthread + 13 Thread 4: 0 libsystem_kernel.dylib 0x00007fff699fc28a __workq_kernreturn + 10 1 libsystem_pthread.dylib 0x00007fff69bc3009 _pthread_wqthread + 1035 2 libsystem_pthread.dylib 0x00007fff69bc2be9 start_wqthread + 13 Thread 5:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 6:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 7:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 8:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 9:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 10:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 11:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 12:: Thread (pooled) 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 org.qt-project.QtCore 0x00000000113bafa0 0x11392000 + 167840 3 org.qt-project.QtCore 0x00000000113bacfe 0x11392000 + 167166 4 org.qt-project.QtCore 0x00000000113bac73 QWaitCondition::wait(QMutex*, QDeadlineTimer) + 83 5 org.qt-project.QtCore 0x00000000113b76dd 0x11392000 + 153309 6 org.qt-project.QtCore 0x00000000113b3229 0x11392000 + 135721 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 13: 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000010cce930 os_event_timedwait + 176 3 libobs.0.dylib 0x0000000010d078ce obs_hotkey_thread + 174 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 14:: audio-io: audio thread 0 libsystem_kernel.dylib 0x00007fff699fbd82 __semwait_signal + 10 1 libsystem_c.dylib 0x00007fff69976724 nanosleep + 199 2 libsystem_c.dylib 0x00007fff69976618 usleep + 53 3 libobs.0.dylib 0x0000000010cba402 audio_thread + 418 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 15:: video-io: video thread 0 libsystem_kernel.dylib 0x00007fff699f2246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000010ccead0 os_sem_wait + 16 2 libobs.0.dylib 0x0000000010cb8b7b video_thread + 75 3 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 16:: libobs: graphics thread 0 libsystem_kernel.dylib 0x00007fff699fbd82 __semwait_signal + 10 1 libsystem_c.dylib 0x00007fff69976724 nanosleep + 199 2 libobs.0.dylib 0x0000000010ccedad os_sleepto_ns + 93 3 libobs.0.dylib 0x0000000010d21197 obs_graphics_thread_loop + 4647 4 libobs.0.dylib 0x0000000010ccdbca obs_graphics_thread_loop_autorelease + 26 5 libobs.0.dylib 0x0000000010d21d58 obs_graphics_thread + 248 6 libobs.0.dylib 0x0000000010ccdb9a obs_graphics_thread_autorelease + 26 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 17: 0 libsystem_kernel.dylib 0x00007fff699f2246 semaphore_wait_trap + 10 1 libobs.0.dylib 0x0000000010ccead0 os_sem_wait + 16 2 libobs-scripting.dylib 0x0000000019811b29 defer_thread + 25 3 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 18: 0 libsystem_kernel.dylib 0x00007fff699f235a mach_wait_until + 10 1 com.kinoni.EpocCamPlugIn 0x0000000019e0060e ClockDriver::waitThreadMain() + 232 2 com.kinoni.EpocCamPlugIn 0x0000000019e00a89 void* std::__1::__thread_proxy >, void (ClockDriver::*)(), ClockDriver*> >(void*) + 59 3 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 4 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 5 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 19:: com.apple.CFSocket.private 0 libsystem_kernel.dylib 0x00007fff699fbcf2 __select + 10 1 com.apple.CoreFoundation 0x00007fff4196a01b __CFSocketManager + 635 2 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 3 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 4 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 20: 0 libsystem_kernel.dylib 0x00007fff699f225e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6988194f _dispatch_sema4_timedwait + 72 2 libdispatch.dylib 0x00007fff6987994e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff69874e53 _dispatch_worker_thread + 251 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 21: 0 libsystem_kernel.dylib 0x00007fff699f225e semaphore_timedwait_trap + 10 1 libdispatch.dylib 0x00007fff6988194f _dispatch_sema4_timedwait + 72 2 libdispatch.dylib 0x00007fff6987994e _dispatch_semaphore_wait_slow + 58 3 libdispatch.dylib 0x00007fff69874e53 _dispatch_worker_thread + 251 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 22: 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000010cce930 os_event_timedwait + 176 3 mac-capture.so 0x000000001abf0b8d reconnect_thread + 29 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 23: 0 libsystem_kernel.dylib 0x00007fff699fba16 __psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff69bc4589 _pthread_cond_wait + 732 2 libobs.0.dylib 0x0000000010cce930 os_event_timedwait + 176 3 mac-capture.so 0x000000001abf0b8d reconnect_thread + 29 4 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 5 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 6 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 24:: com.apple.audio.IOThread.client 0 libsystem_kernel.dylib 0x00007fff699f220a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff699f1724 mach_msg + 60 2 com.apple.audio.CoreAudio 0x00007fff4138787a HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 124 3 com.apple.audio.CoreAudio 0x00007fff413877ed HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 45 4 com.apple.audio.CoreAudio 0x00007fff41384859 HALC_ProxyIOContext::IOWorkLoop() + 977 5 com.apple.audio.CoreAudio 0x00007fff413842bc HALC_ProxyIOContext::IOThreadEntry(void*) + 128 6 com.apple.audio.CoreAudio 0x00007fff41383ffe HALB_IOThread::Entry(void*) + 72 7 libsystem_pthread.dylib 0x00007fff69bc3661 _pthread_body + 340 8 libsystem_pthread.dylib 0x00007fff69bc350d _pthread_start + 377 9 libsystem_pthread.dylib 0x00007fff69bc2bf9 thread_start + 13 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x00000000225aac38 rbx: 0x0000614000077e00 rcx: 0x00007ffee1a46c70 rdx: 0x0000000000000000 rdi: 0x000061400011e9f0 rsi: 0x00007fff3fb5949e rbp: 0x00007ffee1a46f00 rsp: 0x00007ffee1a46f00 r8: 0x000000010e1b7020 r9: 0x0000000000000023 r10: 0x0000600000304020 r11: 0x00007fff418b7bd0 r12: 0x00007ffee1a46f20 r13: 0x00006100000e1820 r14: 0x0000000000000000 r15: 0x000061400011ea80 rip: 0x000000001cfab325 rfl: 0x0000000000000246 cr2: 0x000000001d6707e0 Logical CPU: 10 Error Code: 0x00000000 Trap Number: 3 Binary Images: 0xe1c7000 - 0xf5e6fcf +libavcodec.58.dylib (0) <245DEA85-C695-383A-886F-33BA09CB5F49> /Users/USER/*/OBS.app/Contents/Frameworks/libavcodec.58.dylib 0x1020b000 - 0x10262fff +libavutil.56.dylib (0) <24001412-83ED-3DBF-9E49-CAD83E3A851D> /Users/USER/*/OBS.app/Contents/Frameworks/libavutil.56.dylib 0x1031f000 - 0x10552fff +libavformat.58.dylib (0) <5C064026-EECF-3BF8-A88F-14DC2893EBC9> /Users/USER/*/OBS.app/Contents/Frameworks/libavformat.58.dylib 0x10623000 - 0x10675ff7 +org.sparkle-project.Sparkle (1.23.0 34-g962878b84 - 1.23.0) <75E94DED-6421-391D-A542-553EAFBBAA1A> /Users/USER/*/OBS.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle 0x106ca000 - 0x106d5ff7 +org.qt-project.QtMacExtras (5.15 - 5.15.2) <24966A40-80C1-3BCC-B630-07C8E13F9F2E> /Users/USER/*/OBS.app/Contents/Frameworks/QtMacExtras.framework/Versions/5/QtMacExtras 0x106de000 - 0x10b29ffb +org.qt-project.QtWidgets (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets 0x10c8f000 - 0x10d36ffb +libobs.0.dylib (0) <5D9271C8-007B-3911-85E3-418EF3CC2EED> /Users/USER/*/OBS.app/Contents/Frameworks/libobs.0.dylib 0x10d8b000 - 0x11276ffb +org.qt-project.QtGui (5.15 - 5.15.2) <7170EC47-E7C7-3807-BFBB-06B6F9CD2589> /Users/USER/*/OBS.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui 0x11392000 - 0x118d5a47 +org.qt-project.QtCore (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore 0x119a0000 - 0x119abfff +libjansson.4.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libjansson.4.dylib 0x119b8000 - 0x11a7ffff +libswscale.5.dylib (0) <00AD3E3C-553A-34EE-9BA2-ACED74684133> /Users/USER/*/OBS.app/Contents/Frameworks/libswscale.5.dylib 0x11ac4000 - 0x11adfff7 +libswresample.3.dylib (0) <2395DC6C-2AAD-34EA-B354-6031F83DA0C9> /Users/USER/*/OBS.app/Contents/Frameworks/libswresample.3.dylib 0x11af0000 - 0x11b27ff7 +libmbedtls.2.24.0.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libmbedtls.2.24.0.dylib 0x11b34000 - 0x11b53ff3 +libmbedx509.2.24.0.dylib (0) <68D52367-129E-306C-A282-E70B66B7966E> /Users/USER/*/OBS.app/Contents/Frameworks/libmbedx509.2.24.0.dylib 0x11b60000 - 0x11bd3ff7 +libmbedcrypto.2.24.0.dylib (0) <7E38FD09-FE8C-36B3-8E41-26E80FD2040E> /Users/USER/*/OBS.app/Contents/Frameworks/libmbedcrypto.2.24.0.dylib 0x136f8000 - 0x1385fff7 +libqcocoa.dylib (0) <377A156F-724F-34E6-A468-C621B8272934> /Users/USER/*/OBS.app/Contents/PlugIns/platforms/libqcocoa.dylib 0x138b0000 - 0x1390fff3 +org.qt-project.QtDBus (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtDBus.framework/Versions/5/QtDBus 0x1392b000 - 0x13956ffb +org.qt-project.QtPrintSupport (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtPrintSupport.framework/Versions/5/QtPrintSupport 0x13afa000 - 0x13b21fff +libqmacstyle.dylib (0) <78928D28-4ABF-3B0B-9216-B62C347BFE92> /Users/USER/*/OBS.app/Contents/PlugIns/styles/libqmacstyle.dylib 0x13b33000 - 0x13b3affb +libqgif.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqgif.dylib 0x13b41000 - 0x13b48fff +libqicns.dylib (0) <6BE53464-6ADE-395B-B34D-596CAC1417AF> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqicns.dylib 0x13b50000 - 0x13b57ff3 +libqico.dylib (0) <9B4DEDD8-5050-32F6-B7DE-A93C4F3A1E28> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqico.dylib 0x13b5f000 - 0x13bc2ffb +libqjpeg.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqjpeg.dylib 0x13bcb000 - 0x13bd2ff3 +libqmacheif.dylib (0) <4AFB29A7-9BBA-3710-B66D-A0F5FF9E28B0> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqmacheif.dylib 0x13bda000 - 0x13be1ff3 +libqmacjp2.dylib (0) <5BA6CDD7-761C-3199-B1C2-86412E5B3624> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqmacjp2.dylib 0x13be9000 - 0x13bf0ffb +libqtga.dylib (0) <0C917909-96DF-3056-AE24-3DBE525039C6> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqtga.dylib 0x1470e000 - 0x14715ffb +libqsvg.dylib (0) <4EA03F6B-C421-3F20-BE88-7569CD9084E0> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqsvg.dylib 0x1471d000 - 0x14784ff3 +libqtiff.dylib (0) <7F918372-7B34-3637-8E4C-A9985127D32D> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqtiff.dylib 0x1478d000 - 0x14794ff7 +libqwbmp.dylib (0) /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqwbmp.dylib 0x1479b000 - 0x14836ff3 +libqwebp.dylib (0) <000193C3-9EA7-3099-88C8-7919DD2948CB> /Users/USER/*/OBS.app/Contents/PlugIns/imageformats/libqwebp.dylib 0x14a40000 - 0x14a4dff7 com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <3044C23E-A258-376F-A7F6-74F6CA8770FA> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib 0x14aaa000 - 0x14ab1ffb +libqsvgicon.dylib (0) <014B7106-D373-35EA-A283-9C754E1C011C> /Users/USER/*/OBS.app/Contents/PlugIns/iconengines/libqsvgicon.dylib 0x155f6000 - 0x1560dff3 +libobs-opengl.so (0) <3DE8BE29-D3C2-3B3A-92A9-E767FD9569D5> /Users/USER/*/OBS.app/Contents/Frameworks/libobs-opengl.so 0x1561e000 - 0x15661fff +libobsglad.0.dylib (0) <84DF403D-8DB1-382A-AD4B-88D4B4ED0C9D> /Users/USER/*/OBS.app/Contents/MacOS/libobsglad.0.dylib 0x156b6000 - 0x160dbfff com.nvidia.web.GeForceGLDriverWeb (10.33.0 - 10.3.3) <3E9D1E27-7B00-344E-B8F0-DA811518D3E0> /System/Library/Extensions/GeForceGLDriverWeb.bundle/Contents/MacOS/GeForceGLDriverWeb 0x17527000 - 0x17532ff3 +coreaudio-encoder.so (0) <9C7D2340-86FA-36C2-A765-FBF1D9F04E89> /Users/USER/*/OBS.app/Contents/PlugIns/coreaudio-encoder.so 0x1755b000 - 0x17562fff +decklink-captions.so (0) <6EA77F25-211B-31D9-8151-17124394CA8D> /Users/USER/*/OBS.app/Contents/PlugIns/decklink-captions.so 0x1756f000 - 0x17572ff7 +linux-jack.so (0) <411B99D6-DC29-37DA-9D0B-3AC9B656AC17> /Users/USER/*/OBS.app/Contents/PlugIns/linux-jack.so 0x19741000 - 0x1975cfff +decklink-ouput-ui.so (0) <4A9E2968-3FE1-3DA4-9BB1-9C1645A89597> /Users/USER/*/OBS.app/Contents/PlugIns/decklink-ouput-ui.so 0x19789000 - 0x197c4fff +frontend-tools.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/frontend-tools.so 0x1980d000 - 0x1981cff3 +libobs-scripting.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libobs-scripting.dylib 0x1982d000 - 0x198a8ff7 +libluajit-5.1.2.1.0.dylib (0) <315CC7B1-F917-374A-A6B2-2DB7343139B2> /Users/USER/*/OBS.app/Contents/Frameworks/libluajit-5.1.2.1.0.dylib 0x198b1000 - 0x198b8fff +image-source.so (0) <1DD72A51-1DD8-3D10-9DD8-FD7AA3B290E1> /Users/USER/*/OBS.app/Contents/PlugIns/image-source.so 0x198c1000 - 0x19910ff3 +libjack.0.1.0.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libjack.0.1.0.dylib 0x19945000 - 0x1998cfff +libopus.0.dylib (0) <96FF16C3-2C3F-390B-BECE-81DA8C649C84> /Users/USER/*/OBS.app/Contents/Frameworks/libopus.0.dylib 0x19995000 - 0x19addffb +libdb-18.1.dylib (0) <3B08A923-DF94-3423-956E-59F126DDA594> /Users/USER/*/OBS.app/Contents/Frameworks/libdb-18.1.dylib 0x19b0a000 - 0x19b59ff7 +libssl.1.1.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libssl.1.1.dylib 0x19b86000 - 0x19d45c1b +libcrypto.1.1.dylib (0) <0D4C193D-F91C-332F-B941-413CF775DBDF> /Users/USER/*/OBS.app/Contents/Frameworks/libcrypto.1.1.dylib 0x19dde000 - 0x19dedfff +mac-avcapture.so (0) <8CD88FD5-C5DD-3F76-B2D8-86244D801C38> /Users/USER/*/OBS.app/Contents/PlugIns/mac-avcapture.so 0x19dfa000 - 0x19e0dff7 +com.kinoni.EpocCamPlugIn (1.1 - 1.1) /Library/CoreMediaIO/*/EpocCamPlugIn.plugin/Contents/MacOS/EpocCamPlugIn 0x19f9a000 - 0x19fa9ff7 +SnapCamera (8.5.0 - 8.5.0) <5A08F270-B2A0-3D49-8B9C-F413E7856316> /Library/CoreMediaIO/*/SnapCamera.plugin/Contents/MacOS/SnapCamera 0x19fce000 - 0x19fe9ff7 +com.reincubate.macos.cam.dal (1.0.9 - 90) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/MacOS/ReincubateCamoDAL 0x1a03a000 - 0x1a041fff +com.reincubate.util.cam.logging (1.0.9 - 90) <3647703D-98AC-3972-8777-BEAB0352C8D3> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/CamLogging.framework/Versions/A/CamLogging 0x1a052000 - 0x1a066ff7 +libswiftAppKit.dylib (5.0.1 - 1001.0.82.4) <1297109A-D760-3C74-A36C-C0273A7217EC> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftAppKit.dylib 0x1a08a000 - 0x1a3fbfff +libswiftCore.dylib (5.0.1 - 1001.0.82.4) <44D65143-94D5-306A-8D56-15359A7FF04E> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCore.dylib 0x1a6e4000 - 0x1a6e9fff +libswiftCoreAudio.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreAudio.dylib 0x1a6f7000 - 0x1a6ffff7 +libswiftCoreData.dylib (5.0.1 - 1001.0.82.4) <72A6FD8B-034C-3F50-9FF6-9D5723920201> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreData.dylib 0x1a710000 - 0x1a713fff +libswiftCoreFoundation.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreFoundation.dylib 0x1a71b000 - 0x1a72afff +libswiftCoreGraphics.dylib (5.0.1 - 1001.0.82.4) <4C9FA634-B14A-343E-9F76-5AAFCA5FC077> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreGraphics.dylib 0x1a74c000 - 0x1a751ffb +libswiftCoreImage.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreImage.dylib 0x1a759000 - 0x1a763fff +libswiftCoreMedia.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftCoreMedia.dylib 0x1a76f000 - 0x1a776ff7 +libswiftDarwin.dylib (5.0.1 - 1001.0.82.4) <144DA4C8-8322-3E6E-942D-9976CAFA8BAE> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftDarwin.dylib 0x1a788000 - 0x1a7a0ff7 +libswiftDispatch.dylib (5.0.1 - 1001.0.82.4) <0A4818EF-BCD8-3183-9D34-5F8D4920C05C> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftDispatch.dylib 0x1a7db000 - 0x1a973ff7 +libswiftFoundation.dylib (5.0.1 - 1001.0.82.4) <868B3228-5A2C-3556-A77A-695000EFCE27> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftFoundation.dylib 0x1aaf5000 - 0x1aaf8ff3 +libswiftIOKit.dylib (5.0.1 - 1001.0.82.4) <75FE0421-8424-38AD-9372-17A730C44643> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftIOKit.dylib 0x1ab01000 - 0x1ab0afff +libswiftMetal.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftMetal.dylib 0x1ab17000 - 0x1ab1bff7 +libswiftObjectiveC.dylib (5.0.1 - 1001.0.82.4) <1A3E8F91-FF6E-3733-B1AD-CC4D4F3378F4> /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftObjectiveC.dylib 0x1ab27000 - 0x1ab2dff7 +libswiftQuartzCore.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftQuartzCore.dylib 0x1ab36000 - 0x1ab39fff +libswiftXPC.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftXPC.dylib 0x1ab42000 - 0x1ab49ff7 +libswiftos.dylib (5.0.1 - 1001.0.82.4) /Library/CoreMediaIO/*/ReincubateCamoDAL.plugin/Contents/Frameworks/libswiftos.dylib 0x1ab54000 - 0x1ab7fff3 +com.johnboiles.obs-mac-virtualcam.dal-plugin (1.2.1 - 1.2.1) <967DEF02-74CE-3398-A5B4-681AA9D2DD12> /Library/CoreMediaIO/*/obs-mac-virtualcam.plugin/Contents/MacOS/obs-mac-virtualcam 0x1ab90000 - 0x1abb6fff com.apple.cmio.DAL.VDC-4 (814.0 - 4995) <7374F00D-71A9-3EC2-A090-957183D6446D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC 0x1abc2000 - 0x1abdbfff com.apple.cmio.DAL.iOSScreenCapture (814.0 - 4995) <9A2DC4AE-D697-3CD4-82C5-2BB3E5DD97A8> /System/Library/Frameworks/CoreMediaIO.framework/Resources/iOSScreenCapture.plugin/Contents/MacOS/iOSScreenCapture 0x1abe9000 - 0x1abf4fff +mac-capture.so (0) <6C6952E1-99C8-31D1-AEE7-121CDCC3540D> /Users/USER/*/OBS.app/Contents/PlugIns/mac-capture.so 0x1ac01000 - 0x1ac0cff3 +mac-decklink.so (0) <4A684CA5-AC9D-321F-B85A-99B328C850EE> /Users/USER/*/OBS.app/Contents/PlugIns/mac-decklink.so 0x1ac25000 - 0x1ac34ff3 +mac-syphon.so (0) <77897E53-0881-3555-A243-044478C8174E> /Users/USER/*/OBS.app/Contents/PlugIns/mac-syphon.so 0x1ac49000 - 0x1ac54fff +mac-virtualcam.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/mac-virtualcam.so 0x1ac5d000 - 0x1ac64fff +mac-vth264.so (0) <787F2305-5022-3A79-B674-1D2F0FE1587D> /Users/USER/*/OBS.app/Contents/PlugIns/mac-vth264.so 0x1aca4000 - 0x1ad0bff7 +obs-browser.so (0) <1CC33A2D-CF1F-36F0-8FE4-20D6C8C35003> /Users/USER/*/OBS.app/Contents/PlugIns/obs-browser.so 0x1ad98000 - 0x22489f7f +org.chromium.ContentShell.framework (75.1.16.0 - 16.0) <7599C8E5-3EE0-3B46-AC5F-3583974DCD43> /Users/USER/*/OBS.app/Contents/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework 0x22d6f000 - 0x22d82ffb +obs-ffmpeg.so (0) <37BC569A-8053-363B-81F4-C8F92E19A52D> /Users/USER/*/OBS.app/Contents/PlugIns/obs-ffmpeg.so 0x22d93000 - 0x22feafe7 +libavfilter.7.dylib (0) <734BBE61-E459-36B8-B8F9-199FE60807A9> /Users/USER/*/OBS.app/Contents/Frameworks/libavfilter.7.dylib 0x230f3000 - 0x230feff7 +libavdevice.58.dylib (0) <4FFF6943-6778-334E-9AC9-5CA06BC8B87C> /Users/USER/*/OBS.app/Contents/Frameworks/libavdevice.58.dylib 0x2310b000 - 0x2312eff7 +libpostproc.55.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libpostproc.55.dylib 0x23137000 - 0x23146ff3 +obs-filters.so (0) <27386481-D340-360D-AF59-7E957E7709B5> /Users/USER/*/OBS.app/Contents/PlugIns/obs-filters.so 0x23157000 - 0x23163ff7 +libspeexdsp.1.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libspeexdsp.1.dylib 0x23168000 - 0x23187ff7 +librnnoise.0.dylib (0) <77B07DEC-E837-30FB-B80A-088939387503> /Users/USER/*/OBS.app/Contents/Frameworks/librnnoise.0.dylib 0x23190000 - 0x23193fff +obs-libfdk.so (0) <4AB14E3A-3BD8-3BFD-A0F2-1C1001F4BDCA> /Users/USER/*/OBS.app/Contents/PlugIns/obs-libfdk.so 0x2319c000 - 0x2329dfff +libfdk-aac.2.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libfdk-aac.2.dylib 0x232d2000 - 0x232fdfff +obs-outputs.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-outputs.so 0x23316000 - 0x2331dfff +obs-transitions.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-transitions.so 0x2332a000 - 0x23335ffb +obs-vst.so (0) <430AC653-CB32-3036-9382-A4A32F88F9B6> /Users/USER/*/OBS.app/Contents/PlugIns/obs-vst.so 0x23346000 - 0x2334dfff +obs-x264.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/obs-x264.so 0x23356000 - 0x23565fef +libx264.161.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libx264.161.dylib 0x23666000 - 0x2366dfff +rtmp-services.so (0) <3F9988CD-A7F0-35E2-B345-4E113F75DE0F> /Users/USER/*/OBS.app/Contents/PlugIns/rtmp-services.so 0x2367a000 - 0x23681ffb +text-freetype2.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/text-freetype2.so 0x2368a000 - 0x23791fff +libfreetype.6.dylib (0) <068F6531-D454-39A0-B5BD-5C94E21CD994> /Users/USER/*/OBS.app/Contents/Frameworks/libfreetype.6.dylib 0x237c2000 - 0x237c9fff +vlc-video.so (0) /Users/USER/*/OBS.app/Contents/PlugIns/vlc-video.so 0x237d2000 - 0x238a8ff7 +libvlccore.dylib (10) <078B7BFB-360F-3EF4-A9F0-88876775D423> /Applications/VLC.app/Contents/MacOS/lib/libvlccore.dylib 0x238c7000 - 0x238dfff7 +libvlc.5.dylib (12) <30B34240-0E67-3DCF-AE7A-66D2DFD7D882> /Applications/VLC.app/Contents/MacOS/lib/libvlc.5.dylib 0x238ee000 - 0x2391ffff +StreamDeckPlugin.so (0) <226F463F-AB9B-348C-8A64-D8A6439DC487> /Library/Application Support/obs-studio/*/StreamDeckPlugin.so 0x2393d000 - 0x23a50fff +org.qt-project.QtNetwork (5.15 - 5.15.2) <1822D5DD-20A2-384F-9229-5AFAE70163E4> /Users/USER/*/OBS.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork 0x23a9d000 - 0x23aa5ff7 +obs-mac-virtualcam.so (0) <7D8AFEA2-4864-3F9C-9061-81668C6C5B58> /Library/Application Support/obs-studio/*/obs-mac-virtualcam.so 0x23aaf000 - 0x2401aff7 com.apple.audio.codecs.Components (7.0 - 7.0) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs 0x24131000 - 0x24135ffb com.apple.audio.AppleHDAHALPlugIn (281.52 - 281.52) <23C7DDE6-A44B-3BE4-B47C-EB3045B267D9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn 0x2416c000 - 0x24314ff7 com.apple.audio.units.Components (1.14 - 1.14) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x24418000 - 0x24424ff7 +com.meldaproduction.MEqualizer (13.03) <3F9F0365-31FA-33E1-B0ED-28D518617AAB> /Library/Audio/Plug-Ins/VST/MeldaProduction/EQ/MEqualizer.vst/Contents/MacOS/MEqualizer.bin 0x24431000 - 0x27ffbfff +libMeldaProductionAudioPluginKernelV11.dylib (0) <95AA5CBC-1DB6-3272-A6E3-8787DB768FB1> /Library/Application Support/MeldaProduction/*/libMeldaProductionAudioPluginKernelV11.dylib 0x10e1b7000 - 0x10e3f6ffb +com.obsproject.obs-studio (26.1.0-20bb46504 - 26.1.0-20bb46504) <87A80D95-EAD7-39D3-AD06-24CC00146A1B> /Users/USER/*/OBS.app/Contents/MacOS/obs 0x10e575000 - 0x10e5acff7 +org.qt-project.QtSvg (5.15 - 5.15.2) <829132DA-086E-315A-8C3A-E889AA18A4C7> /Users/USER/*/OBS.app/Contents/Frameworks/QtSvg.framework/Versions/5/QtSvg 0x10e5cb000 - 0x10e602fff +org.qt-project.QtXml (5.15 - 5.15.2) /Users/USER/*/OBS.app/Contents/Frameworks/QtXml.framework/Versions/5/QtXml 0x10e617000 - 0x10e61afff +libobs-frontend-api.dylib (0) /Users/USER/*/OBS.app/Contents/Frameworks/libobs-frontend-api.dylib 0x10e687000 - 0x10e6d1acf dyld (551.5) <30B355CB-35BA-3112-AA76-4E46CD45F699> /usr/lib/dyld 0x7fff39e5c000 - 0x7fff3a1aaff7 com.apple.RawCamera.bundle (8.05.0 - 1017.4.1) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff3da7c000 - 0x7fff3da80ffb com.apple.agl (3.3.1 - AGL-3.3.1) <3741CDE0-4030-32F2-A7B4-ACE7D2E92214> /System/Library/Frameworks/AGL.framework/Versions/A/AGL 0x7fff3da81000 - 0x7fff3dc61ff3 com.apple.avfoundation (2.0 - 1536.36) <352C74E0-0F17-376A-9A80-CB53CF96D97F> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff3dc62000 - 0x7fff3dd1bfff com.apple.audio.AVFAudio (1.0 - ???) <981E3F2C-08CF-3A05-A34E-F25533200A27> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff3de21000 - 0x7fff3de21fff com.apple.Accelerate (1.11 - Accelerate 1.11) <8632A9C5-19EA-3FD7-A44D-80765CC9C540> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff3de22000 - 0x7fff3de38fef libCGInterfaces.dylib (417.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff3de39000 - 0x7fff3e337fc3 com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff3e338000 - 0x7fff3e492fe3 libBLAS.dylib (1211.50.2) <62C659EB-3E32-3B5F-83BF-79F5DF30D5CE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff3e493000 - 0x7fff3e4c1fef libBNNS.dylib (38.1) <7BAEFDCA-3227-3E07-80D8-59B6370B89C6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff3e4c2000 - 0x7fff3e881ff7 libLAPACK.dylib (1211.50.2) <40ADBA5F-8B2D-30AC-A7AD-7B17C37EE52D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff3e882000 - 0x7fff3e897ff7 libLinearAlgebra.dylib (1211.50.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff3e898000 - 0x7fff3e89dff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff3e89e000 - 0x7fff3e91efff libSparse.dylib (79.50.2) <0DC25CDD-F8C1-3D6E-B472-8B060708424F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff3e91f000 - 0x7fff3e932fff libSparseBLAS.dylib (1211.50.2) <722573CC-31CC-34B2-9032-E4F652A9CCFE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff3e933000 - 0x7fff3eae0fc3 libvDSP.dylib (622.50.5) <40690941-CF89-3F90-A0AC-A4D200744A5D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff3eae1000 - 0x7fff3eb92fff libvMisc.dylib (622.50.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff3eb93000 - 0x7fff3eb93fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <54FF3B43-E66C-3F36-B34B-A2B3B0A36502> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff3ee87000 - 0x7fff3fce5fff com.apple.AppKit (6.9 - 1561.60.100) <77CA789F-B01E-3D3C-82CC-5D1205BDDBEA> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff3fd37000 - 0x7fff3fd37fff com.apple.ApplicationServices (48 - 50) <63B0C61F-CFE8-3884-853F-E6FB6CD84A44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff3fd38000 - 0x7fff3fd9efff com.apple.ApplicationServices.ATS (377 - 445.5) <703CE7E4-426A-35C0-A229-F140F30F5340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff3fe37000 - 0x7fff3ff59fff libFontParser.dylib (222.1.7) <9C4CEFB4-0F08-3B60-BD50-0120A37F6EA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib 0x7fff3ff5a000 - 0x7fff3ffa4ff7 libFontRegistry.dylib (221.5) <8F68EA59-C8EE-3FA3-BD19-0F1A58441440> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff3fff6000 - 0x7fff3fffbfff libFontRegistryUI.dylib (221.5) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistryUI.dylib 0x7fff40049000 - 0x7fff4007cff7 libTrueTypeScaler.dylib (222.1.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib 0x7fff400e6000 - 0x7fff400eaff3 com.apple.ColorSyncLegacy (4.13.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff4018a000 - 0x7fff401dcffb com.apple.HIServices (1.22 - 625) <78A1FB4F-A39C-3159-B285-600C997335FB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff401dd000 - 0x7fff401ebfff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff401ec000 - 0x7fff40238fff com.apple.print.framework.PrintCore (13.4 - 503.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff40239000 - 0x7fff40273fff com.apple.QD (3.12 - 404.2) <38B20AFF-9D54-3B52-A6DC-C0D71380AA5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff40274000 - 0x7fff40280fff com.apple.speech.synthesis.framework (7.8.1 - 7.8.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff40281000 - 0x7fff4050fff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <287960E1-605E-3789-9237-FDC3F3EC4000> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff40511000 - 0x7fff40511fff com.apple.audio.units.AudioUnit (1.14 - 1.14) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff40834000 - 0x7fff40bcfff7 com.apple.CFNetwork (902.3.1 - 902.3.1) <4C012538-BB8A-32F3-AACA-011092BEFAB1> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff40be4000 - 0x7fff40be4fff com.apple.Carbon (158 - 158) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff40be5000 - 0x7fff40be8ffb com.apple.CommonPanels (1.2.6 - 98) <2391761C-5CAA-3F68-86B7-50B37927B104> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff40be9000 - 0x7fff40eeefff com.apple.HIToolbox (2.1.1 - 911.10) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff40eef000 - 0x7fff40ef2ffb com.apple.help (1.3.8 - 66) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff40ef3000 - 0x7fff40ef8fff com.apple.ImageCapture (9.0 - 9.0) <23B4916F-3B43-3DFF-B956-FC390EECA284> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff40ef9000 - 0x7fff40f8effb com.apple.ink.framework (10.9 - 221) <5206C8B0-22DA-36C9-998E-846EDB626D5B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff40f8f000 - 0x7fff40fa9ff7 com.apple.openscripting (1.7 - 174) <1B2A1F9E-5534-3D61-83CA-9199B39E8708> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff40fca000 - 0x7fff40fcbfff com.apple.print.framework.Print (12 - 267) <3682ABFB-2561-3419-847D-02C247F4800D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff40fcc000 - 0x7fff40fceff7 com.apple.securityhi (9.0 - 55006) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff40fcf000 - 0x7fff40fd5fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <2ED8643D-B0C3-3F17-82A2-BBF13E6CBABC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff410f6000 - 0x7fff410f6fff com.apple.Cocoa (6.11 - 22) <7AE76ADE-B550-3838-9B7F-0EF4101EC09F> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff41104000 - 0x7fff411bdfff com.apple.ColorSync (4.13.0 - 3325) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff4134a000 - 0x7fff413ddff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff41444000 - 0x7fff4146dffb com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff4146e000 - 0x7fff417c4fef com.apple.CoreData (120 - 851) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff417c5000 - 0x7fff418a8fff com.apple.CoreDisplay (99.14 - 99.14) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff418a9000 - 0x7fff41d4bff7 com.apple.CoreFoundation (6.9 - 1454.96) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff41d4d000 - 0x7fff4235dfef com.apple.CoreGraphics (2.0 - 1161.21.2) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff4235f000 - 0x7fff4264efff com.apple.CoreImage (13.0.0 - 579.5) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff426bb000 - 0x7fff42700fff com.apple.audio.midi.CoreMIDI (1.10 - 88) <497D7787-8CBC-378E-9DBB-65ADDF983CAB> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI 0x7fff428dd000 - 0x7fff429d3ffb com.apple.CoreMedia (1.0 - 2276.80.3) <3C80D00B-39A9-3719-8B5B-58F47BC25DCF> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff429d4000 - 0x7fff42a22fff com.apple.CoreMediaIO (814.0 - 4995) <365473D9-B771-3C68-BEFB-21F7492321A9> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff42a23000 - 0x7fff42a23fff com.apple.CoreServices (822.37 - 822.37) <58ADA4D7-2FC0-32AC-BB75-DD8834454ACC> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff42a24000 - 0x7fff42a98ffb com.apple.AE (735.2 - 735.2) <690A6F47-1306-371F-B257-783D8F83EA9E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff42a99000 - 0x7fff42d70fff com.apple.CoreServices.CarbonCore (1178.4.1 - 1178.4.1) <009E1ABC-A66B-3355-9E6C-0D4E9B7BEA4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff42d71000 - 0x7fff42da5fff com.apple.DictionaryServices (1.2 - 284.2) <6505B075-41C3-3C62-A4C3-85CE3F6825CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff42da6000 - 0x7fff42daeffb com.apple.CoreServices.FSEvents (1239.50.1 - 1239.50.1) <3637CEC7-DF0E-320E-9634-44A442925C65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff42daf000 - 0x7fff42f6dff7 com.apple.LaunchServices (822.37 - 822.37) <5FD5F15D-0D10-302E-AF17-AD2A3B9B5926> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff42f6e000 - 0x7fff4301efff com.apple.Metadata (10.7.0 - 1191.7) <3DD530A7-E104-3469-98BB-20449834B2FE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff4301f000 - 0x7fff4307ffff com.apple.CoreServices.OSServices (822.37 - 822.37) <789FD38A-B612-3A66-8EE8-27A344FAD7A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff43080000 - 0x7fff430eefff com.apple.SearchKit (1.4.0 - 1.4.0) <3662545A-B1CF-3079-BDCD-C83855CEFEEE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff430ef000 - 0x7fff43113ffb com.apple.coreservices.SharedFileList (71.21 - 71.21) <1B5228EF-D869-3A50-A373-7F4B0289FADD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff433b4000 - 0x7fff43504fff com.apple.CoreText (352.0 - 578.22) <6129F39D-284D-3BBF-8999-7854AB61C01C> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff43505000 - 0x7fff4353ffff com.apple.CoreVideo (1.8 - 0.0) <86CCC036-51BB-3DD1-9601-D93798BCCD0F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff43540000 - 0x7fff435cbff3 com.apple.framework.CoreWLAN (13.0 - 1350.2) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff43846000 - 0x7fff4384bfff com.apple.DiskArbitration (2.7 - 2.7) <2F628584-8177-3894-92CE-9CA6089B61C6> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff43a09000 - 0x7fff43a0bff7 com.apple.ForceFeedback (1.0.6 - 1.0.6) <87FB3F31-DF4C-3172-BF86-45EFC331BDD8> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback 0x7fff43a0c000 - 0x7fff43dd2ff3 com.apple.Foundation (6.9 - 1454.96) <0DD43942-B183-3A39-BCDE-E3CCA0E4DE59> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff43e43000 - 0x7fff43e73ff3 com.apple.GSS (4.0 - 2.0) <62F1A2A7-EBDB-3CAB-8306-4DA9EFA70E81> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff43e74000 - 0x7fff43e8cff3 com.apple.GameController (1.0 - 1) /System/Library/Frameworks/GameController.framework/Versions/A/GameController 0x7fff43f85000 - 0x7fff44089ffb com.apple.Bluetooth (6.0.7 - 6.0.7f13) <79541841-2777-3217-B918-2A59601BCCEB> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff440e9000 - 0x7fff44184fff com.apple.framework.IOKit (2.0.2 - 1445.71.6) <9337E730-48FF-306C-B8A2-5DFCDBECD9F6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff44186000 - 0x7fff4418dfff com.apple.IOSurface (211.16 - 211.16) <3A727DBA-324D-3ED5-9665-573D091A9B67> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff4418e000 - 0x7fff441e3ff3 com.apple.ImageCaptureCore (7.0 - 7.0) <0DAB3D7E-8C3F-35DE-96DF-C370AD35EB65> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff441e4000 - 0x7fff4435efe7 com.apple.ImageIO.framework (3.3.0 - 1739.3.1) <9E5567EF-14E5-3D8B-985A-E4746043FD26> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff4435f000 - 0x7fff44363ffb libGIF.dylib (1739.3.1) <18C293BB-E3FD-3125-87A9-3BEBC49060CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff44364000 - 0x7fff4444bfe7 libJP2.dylib (1739.3.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff4444c000 - 0x7fff4446fff7 libJPEG.dylib (1739.3.1) <94116E67-CD25-3D46-B1BE-EB6E7BD42177> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff4474b000 - 0x7fff44771feb libPng.dylib (1739.3.1) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff44772000 - 0x7fff44774ffb libRadiance.dylib (1739.3.1) <7DA8A381-4902-375D-AC3F-53B2A738208C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff44775000 - 0x7fff447c3fef libTIFF.dylib (1739.3.1) <184BD146-22B2-3342-AC90-C328050C6558> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff4497f000 - 0x7fff45665fff com.apple.JavaScriptCore (13605 - 13605.3.8) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff4567d000 - 0x7fff45696ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff45697000 - 0x7fff456ccfff com.apple.LDAPFramework (2.4.28 - 194.5) <08888215-BBCE-3402-8142-2C9ADB091580> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP 0x7fff45716000 - 0x7fff45734ffb com.apple.CoreAuthentication.SharedUtils (1.0 - 425.70.1) <6A9A9D8D-73F5-374D-A37C-3A24A75033CF> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/Versions/A/SharedUtils 0x7fff45735000 - 0x7fff4574bff7 com.apple.LocalAuthentication (1.0 - 425.70.1) <089B783E-4DA5-3B3E-82B4-63E42E414880> /System/Library/Frameworks/LocalAuthentication.framework/Versions/A/LocalAuthentication 0x7fff45955000 - 0x7fff4595cfff com.apple.MediaAccessibility (1.0 - 114) <9F72AACD-BAEB-3646-BD0F-12C47591C20D> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff45972000 - 0x7fff45a0bfff com.apple.MediaPlayer (1.0 - 1.0) <9668BB09-DD6B-302B-AF01-2B5928128F63> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer 0x7fff45a0c000 - 0x7fff46076ff7 com.apple.MediaToolbox (1.0 - 2276.80.3) <38D00207-A8BA-3B26-B1BB-F4124E25E043> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff46078000 - 0x7fff460f9fff com.apple.Metal (125.30 - 125.30) <659DF560-9B89-3E8A-88AC-4C0BCB4578B4> /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff46116000 - 0x7fff46131fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff46132000 - 0x7fff461a1fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <338B7779-E608-3D68-8A07-2ACC11299744> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff461a2000 - 0x7fff461c6fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <9CE072D7-853B-3939-9645-7EB951376B87> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff461c7000 - 0x7fff462aeff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <0DE891AD-27E5-38FF-AEC8-4A95356C4357> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff462af000 - 0x7fff462afff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <2D2D261C-50B0-32F9-BF9A-5C01382BB528> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff472ae000 - 0x7fff472baffb com.apple.NetFS (6.0 - 4.0) <471DD96F-FA2E-3FE9-9746-2519A6780D1A> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS 0x7fff4a0a3000 - 0x7fff4a0abfef libcldcpuengine.dylib (2.8.7) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib 0x7fff4a0ac000 - 0x7fff4a106ff7 com.apple.opencl (2.8.24 - 2.8.24) <1104D870-CE68-3240-81D7-C58D8A24EF0A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff4a107000 - 0x7fff4a123ffb com.apple.CFOpenDirectory (10.13 - 207.50.1) <29F55F7B-379F-3053-8FF3-5C6675A3DD4D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff4a124000 - 0x7fff4a12ffff com.apple.OpenDirectory (10.13 - 207.50.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff4b2ae000 - 0x7fff4b2b0fff libCVMSPluginSupport.dylib (16.7.4) <6846D939-478C-3AE3-9DCD-CD4F4CD05409> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff4b2b1000 - 0x7fff4b2b6ffb libCoreFSCache.dylib (162.9) <1BBC6180-FCC0-31EB-8C0A-A1287A9A87C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff4b2b7000 - 0x7fff4b2bbfff libCoreVMClient.dylib (162.9) <8F26B9F9-75DB-3292-9DE8-D9E023B2690C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff4b2bc000 - 0x7fff4b2c5ff3 libGFXShared.dylib (16.7.4) <6187AD8B-1CD2-3775-84CD-76A0EA8BCDD4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff4b2c6000 - 0x7fff4b2d1fff libGL.dylib (16.7.4) <2BB333D3-5C61-33DF-8545-06DF2D08B83D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff4b2d2000 - 0x7fff4b30dfe7 libGLImage.dylib (16.7.4) <4DA003CE-0B74-3FE4-808C-B2FBCE517EB4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff4b30e000 - 0x7fff4b47bff3 libGLProgrammability.dylib (16.7.4) <694056A5-DAF8-32BB-A75B-F25FE08351AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x7fff4b47c000 - 0x7fff4b4baffb libGLU.dylib (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff4be32000 - 0x7fff4be41ff3 com.apple.opengl (16.7.4 - 16.7.4) <7B71A596-B6D8-335A-B7CA-8684D83B9C0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff4be42000 - 0x7fff4bfd9ff3 GLEngine (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x7fff4bfda000 - 0x7fff4c002ffb GLRendererFloat (16.7.4) /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat 0x7fff4c1bb000 - 0x7fff4c307ff7 com.apple.QTKit (7.7.3 - 3014.8) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit 0x7fff4c308000 - 0x7fff4c56dff7 com.apple.imageKit (3.0 - 1043) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff4c56e000 - 0x7fff4c65dffb com.apple.PDFKit (1.0 - 677.67) <6BD11C23-1AEA-3078-8D0C-A7152BCF9031> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff4c65e000 - 0x7fff4cb70ff7 com.apple.QuartzComposer (5.1 - 364) <1369D6DA-8842-3878-B546-1D09828331F5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff4cb71000 - 0x7fff4cb94fff com.apple.quartzfilters (1.10.0 - 1.10.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff4cb95000 - 0x7fff4cc8eff7 com.apple.QuickLookUIFramework (5.0 - 743.13) <09B296B3-4242-3224-9F44-5DFB4AB894CC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff4cc8f000 - 0x7fff4cc8ffff com.apple.quartzframework (1.5 - 21) /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff4cc90000 - 0x7fff4cedcff7 com.apple.QuartzCore (1.11 - 584.64.2) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff4cedd000 - 0x7fff4cf34ff7 com.apple.QuickLookFramework (5.0 - 743.13) <8254FFF2-EE0D-323D-A6F3-BEB59615EE47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff4d0fa000 - 0x7fff4d113ffb com.apple.SafariServices.framework (13607 - 13607.2.6.1.2) /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff4d6fb000 - 0x7fff4d712fff com.apple.ScriptingBridge (1.3.3 - 70) <2C987E75-B409-3824-84E8-0F1DD6B96E8B> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge 0x7fff4d713000 - 0x7fff4da3efff com.apple.security (7.0 - 58286.70.14) /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff4da3f000 - 0x7fff4dacbff7 com.apple.securityfoundation (6.0 - 55185.50.5) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff4dacc000 - 0x7fff4dafcfff com.apple.securityinterface (10.0 - 55109.50.6) <1CA937BE-06CC-37A3-9DB8-98259CDA8652> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff4dafd000 - 0x7fff4db01ffb com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff4dea6000 - 0x7fff4df16ff3 com.apple.SystemConfiguration (1.17 - 1.17) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff4e0cb000 - 0x7fff4e446fff com.apple.VideoToolbox (1.0 - 2276.80.3) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff4e6ee000 - 0x7fff4ec4dfeb libwebrtc.dylib (7605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib 0x7fff4ec4e000 - 0x7fff50321ff7 com.apple.WebCore (13605 - 13605.3.8) <7A44888D-C70E-39D6-A7A7-DB8228B4CB63> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff50322000 - 0x7fff50509ff7 com.apple.WebKitLegacy (13605 - 13605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff5050a000 - 0x7fff509a3fff com.apple.WebKit (13605 - 13605.3.8) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff50e13000 - 0x7fff50ea6fff com.apple.APFS (1.0 - 1) <7CC77BF1-881B-357A-9E05-A73C661F830E> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff51ad4000 - 0x7fff51afcfff com.apple.framework.Apple80211 (13.0 - 1370.4) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff51afe000 - 0x7fff51b0dfef com.apple.AppleFSCompression (96.60.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff51c0c000 - 0x7fff51c17ff7 com.apple.AppleIDAuthSupport (1.0 - 1) <2FAF5567-CDB3-33EF-AB71-05D37F2248B7> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff51c51000 - 0x7fff51c99ff3 com.apple.AppleJPEG (1.0 - 1) <8DD410CB-76A1-3F22-9A9F-0491FA0CEB4A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff51ccb000 - 0x7fff51cd3ff3 com.apple.AppleSRP (5.0 - 1) <4CEC34CF-63E3-3023-B61B-F8D133698534> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff51cd4000 - 0x7fff51cfcfff com.apple.applesauce (1.0 - ???) /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff51dc5000 - 0x7fff51dc8fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <39419365-1166-3B27-BFFB-ADD281E38290> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff51dc9000 - 0x7fff51e19ff7 com.apple.AppleVAFramework (5.0.41 - 5.0.41) <3E322B24-26DC-3A1F-A253-425BBAD293D8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff5214f000 - 0x7fff523e8ffb com.apple.AuthKit (1.0 - 1) <6CA71A11-91C5-307C-B933-9FCDEDCB580A> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff5251f000 - 0x7fff52526ff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <51A41CA3-DB1D-3380-993E-99C54AEE518E> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff52527000 - 0x7fff525aeff7 com.apple.backup.framework (1.9.6 - 1.9.6) <8322892C-9183-318D-9489-2C16D228DC85> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff525b7000 - 0x7fff525bdff7 com.apple.BezelServicesFW (305.1 - 305.1) <7D2C4717-FFF2-3262-B822-1982596BE46B> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices 0x7fff53390000 - 0x7fff533dfff3 com.apple.ChunkingLibrary (189 - 189) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff53f68000 - 0x7fff53f71ff3 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff542ad000 - 0x7fff546b5fff com.apple.CoreAUC (259.0.0 - 259.0.0) <1E0FB2C7-109E-3924-8E7F-8C6ACD78AF26> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff546b6000 - 0x7fff546e6ff7 com.apple.CoreAVCHD (5.9.0 - 5900.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff5477d000 - 0x7fff547cfff7 com.apple.corebrightness (1.0 - 1) /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff5490e000 - 0x7fff54917ff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <35A43584-2AF8-3202-A139-27D916E444BE> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff54a85000 - 0x7fff54a95ff7 com.apple.CoreEmoji (1.0 - 69.3) /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff54d99000 - 0x7fff54dafff7 com.apple.CoreMediaAuthoring (2.2 - 956) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring 0x7fff550de000 - 0x7fff550e3ff7 com.apple.CoreOptimization (1.0 - 1) <785B622B-8F7D-3B4D-83AF-EB98CB79FFF6> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization 0x7fff550e4000 - 0x7fff55189fff com.apple.CorePDF (4.0 - 414) /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff55229000 - 0x7fff55231ff3 com.apple.CorePhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff55232000 - 0x7fff5528efff com.apple.CorePrediction (1.0 - 1) /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction 0x7fff553bc000 - 0x7fff553edff3 com.apple.CoreServicesInternal (309.1 - 309.1) <4ECD14EA-A493-3B84-A32F-CF928474A405> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff55767000 - 0x7fff557f8fff com.apple.CoreSymbolication (9.3 - 64026.2) <270D337A-5CF1-340A-9A9C-0A837E542303> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff5587b000 - 0x7fff559b0fff com.apple.coreui (2.1 - 494.1) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff559b1000 - 0x7fff55ae2fff com.apple.CoreUtils (5.6 - 560.11) <1A02D6F0-8C65-3FAE-AD63-56477EDE4773> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff55b37000 - 0x7fff55b9bfff com.apple.framework.CoreWiFi (13.0 - 1350.2) <50E8598A-0611-323D-B9A8-72A336424090> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff55b9c000 - 0x7fff55bacff7 com.apple.CrashReporterSupport (10.13 - 1) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff55c2b000 - 0x7fff55c3aff7 com.apple.framework.DFRFoundation (1.0 - 191.7) <3B8ED6F7-5DFF-34C3-BA90-DDB85679684C> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff55c3d000 - 0x7fff55c41ffb com.apple.DSExternalDisplay (3.1 - 380) <901B7F6D-376A-3848-99D0-170C4D00F776> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff55cc3000 - 0x7fff55d39fff com.apple.datadetectorscore (7.0 - 590.3) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff55d87000 - 0x7fff55dc7ff7 com.apple.DebugSymbols (181.0 - 181.0) <299A0238-ED78-3676-B131-274D972824AA> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff55dc8000 - 0x7fff55ef7fff com.apple.desktopservices (1.12.5 - 1.12.5) <7739C9A5-64D9-31A5-899B-5FFA242AD70D> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff561c5000 - 0x7fff561c9ff7 com.apple.DisplayServicesFW (3.1 - 380) <6F0B8AC6-7E62-3DFC-B373-BF04833724C0> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff56d0c000 - 0x7fff5713afff com.apple.vision.FaceCore (3.3.2 - 3.3.2) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff5a3f6000 - 0x7fff5a401ff7 libGPUSupportMercury.dylib (16.7.4) <2580DF66-92EA-38DC-A4AB-A7515C578E0E> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib 0x7fff5a402000 - 0x7fff5a407fff com.apple.GPUWrangler (3.20.0 - 3.20.0) /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff5a7bb000 - 0x7fff5a7e0ff3 com.apple.GenerationalStorage (2.0 - 285.3) <13B96400-FF70-376B-B20E-FB7D61064800> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff5b17d000 - 0x7fff5b18cfff com.apple.GraphVisualizer (1.0 - 5) /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff5b20f000 - 0x7fff5b283fff com.apple.Heimdal (4.0 - 2.0) <9F4D7008-944E-3A7C-8E58-A9F7D8497C32> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff5bb93000 - 0x7fff5bb9aff7 com.apple.IOAccelerator (378.28 - 378.28) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff5bb9e000 - 0x7fff5bbb5fff com.apple.IOPresentment (1.0 - 35.1) <53B47F2A-9A9A-33F5-ADCB-FF766292B93A> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff5bf80000 - 0x7fff5bfa6ffb com.apple.IconServices (97.6 - 97.6) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff5c0b3000 - 0x7fff5c0b6ff3 com.apple.InternationalSupport (1.0 - 1) <5AB382FD-BF81-36A1-9565-61F1FD398ECA> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff5c124000 - 0x7fff5c134ffb com.apple.IntlPreferences (2.0 - 227.5.2) <7FC3783F-C96A-3CD6-BBA8-2BC682BC7109> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences 0x7fff5c22b000 - 0x7fff5c23eff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff5c23f000 - 0x7fff5c334ff7 com.apple.LanguageModeling (1.0 - 159.5.3) <7F0AC200-E3DD-39FB-8A95-00DD70B66A9F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff5c335000 - 0x7fff5c377fff com.apple.Lexicon-framework (1.0 - 33.5) /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff5c37b000 - 0x7fff5c382ff7 com.apple.LinguisticData (1.0 - 238.3) <49A54649-1021-3DBD-99B8-1B2EDFFA5378> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff5cb81000 - 0x7fff5cb84fff com.apple.Mangrove (1.0 - 1) <27D6DF76-B5F8-3443-8826-D25B284331BF> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff5ccd4000 - 0x7fff5cffdff7 com.apple.MediaRemote (1.0 - 1) <0B972F7E-27D6-3214-99DF-957C03F8D878> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote 0x7fff5cffe000 - 0x7fff5d01ffff com.apple.MediaServices (1.0 - 1) <6C3DDABB-2C14-3E1B-BA15-D1CD8EDB8202> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices 0x7fff5d094000 - 0x7fff5d0fdff7 com.apple.gpusw.MetalTools (1.0 - 1) <2C0FE0FB-FAC2-3906-A46D-CF68392EC549> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff5d106000 - 0x7fff5d11dff7 com.apple.MobileAssets (1.0 - 437.60.1) <5FFD8A8B-F33F-3FA9-8F50-31C24A67862C> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff5d2db000 - 0x7fff5d2f4fff com.apple.MobileKeyBag (2.0 - 1.0) /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff5d380000 - 0x7fff5d3aaffb com.apple.MultitouchSupport.framework (1614.1 - 1614.1) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff5d611000 - 0x7fff5d61cfff com.apple.NetAuth (6.2 - 6.2) <2CFA1228-61A1-3708-988D-30499A1D6A9F> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff5eeb5000 - 0x7fff5eec5ffb com.apple.PerformanceAnalysis (1.194 - 194) <8022ED1F-CE70-388E-B37B-6FB1E5F90CF2> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff60c84000 - 0x7fff60ca2fff com.apple.ProtocolBuffer (1 - 260) <40704740-4A53-3010-A49B-08D1D69D1D5E> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff60e0f000 - 0x7fff60e25ff7 com.apple.QuickLookThumbnailing (1.0 - 1) <8F0092E4-6494-349D-B4C9-494DF293D716> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff60e70000 - 0x7fff60e7cfff com.apple.xpc.RemoteServiceDiscovery (1.0 - 1205.70.12) <2F346908-26B6-35D5-9F5F-5C5689054B5D> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff60e7d000 - 0x7fff60ea0ffb com.apple.RemoteViewServices (2.0 - 125) <592323D1-CB44-35F1-9921-4C2AB8D920A0> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff60ea1000 - 0x7fff60eb6ff3 com.apple.xpc.RemoteXPC (1.0 - 1205.70.12) <731C1EAA-37D7-3C31-B9AA-75B8226104C8> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC 0x7fff627c4000 - 0x7fff628d9ff7 com.apple.Sharing (1050.22.3 - 1050.22.3) <6427670D-140A-3F4C-8BD8-2D9EED677FA0> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff62904000 - 0x7fff62905ff7 com.apple.performance.SignpostNotification (1.2.6 - 2.6) <6B51F579-9FFC-30AB-863B-97BF787D6BD3> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification 0x7fff63662000 - 0x7fff638fefff com.apple.SkyLight (1.600.0 - 312.103.11) <3E03D943-2BA4-3658-B014-1675DD191696> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff640c7000 - 0x7fff640d4fff com.apple.SpeechRecognitionCore (4.6.1 - 4.6.1) <87EE7AB5-6925-3D21-BE00-F155CB457699> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff64581000 - 0x7fff645a8fff com.apple.StreamingZip (1.0 - 1) <32F550C9-3DF8-3DF9-A1EC-699C3D32621B> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff64c7a000 - 0x7fff64d03fc7 com.apple.Symbolication (9.3 - 64033) <824C0843-2779-33D0-AF29-57B00B2C1608> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff65273000 - 0x7fff6527bff7 com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff65488000 - 0x7fff65545ff7 com.apple.TextureIO (3.7 - 3.7) /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff655ef000 - 0x7fff655f0fff com.apple.TrustEvaluationAgent (2.0 - 31) <39F533B2-211E-3635-AF47-23F27749FF4A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent 0x7fff655f6000 - 0x7fff657a5fff com.apple.UIFoundation (1.0 - 547.5) <86A2FBA7-2709-3894-A3D5-A00C19BAC48D> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff6647a000 - 0x7fff66549ff7 com.apple.ViewBridge (343.2 - 343.2) <5519FCED-1F88-3BE6-9BE1-69992086B01B> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff66f21000 - 0x7fff66f23ffb com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff6708a000 - 0x7fff670bdff7 libclosured.dylib (551.5) <112BC241-6626-3848-8DD8-B34B5B6F7ABC> /usr/lib/closure/libclosured.dylib 0x7fff67177000 - 0x7fff671b0ff7 libCRFSuite.dylib (41) /usr/lib/libCRFSuite.dylib 0x7fff671b1000 - 0x7fff671bcfff libChineseTokenizer.dylib (28) <53633C9B-A3A8-36F7-A53C-432D802F4BB8> /usr/lib/libChineseTokenizer.dylib 0x7fff6724e000 - 0x7fff6724fff3 libDiagnosticMessagesClient.dylib (104) <9712E980-76EE-3A89-AEA6-DF4BAF5C0574> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff67286000 - 0x7fff67450ff3 libFosl_dynamic.dylib (17.8) <413FDC7A-28B1-3966-9E25-9536E0164B4F> /usr/lib/libFosl_dynamic.dylib 0x7fff67470000 - 0x7fff67477fff libMatch.1.dylib (31) <74AB4815-11D1-3930-A559-BD6550CE5865> /usr/lib/libMatch.1.dylib 0x7fff67488000 - 0x7fff67488fff libOpenScriptingUtil.dylib (174) <610F0242-7CE5-3C86-951B-B646562694AF> /usr/lib/libOpenScriptingUtil.dylib 0x7fff675bf000 - 0x7fff675c3ffb libScreenReader.dylib (562.18.5) <0FEFDAC8-0FDF-38A0-AB88-A84E0DBA058F> /usr/lib/libScreenReader.dylib 0x7fff675c4000 - 0x7fff675c5ffb libSystem.B.dylib (1252.50.4) <237634FA-3FEA-3C76-8236-DE684D9894A2> /usr/lib/libSystem.B.dylib 0x7fff67658000 - 0x7fff67658fff libapple_crypto.dylib (109.50.14) <48BA2E76-BF2F-3522-A54E-D7FB7EAF7A57> /usr/lib/libapple_crypto.dylib 0x7fff67659000 - 0x7fff6766fff7 libapple_nghttp2.dylib (1.24) <01402BC4-4822-3676-9C80-50D83F816424> /usr/lib/libapple_nghttp2.dylib 0x7fff67670000 - 0x7fff6769aff3 libarchive.2.dylib (54) <8FC28DD8-E315-3C3E-95FE-D1D2CBE49888> /usr/lib/libarchive.2.dylib 0x7fff6769b000 - 0x7fff6771cfdf libate.dylib (1.13.1) <178ACDAD-DE7E-346C-A613-1CBF7929AC07> /usr/lib/libate.dylib 0x7fff67720000 - 0x7fff67720ff3 libauto.dylib (187) /usr/lib/libauto.dylib 0x7fff67721000 - 0x7fff677d9ff3 libboringssl.dylib (109.50.14) /usr/lib/libboringssl.dylib 0x7fff677da000 - 0x7fff677eaff3 libbsm.0.dylib (39) <6BC96A72-AFBE-34FD-91B1-748A530D8AE6> /usr/lib/libbsm.0.dylib 0x7fff677eb000 - 0x7fff677f8ffb libbz2.1.0.dylib (38) <0A5086BB-4724-3C14-979D-5AD4F26B5B45> /usr/lib/libbz2.1.0.dylib 0x7fff677f9000 - 0x7fff6784ffff libc++.1.dylib (400.9) <7D3DACCC-3804-393C-ABC1-1A580FD00CB6> /usr/lib/libc++.1.dylib 0x7fff67850000 - 0x7fff67874ff7 libc++abi.dylib (400.8.2) /usr/lib/libc++abi.dylib 0x7fff67876000 - 0x7fff67886fff libcmph.dylib (6) <890DEC4C-4334-393C-8B56-7C8560BBED9D> /usr/lib/libcmph.dylib 0x7fff67887000 - 0x7fff6789efcf libcompression.dylib (47.60.2) <543F07BF-2F2F-37D5-9866-E84BF659885B> /usr/lib/libcompression.dylib 0x7fff67b49000 - 0x7fff67b61ff7 libcoretls.dylib (155.50.1) /usr/lib/libcoretls.dylib 0x7fff67b62000 - 0x7fff67b63ff3 libcoretls_cfhelpers.dylib (155.50.1) /usr/lib/libcoretls_cfhelpers.dylib 0x7fff67cfc000 - 0x7fff67e8dfff libcrypto.35.dylib (22.50.3) <6E609F99-59BC-3AEA-9DB3-FD360A2C50CC> /usr/lib/libcrypto.35.dylib 0x7fff68034000 - 0x7fff6808aff3 libcups.2.dylib (462.2.5) /usr/lib/libcups.2.dylib 0x7fff680b5000 - 0x7fff68109ffb libcurl.4.dylib (105.40.1) /usr/lib/libcurl.4.dylib 0x7fff681ca000 - 0x7fff681cafff libenergytrace.dylib (16) /usr/lib/libenergytrace.dylib 0x7fff681cb000 - 0x7fff681e4ffb libexpat.1.dylib (16.1.1) <5E1796FA-4041-3187-B5C2-8E6B03D1D72A> /usr/lib/libexpat.1.dylib 0x7fff681f2000 - 0x7fff681f3fff libffi.dylib (18.1) <02011073-8CB7-362F-BC52-43B4E83687B0> /usr/lib/libffi.dylib 0x7fff68201000 - 0x7fff68206ff3 libheimdal-asn1.dylib (520.50.8) <6C10CD33-2920-340F-A98B-E1A465A40D03> /usr/lib/libheimdal-asn1.dylib 0x7fff68232000 - 0x7fff68323ff7 libiconv.2.dylib (51.50.1) <2FEC9707-3FAF-3828-A50D-8605086D060F> /usr/lib/libiconv.2.dylib 0x7fff68324000 - 0x7fff6854bffb libicucore.A.dylib (59181.0.1) <2CE6205F-D375-3BF5-AA0A-3254BC4773D0> /usr/lib/libicucore.A.dylib 0x7fff68598000 - 0x7fff68599fff liblangid.dylib (128) <39C39393-0D05-301D-93B2-F224FC4949AA> /usr/lib/liblangid.dylib 0x7fff6859a000 - 0x7fff685b3ffb liblzma.5.dylib (10) <3D419A50-961F-37D2-8A01-3DC7AB7B8D18> /usr/lib/liblzma.5.dylib 0x7fff685b4000 - 0x7fff685caff7 libmarisa.dylib (9) /usr/lib/libmarisa.dylib 0x7fff6867b000 - 0x7fff688a3ff7 libmecabra.dylib (779.7.6) /usr/lib/libmecabra.dylib 0x7fff68a7b000 - 0x7fff68bf6fff libnetwork.dylib (1229.70.2) /usr/lib/libnetwork.dylib 0x7fff68c7d000 - 0x7fff6906b7e7 libobjc.A.dylib (723) /usr/lib/libobjc.A.dylib 0x7fff6907e000 - 0x7fff69082fff libpam.2.dylib (22) <7B4D2CE2-1438-387A-9802-5CEEFBF26F86> /usr/lib/libpam.2.dylib 0x7fff69085000 - 0x7fff690b9fff libpcap.A.dylib (79.20.1) /usr/lib/libpcap.A.dylib 0x7fff69138000 - 0x7fff69154ffb libresolv.9.dylib (65) /usr/lib/libresolv.9.dylib 0x7fff69156000 - 0x7fff6918fff3 libsandbox.1.dylib (765.70.1) /usr/lib/libsandbox.1.dylib 0x7fff69190000 - 0x7fff691a2fff libsasl2.2.dylib (211) <04EF3F61-12EC-3319-A649-851999F4C7A4> /usr/lib/libsasl2.2.dylib 0x7fff691a3000 - 0x7fff691a4ff3 libspindump.dylib (252) /usr/lib/libspindump.dylib 0x7fff691a5000 - 0x7fff69338ff7 libsqlite3.dylib (274.8.1) /usr/lib/libsqlite3.dylib 0x7fff69394000 - 0x7fff693e7ffb libssl.35.dylib (22.50.3) <208CD5D9-F165-3DED-9DE0-BF2B349895E8> /usr/lib/libssl.35.dylib 0x7fff6950c000 - 0x7fff6956cff3 libusrtcp.dylib (1229.70.2) <1E065228-D0E3-3808-9405-894056C6BEC0> /usr/lib/libusrtcp.dylib 0x7fff6956d000 - 0x7fff69570ffb libutil.dylib (51.20.1) <216D18E5-0BAF-3EAF-A38E-F6AC37CBABD9> /usr/lib/libutil.dylib 0x7fff69571000 - 0x7fff6957eff3 libxar.1.dylib (417.1) <351781D5-3CCF-320F-BB5A-4DFCC1CCD31D> /usr/lib/libxar.1.dylib 0x7fff69582000 - 0x7fff69669fff libxml2.2.dylib (31.13) <8C12B82A-66FD-330C-9BEA-AAC090C7076A> /usr/lib/libxml2.2.dylib 0x7fff6966a000 - 0x7fff69692fff libxslt.1.dylib (15.12) <4A5E011D-8B29-3135-A52B-9A9070ABD752> /usr/lib/libxslt.1.dylib 0x7fff69693000 - 0x7fff696a5ffb libz.1.dylib (70) <48C67CFC-940D-3857-8DAD-857774605352> /usr/lib/libz.1.dylib 0x7fff69741000 - 0x7fff69745ff7 libcache.dylib (80) <092479CB-1008-3A83-BECF-E115F24D13C1> /usr/lib/system/libcache.dylib 0x7fff69746000 - 0x7fff69750ff3 libcommonCrypto.dylib (60118.50.1) <029F5985-9B6E-3DCB-9B96-FD007678C6A7> /usr/lib/system/libcommonCrypto.dylib 0x7fff69751000 - 0x7fff69758fff libcompiler_rt.dylib (62) <968B8E3F-3681-3230-9D78-BB8732024F6E> /usr/lib/system/libcompiler_rt.dylib 0x7fff69759000 - 0x7fff69762ffb libcopyfile.dylib (146.50.5) <3885083D-50D8-3EEC-B481-B2E605180D7F> /usr/lib/system/libcopyfile.dylib 0x7fff69763000 - 0x7fff697e8ffb libcorecrypto.dylib (562.70.3) <37AF8EC6-BF34-3D15-BC3A-A9B98F2427D4> /usr/lib/system/libcorecrypto.dylib 0x7fff69870000 - 0x7fff698a9ff7 libdispatch.dylib (913.60.3) /usr/lib/system/libdispatch.dylib 0x7fff698aa000 - 0x7fff698c7ff7 libdyld.dylib (551.5) <49BF9E96-8297-30CF-8AA6-128CC14054B2> /usr/lib/system/libdyld.dylib 0x7fff698c8000 - 0x7fff698c8ffb libkeymgr.dylib (28) /usr/lib/system/libkeymgr.dylib 0x7fff698c9000 - 0x7fff698d5ff3 libkxld.dylib (4570.71.45) <03FEE7FE-74F1-3EAE-99AE-DEB3EC414AEF> /usr/lib/system/libkxld.dylib 0x7fff698d6000 - 0x7fff698d6ff7 liblaunch.dylib (1205.70.12) <4950A0B3-5EE1-3F9A-8B1A-94FB85FCCA2C> /usr/lib/system/liblaunch.dylib 0x7fff698d7000 - 0x7fff698dbffb libmacho.dylib (906) <1902A611-081A-3452-B11E-EBD1B166E831> /usr/lib/system/libmacho.dylib 0x7fff698dc000 - 0x7fff698deff3 libquarantine.dylib (86) <26C0BA22-8F93-3A07-9A4E-C8D53D2CE42E> /usr/lib/system/libquarantine.dylib 0x7fff698df000 - 0x7fff698e0ff3 libremovefile.dylib (45) <711E18B2-5BBE-3211-A916-56740C27D17A> /usr/lib/system/libremovefile.dylib 0x7fff698e1000 - 0x7fff698f8fff libsystem_asl.dylib (356.70.1) <39E46A6F-B228-3E78-B83E-1779F9707A39> /usr/lib/system/libsystem_asl.dylib 0x7fff698f9000 - 0x7fff698f9fff libsystem_blocks.dylib (67) <17303FDF-0D2D-3963-B05E-B4DF63052D47> /usr/lib/system/libsystem_blocks.dylib 0x7fff698fa000 - 0x7fff69983ff7 libsystem_c.dylib (1244.50.9) <1187BFE8-4576-3247-8177-481554E1F9E7> /usr/lib/system/libsystem_c.dylib 0x7fff69984000 - 0x7fff69987ffb libsystem_configuration.dylib (963.50.9) /usr/lib/system/libsystem_configuration.dylib 0x7fff69988000 - 0x7fff6998bffb libsystem_coreservices.dylib (51) <486000D3-D8CB-3BE7-8EE5-8BF380DE6DF7> /usr/lib/system/libsystem_coreservices.dylib 0x7fff6998c000 - 0x7fff6998dfff libsystem_darwin.dylib (1244.50.9) <09C21A4A-9EE0-388B-A9D9-DFF8F6758791> /usr/lib/system/libsystem_darwin.dylib 0x7fff6998e000 - 0x7fff69994ff7 libsystem_dnssd.dylib (878.70.3) /usr/lib/system/libsystem_dnssd.dylib 0x7fff69995000 - 0x7fff699deff7 libsystem_info.dylib (517.30.1) /usr/lib/system/libsystem_info.dylib 0x7fff699df000 - 0x7fff69a05ff7 libsystem_kernel.dylib (4570.71.45) <939FEA3D-15A3-33E5-9476-789AF120C330> /usr/lib/system/libsystem_kernel.dylib 0x7fff69a06000 - 0x7fff69a51fcb libsystem_m.dylib (3147.50.1) <17570F46-566C-39FC-BEF6-635A355DD549> /usr/lib/system/libsystem_m.dylib 0x7fff69a52000 - 0x7fff69a71ff7 libsystem_malloc.dylib (140.50.7) /usr/lib/system/libsystem_malloc.dylib 0x7fff69a72000 - 0x7fff69ba2ff7 libsystem_network.dylib (1229.70.2) <5E86B2DE-9E15-3354-8714-4094ED5F698D> /usr/lib/system/libsystem_network.dylib 0x7fff69ba3000 - 0x7fff69badffb libsystem_networkextension.dylib (767.70.2) <9DC03712-552D-3AEE-9519-B5ED70980B70> /usr/lib/system/libsystem_networkextension.dylib 0x7fff69bae000 - 0x7fff69bb7ff3 libsystem_notify.dylib (172) <08012EC0-2CD2-34BE-BF93-E7F56491299A> /usr/lib/system/libsystem_notify.dylib 0x7fff69bb8000 - 0x7fff69bbfff7 libsystem_platform.dylib (161.50.1) <6355EE2D-5456-3CA8-A227-B96E8F1E2AF8> /usr/lib/system/libsystem_platform.dylib 0x7fff69bc0000 - 0x7fff69bcbfff libsystem_pthread.dylib (301.50.1) <0E51CCBA-91F2-34E1-BF2A-FEEFD3D321E4> /usr/lib/system/libsystem_pthread.dylib 0x7fff69bcc000 - 0x7fff69bcffff libsystem_sandbox.dylib (765.70.1) <553DFCC6-9D31-3B9C-AB7C-30F6F265786D> /usr/lib/system/libsystem_sandbox.dylib 0x7fff69bd0000 - 0x7fff69bd1ff3 libsystem_secinit.dylib (30) /usr/lib/system/libsystem_secinit.dylib 0x7fff69bd2000 - 0x7fff69bd9ff7 libsystem_symptoms.dylib (820.60.3) <70753784-099A-3E44-9E80-7364C9901CDA> /usr/lib/system/libsystem_symptoms.dylib 0x7fff69bda000 - 0x7fff69bedfff libsystem_trace.dylib (829.70.1) <3A6CB706-8CA6-3616-8AFC-14AAD7FAF187> /usr/lib/system/libsystem_trace.dylib 0x7fff69bef000 - 0x7fff69bf4ff7 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib 0x7fff69bf5000 - 0x7fff69c22ff7 libxpc.dylib (1205.70.12) <7B82608D-ED82-35C1-B13F-99855E25D6DC> /usr/lib/system/libxpc.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 682 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=716.1M resident=0K(0%) swapped_out_or_unallocated=716.1M(100%) Writable regions: Total=264.0M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=264.0M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 2 Activity Tracing 256K 2 CG image 68K 2 CoreServices 232K 2 CoreUI image file 180K 4 Foundation 4K 2 Kernel Alloc Once 8K 2 MALLOC 222.1M 55 MALLOC guard page 48K 13 MALLOC_LARGE (reserved) 320K 3 reserved VM address space (unallocated) OpenGL GLSL 256K 4 PROTECTED_MEMORY 4K 2 STACK GUARD 56.1M 26 Stack 20.2M 27 VM_ALLOCATE 6348K 11 VM_ALLOCATE (reserved) 36K 2 reserved VM address space (unallocated) __DATA 68.1M 436 __DATA_CONST 268K 8 __FONT_DATA 4K 2 __GLSLBUILTINS 2588K 2 __LINKEDIT 220.5M 157 __TEXT 496.0M 414 __UNICODE 560K 2 mapped file 48.7M 78 shared memory 680K 10 =========== ======= ======= TOTAL 1.1G 1243 TOTAL, minus reserved VM space 1.1G 1243 ```
dodgepong commented 3 years ago

That looks like an entirely different crash, not the crash that was reported in this issue.

syropian commented 3 years ago

@dodgepong The original issue I filed was titled 26.1 instantly crashes on macOS 10.13.6, and @WizardCM added the last bit (perhaps assuming that was the only thing that would cause a crash). I doubt it would make sense to open a new issue for each reason it's crashing on High Sierra at this point.

PatTheMav commented 3 years ago

Well it is more complex than that, let me explain:

The Cause

The Effect

I spent the last week investigating and we run into this issue in many ways:

The Solution

After having fixed our pre-built dependencies the only way to make OBS work on macOS 10.13 again is to also compile libjack, fdk-aac and speex as part of obs-deps as well to ensure that they are compiled with a minimum deployment target of 10.13 (as Homebrew does not support it anymore).

Note that JACK depends on libopus (we already build it on CI) and berkeley-db - the latter depends on libcrypto and libssl, which would require us to build both on CI as well, leading to OBS and ffmpeg/srt using mbedtls and libjack using libssl via berkeley-db.

This is a situation we needed to clean-up fix anyway, because it's a bit of a mess. But all that above needs to be fixed to get OBS working on 10.13 again.

PatTheMav commented 3 years ago

@syropian Could you please check this build right here if it works for you: https://github.com/PatTheMav/obs-studio/releases/download/26.1.0-preview/obs-studio-26.1.0-tech-preview-cef-3770.dmg

hagure commented 3 years ago

@syropian Could you please check this build right here if it works for you: https://github.com/PatTheMav/obs-studio/releases/download/26.1.0-preview/obs-studio-26.1.0-tech-preview-cef-3770.dmg

Can confirm this test build is working on macOS 10.13.6, where the release of 26.1.0 did not.

syropian commented 3 years ago

@PatTheMav It kinda works but not really — if my scenes have a browser source it crashes right away with this error, but if the scene has no browser sources it seems to work fine.

PatTheMav commented 3 years ago

Does that happen when you turn off audio monitoring as well?

syropian commented 3 years ago

@PatTheMav I don't think I have audio monitoring on in the first place:

PatTheMav commented 3 years ago

Try with this build as well please: https://github.com/PatTheMav/obs-studio/releases/download/26.1.0-preview/obs-studio-26.1.0-tech-preview-cef-4183.dmg

syropian commented 3 years ago

@PatTheMav That one seems to work fine!

PatTheMav commented 3 years ago

That is indeed weird, but thanks for conforming the more "modern" build works fine. I'll have to fix some issues with CI to get a new automatic build with these fixes ready, I'll ping you once more to test that one once it's ready.

jjdeprisco commented 3 years ago

Just noting that I am seeing the same issue on Mac OS 10.13.6. Tried the link above (very recent):

https://github.com/PatTheMav/obs-studio/releases/download/26.1.0-preview/obs-studio-26.1.0-tech-preview-cef-4183.dmg

And looks like OBS now loads, but need to do some testing.

edwilliams16 commented 3 years ago

I suspect this is just repetition, but here is my crashlog on Mac 10.13.6 - which is the limit of upgradeability of my Mac. [crashlog.txt](https://github.com/obsproject/obs-studio/files/5725796/crashlog.txt)

PatTheMav commented 3 years ago

@syropian Could you please check with this build: https://github.com/obsproject/obs-studio/suites/1707712168/artifacts/32197015

It's automatically generated, so if that one works it means that our build-system fixes are all in place.

edwilliams16 commented 3 years ago

I've yet to use OBS, but the latest version above starts without crashing and presumably works. If you want me to try a specific test, let me know. @PatTheMav

PatTheMav commented 3 years ago

@edwilliams16 Thank you. We have a report further above that adding a browser source to the scene setup will lead to a crash on macOS 10.13 nevertheless. Can you confirm?

edwilliams16 commented 3 years ago

I opened OBS, clicked + and added a browser source. It crashed... Log enclosed Crashlog_browser.txt

syropian commented 3 years ago

Could you please check with this build: https://github.com/obsproject/obs-studio/suites/1707712168/artifacts/32197015

@PatTheMav This build opens as long as there isn't a browser source present. If either one is present, or one is added manually, it crashes.

https://github.com/PatTheMav/obs-studio/releases/download/26.1.0-preview/obs-studio-26.1.0-tech-preview-cef-4183.dmg

This seems to be the only one so far that hasn't crashed for me.

PatTheMav commented 3 years ago

@syropian Thank you, we consider the original bug (OBS crashes on macOS 10.13 because of missing ____chkstk_darwin symbol) to be fixed now.

As for the browser source crash, we haven't been able to find the reason for it, but it's good to know that our current efforts to upgrade CEF might also fix it.

jjdeprisco commented 3 years ago

I'm on 13.6. I just tried the 26.1.1 release which was supposed to fix the Mac crash on OBS startup. Still have the same issue.

"...please ensure all third party plugins such as obs-websocket or StreamFX are up to date."

I even pulled out all of my plugins. I do not use obs-websocket or StreamFX.

See log. obs26-1-1crash.txt

Gol-D-Ace commented 3 years ago

That crash log is from 26.1.0 The 26.1.1 update got pulled because of other issues.

jjdeprisco commented 3 years ago

So even though I went through a 26.1.1 update, it didn't actually update?? I updated via the "Check for Updates" option within OBS. So yeah, problems plural.

For now I've fallen back to 26.0.2, which continues to be the only stable version here.