Coder Social home page Coder Social logo

bespokesynth / bespokesynth Goto Github PK

View Code? Open in Web Editor NEW
3.9K 3.9K 225.0 52.65 MB

Software modular synth

License: GNU General Public License v3.0

C 20.05% C++ 75.93% Makefile 0.04% SWIG 0.42% Python 0.39% CMake 0.61% Batchfile 0.01% CSS 0.17% HTML 2.18% JavaScript 0.06% Less 0.09% Shell 0.04%

bespokesynth's Introduction

Build Status

Bespoke Synth

A software modular synth that I've been building for myself since 2011, and now you can use it!

Nightly Build (updated every commit)

You can find the most recent builds for Mac/Windows/Linux at http://bespokesynth.com, or in the Releases section on GitHub.

Join the Bespoke Discord for support and to discuss with the community.

Documentation

Screenshot

screenshot

Basic Overview/Tutorial Video

Bespoke Overview

Quick Reference

quick reference

Features

  • live-patchable environment, so you can build while the music is playing
  • VST, VST3, LV2 hosting
  • Python livecoding
  • MIDI & OSC controller mapping
  • Works on Windows, Mac, and Linux

License

GNU GPL v3

Releases

Sign up here to receive an email whenever I put out a new release: http://bespokesynth.substack.com/

Building

Building Bespoke from source is easy and fun! The basic cmake prescription gives you a completed executable which is ready to run on your system in many cases.

git clone https://github.com/BespokeSynth/BespokeSynth   # replace this with your fork if you forked
cd BespokeSynth
git submodule update --init --recursive
cmake -Bignore/build -DCMAKE_BUILD_TYPE=Release
cmake --build ignore/build --parallel 4 --config Release

This will produce a release build in ignore/build/Source/BespokeSynth_artefacts.

There are a few useful options to the first cmake command which many folks choose to use.

  • -DBESPOKE_VST2_SDK_LOCATION=/path/to/sdk will activate VST2 hosting support in your built copy of Bespoke if you have access to the VST SDK
  • -DBESPOKE_ASIO_SDK_LOCATION=/path/to/sdk (windows only) will activate ASIO support on windows in your built copy of Bespoke if you have access to the ASIO SDK
  • -DBESPOKE_SPACEMOUSE_SDK_LOCATION=/path/to/sdk (windows only) will activate SpaceMouse canvas navigation support on windows in your built copy of Bespoke if you have access to the SpaceMouse SDK
  • -DBESPOKE_PYTHON_ROOT=/... will override the automatically detected python root. In some cases with M1 mac builds in homebrew this is useful.
  • -DCMAKE_BUILD_TYPE=Debug will produce a build with debug information available
  • -A x64 (windows only) will force visual studio to build for 64 bit architectures, in the event this is not your default
  • -GXcode (mac only) will eject xcode project files rather than the default make files
  • -DCMAKE_INSTALL_PREFIX=/usr (only used on Linux) will set the CMAKE_INSTALL_PREFIX which guides both where your built bespoke looks for resources and also where it installs. After a build on Linux with this configured, you can do sudo cmake --install ignore/build and bespoke will install correctly into this directory. The cmake default is /usr/local.

The directory name ignore/build is arbitrary. Bespoke is set up to .gitignore everything in the ignore directory but you can use any directory name you want for a build or have multiple builds also.

To be able to build you will need a few things, depending on your OS

  • All systems require an install of git
  • On Windows:
    • Install Visual Studio 2019 Community Edition. When you install Visual Studio, make sure to include CLI tools and CMake, which are included in 'Optional CLI support' and 'Toolset for Desktop' install bundles
    • Python from python.org
    • Run all commands from the visual studio command shell which will be available after you install VS.
  • On MacOS: install xcode; install xcode command line tools with xcode-select --install and install cmake with brew install cmake if you use homebrew or from cmake.org if not
  • On Linux you probably already have everything (gcc, git, etc...), but you will need to install required packages. The full list we install on a fresh ubuntu 20 box are listed in the azure-pipelines.yml

bespokesynth's People

Contributors

alex-tee avatar arkyonveil avatar asmw avatar awwbees avatar baconpaul avatar blockbuilder57 avatar bzbzbzbzbzbz avatar carlocattano avatar cassaundra avatar dekrain avatar dertasiu avatar djdeath avatar dvzrv avatar fredericlb avatar friederhannenheim avatar geoffeep avatar gusmccallum avatar haenkel avatar iamevn avatar kottv avatar luzpaz avatar maxigaz avatar merkys avatar mthierman avatar mvf avatar neuschaefer avatar noxynixie avatar sbungartz avatar shiehn avatar tomc1998 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bespokesynth's Issues

data/drums/hits missed in repo

Hi,

Drumplayer searches samples in drums/hits now. This dir with samples is absent in source repo (Builds/MacOSX/build/Release/data) while it's present in .zip releases.

Drumsampler kit path

Hi,

I've tried to save drumkit from the example 2020-09-02_21-56_feedback_distortion_drums.bsk and saw that it uses absolute paths:

         "name" : "test",
         "samples" : [
            {
               "linkid" : -1,
               "pan" : 0.0,
               "sample" : "C:\\Users\\Ryan Challinor\\Documents\\Code\\BespokeSynth\\Builds\\MacOSX\\build\\Release\\data\\drums\\hits\\808kit\\Kick\\Kick [finger].wav",
               "speed" : 1.0,
               "vol" : 0.6299999952316284
            },
            {
               "linkid" : -1,
               "pan" : 0.0,
               "sample" : "C:\\Users\\Ryan Challinor\\Documents\\Code\\BespokeSynth\\Builds\\MacOSX\\build\\Release\\data\\drums\\hits\\808kit\\Clap\\Clap [rico].wav",
               "speed" : 1.0,
               "vol" : 0.8673469424247742
            },
            {
               "linkid" : -1,
               "pan" : 0.0,
               "sample" : "C:\\Users\\Ryan Challinor\\Documents\\Code\\BespokeSynth\\Builds\\MacOSX\\build\\Release\\data\\drums\\hits\\808kit\\HatClosed\\HH [finesse].wav",
               "speed" : 1.0,
               "vol" : 0.6299999952316284
            },
            {
               "linkid" : -1,
               "pan" : 0.0,
               "sample" : "C:\\Users\\Ryan Challinor\\Documents\\Code\\BespokeSynth\\Builds\\MacOSX\\build\\Release\\data\\drums\\hits\\808kit\\Perc\\Perc [thot].wav",
               "speed" : 1.0,
               "vol" : 0.2959183752536774

But it seems that samples actually in the .bsk file.
So one question is it possible to export that samples from your example?

Couple of little bugs in Eq UI.

It's me again...

Eq is beautiful!

изображение

When Eq is resized to not-default values you'll see the filters labels on the background:
изображение

Or curve's artifacts:

изображение

name 'unicode' is not defined

Hi,

Recent build throws this exception when loading any script:

37801: syntax highlight execution exception: NameError: name 'unicode' is not defined

At:
  <string>(18): syntax_highlight_basic
  <string>(2): <module>

system-wide install and data path

Hi,

I'd like to package BespokeSynth (I hope, you're not against more popularity) in Linux repositories.
One thing stops that - relative path for 'data' dir to binary. BS won't start without minimal configuration, so it has to be somewhere in system, if we gonna to install it via package manager.
What do you think, is it possible to distinguish factory and user datadir?
JUCE has File::commonApplicationDataDirectory File::userApplicationDataDirectory File::globalApplicationsDirectory File::userHomeDirectory functions which helps to find userdir and system path for data storing.

From my side I'll try to realize using examples from other JUCE synth (with my zero-level skills in c++)

Examples

Hi,
Ryan, could you add some new examples (with scripting too) into data? For example that I saw in your Twitter.
Please)

Bespoke opens but no audio or transport

Greetings !

The subject says it all. When I start Bespoke it opens okay but there's no transport activity and the "audio cpu" value is at 100%. Any hints what's gone wrong ? I have an earlier version that works fine on this machine. Btw, I'm on Ubuntu 18.04, GCC 7.5.0.

Best regards,

dp

VST problem, need some help

Greetings !

Okay, I have identical Ubuntu 18.04 installations on my desktop and laptop machines. I build Bespoke from source on both machines. On the laptop Bespoke will load and use VST plugins without trouble. On the desktop loading a VST will stop all audio processing, including the clock. I use the same VST SDK, and as far as I can tell there's no significant difference between systems. Can anyone give me a hint where I should be looking to debug the problem on the desktop ? TIA!

dp

VST MIDI

Hi Ryan,

What do you think about adding a MIDI feature to VSTs? So we can put some exotic sequencers, arps or whatever in BespokeSynth.

build error

...
../../Source/Stutter.h:109:18: warning:   ‘StutterParams Stutter::mCurrentStutter’ [-Wreorder]
  109 |    StutterParams mCurrentStutter;
      |                  ^~~~~~~~~~~~~~~
../../Source/Stutter.cpp:19:1: warning:   when initialized here [-Wreorder]
   19 | Stutter::Stutter()
      | ^~~~~~~
In file included from ../../Source/Stutter.cpp:9:
../../Source/Stutter.h:116:9: warning: ‘Stutter::mFadeStutter’ will be initialized after [-Wreorder]
  116 |    bool mFadeStutter;
      |         ^~~~~~~~~~~~
../../Source/Stutter.h:80:10: warning:   ‘float Stutter::mFreeStutterLength’ [-Wreorder]
   80 |    float mFreeStutterLength;
      |          ^~~~~~~~~~~~~~~~~~
../../Source/Stutter.cpp:19:1: warning:   when initialized here [-Wreorder]
   19 | Stutter::Stutter()
      | ^~~~~~~
Compiling TremoloEffect.cpp
In file included from ../../Source/TremoloEffect.cpp:9:
../../Source/TremoloEffect.h: In constructor ‘TremoloEffect::TremoloEffect()’:
../../Source/TremoloEffect.h:58:10: warning: ‘TremoloEffect::mDuty’ will be initialized after [-Wreorder]
   58 |    float mDuty;
      |          ^~~~~
../../Source/TremoloEffect.h:57:17: warning:   ‘FloatSlider* TremoloEffect::mDutySlider’ [-Wreorder]
   57 |    FloatSlider* mDutySlider;
      |                 ^~~~~~~~~~~
../../Source/TremoloEffect.cpp:14:1: warning:   when initialized here [-Wreorder]
   14 | TremoloEffect::TremoloEffect()
      | ^~~~~~~~~~~~~
Compiling GlobalControls.cpp
In file included from ../../Source/GlobalControls.cpp:14:
../../Source/GlobalControls.cpp: In member function ‘virtual void GlobalControls::CreateUIControls()’:
../../Source/GlobalControls.cpp:30:63: error: taking address of rvalue [-fpermissive]
   30 |    FLOATSLIDER(mXSlider, "x pos", &(TheSynth->GetDrawOffset().x), -10000, 10000);
      |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
../../Source/UIControlMacros.h:50:109: note: in definition of macro ‘FLOATSLIDER’
   50 | #define FLOATSLIDER(slider,name,var,min,max) slider = new FloatSlider(UICONTROL_BASICS(name),sliderWidth,15,var,min,max); lastUIControl = slider; UIBLOCK_SHIFTDOWN(); UIBLOCK_UPDATEEXTENTS();
      |                                                                                                             ^~~
../../Source/GlobalControls.cpp:31:63: error: taking address of rvalue [-fpermissive]
   31 |    FLOATSLIDER(mYSlider, "y pos", &(TheSynth->GetDrawOffset().y), -10000, 10000);
      |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~
../../Source/UIControlMacros.h:50:109: note: in definition of macro ‘FLOATSLIDER’
   50 | #define FLOATSLIDER(slider,name,var,min,max) slider = new FloatSlider(UICONTROL_BASICS(name),sliderWidth,15,var,min,max); lastUIControl = slider; UIBLOCK_SHIFTDOWN(); UIBLOCK_UPDATEEXTENTS();
      |                                                                                                             ^~~
make: *** [Makefile:579: build/intermediate/Release/GlobalControls_f3190282.o] Error 1
==> ERROR: A failure occurred in build().
    Aborting...
error making: bespokesynth-git

How can the MacOS build be used?

Seems like I'm missing something?
cd BespokeSynth-master/Builds/MacOSX/build/Release
./run_bespoke.command: line 3: ./Bespoke.app/Contents/MacOS/Bespoke: No such file or directory

some bugs & suggestions

Hello ,
Congrats and thanks for this release,
some bug i've notice:

  • for the MIDI circle sequencer, i suppose there's missing note off, cause after first sequence no note are send, maybe not all VST need this , but at least some?
    so i found a workaround with adding a curve looper to the range of a note wrap ( see attachement)
  • When i reload this patch, the point in the circle seq are not present anymore
  • a suggestion, space bar to active/stop audio engine could be cool ?

Thanks for reading

( btw, don't know if you use social networks, but I've share your work on our Facebook group about experimental tool

bug midi

"Input and output devices don't share a common sample rate"?

Launching the provided Windows binary, I just get a black screen that says error initializing audio device: The input and output devices don't share a common sample rate!

the next line says initialization errors could potentially be fixed by changing buffer size, sample rate, or input/output devices in userprefs.json, but I couldn't find anything there that helped:

  • I tried changing buffersize from 256 to 128 and 512, no difference
  • I tried changing samplerate from 48000 to 44100, no difference
  • I couldn't find anything in userprefs.json about input or output devices; mine just looks like this:
{
   "buffersize" : 256,
   "height" : 1100,
   "layout" : "\\layouts\\blank.json",
   "samplerate" : 48000,
   "vstsearchdirs" : [
      "C:\\Program Files\\Common Files\\VST2",
      "C:\\Program Files\\Common Files\\VST3",
      "C:\\Program Files\\Steinberg\\VSTPlugins"
   ],
   "width" : 1700
}

Segfault by detaching pinned LFO

Hi,

Add any module with LFO (eg pulser).
Enable in-module LFO (RMB on slider), select pin.
Grab purple LFO's connection, press Backspace.

It affects Windows too, here the backtrace of the crash:

Thread 4 "Pool" received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x7ffff4f89700 (LWP 26642)]
FloatSliderLFOControl::GetLFOValue (this=this@entry=0x7fffbc7f6200, samplesIn=samplesIn@entry=0, forcePhase=<optimized out>) at ../../Source/FloatSliderLFOControl.cpp:256
256        return ofClamp(Interp(val, GetMin(), GetMax()), mTarget->GetMin(), mTarget->GetMax());
Missing separate debuginfos, use: zypper install krb5-debuginfo-1.18.2-3.2.x86_64 libX11-6-debuginfo-1.6.12-1.1.x86_64 libX11-xcb1-debuginfo-1.6.12-1.1.x86_64 libXau6-debuginfo-1.0.9-1.7.x86_64 libXcursor1-debuginfo-1.2.0-1.5.x86_64 libXext6-debuginfo-1.3.4-1.7.x86_64 libXfixes3-debuginfo-5.0.3-1.11.x86_64 libXinerama1-debuginfo-1.1.4-1.8.x86_64 libXrandr-devel-debuginfo-1.5.2-1.7.x86_64 libXrender1-debuginfo-0.9.10-1.12.x86_64 libXss1-debuginfo-1.2.3-1.9.x86_64 libbrotlicommon1-debuginfo-1.0.9-1.1.x86_64 libbrotlidec1-debuginfo-1.0.9-1.1.x86_64 libbz2-1-debuginfo-1.0.8-2.20.x86_64 libcom_err2-debuginfo-1.45.6-1.19.x86_64 libcrypt1-debuginfo-4.4.17-1.1.x86_64 libcurl4-debuginfo-7.72.0-1.2.x86_64 libdrm2-debuginfo-2.4.102-2.1.x86_64 libfreetype6-debuginfo-2.10.2-1.3.x86_64 libgcc_s1-debuginfo-10.2.1+git583-1.2.x86_64 libglvnd-debuginfo-1.3.2-2.1.x86_64 libidn2-0-debuginfo-2.3.0-3.2.x86_64 libkeyutils1-debuginfo-1.6-1.19.x86_64 libldap-2_4-2-debuginfo-2.4.53-57.1.x86_64 libnghttp2-14-debuginfo-1.41.0-1.3.x86_64 libopenssl1_1-debuginfo-1.1.1g-2.13.x86_64 libpcre1-debuginfo-8.44-1.19.x86_64 libpng16-16-debuginfo-1.6.37-1.7.x86_64 libpython3_8-1_0-debuginfo-3.8.5-2.1.x86_64 libsasl2-3-debuginfo-2.1.27-3.5.x86_64 libselinux1-debuginfo-3.0-2.3.x86_64 libssh4-debuginfo-0.9.4-1.4.x86_64 libstdc++6-debuginfo-10.2.1+git583-1.2.x86_64 libunistring2-debuginfo-0.9.10-2.8.x86_64 libxcb-dri3-0-debuginfo-1.14-1.3.x86_64 libxcb-glx0-debuginfo-1.14-1.3.x86_64 libxcb-present0-debuginfo-1.14-1.3.x86_64 libxcb-sync1-debuginfo-1.14-1.3.x86_64 libxcb1-debuginfo-1.14-1.3.x86_64 libz1-debuginfo-1.2.11-15.1.x86_64
(gdb) bt
#0  FloatSliderLFOControl::GetLFOValue (this=this@entry=0x7fffbc7f6200, samplesIn=samplesIn@entry=0, forcePhase=<optimized out>) at ../../Source/FloatSliderLFOControl.cpp:256
#1  0x000000000087e0d3 in FloatSliderLFOControl::DrawModule (this=0x7fffbc7f6200) at ../../Source/FloatSliderLFOControl.cpp:153
#2  0x000000000088410a in IDrawableModule::DrawFrame (this=0x7fffbc7f6200, w=106, h=213, drawModule=<optimized out>, titleBarHeight=@0x7ffff4f88ac8: 12, highlight=@0x7ffff4f88acc: 0) at ../../Source/IDrawableModule.cpp:304
#3  0x00000000008845f0 in IDrawableModule::Render (this=0x7fffbc7f6200) at ../../Source/IDrawableModule.cpp:355
#4  IDrawableModule::Render (this=0x7fffbc7f6200) at ../../Source/IDrawableModule.cpp:334
#5  0x00000000008a8983 in ModuleContainer::Draw (this=this@entry=0x144b848) at /usr/include/c++/10/bits/stl_vector.h:1043
#6  0x000000000089b067 in ModularSynth::Draw (this=this@entry=0x144b2f8, vg=<optimized out>) at ../../Source/ModularSynth.cpp:288
#7  0x000000000088e77b in MainContentComponent::render (this=0x144aca0) at ../../Source/MainComponent.cpp:303
#8  0x0000000000d031ca in juce::OpenGLAppComponent::renderOpenGL (this=<optimized out>) at /usr/share/juce/modules/juce_opengl/utils/juce_OpenGLAppComponent.cpp:62
#9  juce::OpenGLContext::CachedImage::renderFrame (this=this@entry=0x1448170) at /usr/share/juce/modules/juce_opengl/opengl/juce_OpenGLContext.cpp:262
#10 0x0000000000d03608 in juce::OpenGLContext::CachedImage::runJob (this=0x1448170) at /usr/share/juce/modules/juce_opengl/opengl/juce_OpenGLContext.cpp:482
#11 0x0000000000a62518 in juce::ThreadPool::runNextJob (this=0x14430f0, thread=...) at /usr/share/juce/modules/juce_core/threads/juce_ThreadPool.cpp:384
#12 0x0000000000a91eef in juce::ThreadPool::ThreadPoolThread::run (this=0x14a32e0) at /usr/share/juce/modules/juce_core/threads/juce_ThreadPool.cpp:36
#13 0x0000000000a5c45c in juce::Thread::threadEntryPoint (this=0x14a32e0) at /usr/share/juce/modules/juce_core/threads/juce_Thread.cpp:96
#14 0x0000000000a5c689 in juce::juce_threadEntryPoint (userData=<optimized out>) at /usr/share/juce/modules/juce_core/threads/juce_Thread.cpp:118
#15 juce::threadEntryProc (userData=<optimized out>) at /usr/share/juce/modules/juce_core/native/juce_posix_SharedCode.h:834
#16 0x00007ffff7b7aeaa in start_thread (arg=<optimized out>) at pthread_create.c:477
#17 0x00007ffff7362aff in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
(gdb) list
251     float FloatSliderLFOControl::GetLFOValue(int samplesIn /*= 0*/, float forcePhase /*= -1*/)
252     {
253        float val = mLFO.Value(samplesIn, forcePhase);
254        if (mLFOSettings.mSpread > 0)
255           val = val * (1-mLFOSettings.mSpread) + (-cosf(val * FPI) + 1) * .5f * mLFOSettings.mSpread;
256        return ofClamp(Interp(val, GetMin(), GetMax()), mTarget->GetMin(), mTarget->GetMax());
257     }
258
259     void FloatSliderLFOControl::UpdateFromSettings()
260     {
(gdb)

Segmentation fault on Manjaro Linux

Hello.
Probably after upgrading my system, I've got an segmentation fault on the execution of Bespoke.
How can I fix the issue.

`[aki@w530 Bespoke-Linux]$ ./BespokeSynth
0.001: pixel ratio: 1 screen width: 1920 screen height: 1080
Shader shader/vert error:

Shader shader/vert error:

Could not init nanovg.
Could not init font bounds nanovg.
Shader shader/vert error:

Segmentation fault (core dumped)`

Thanks in advance.

Building Bespoke on Mac OS

I'm trying to build Bespoke from the git/master on Mac OS with Producer 5.4.7 but it fails to build with undefines:

  • sPluginList.createXml()->writeTo
  • sPluginList.getTypes();

and no viable overload for:

  • mPlugin = VSTLookup::sFormatManager.createPluginInstance(desc, gSampleRate, gBufferSize, errorMessage);

This all seems to be in VSTPlugin.cpp.

I've tried both git/master and the latest source release.

Any thoughts?

build fail with latest pull

Ubuntu 18.04
GCC 7.5.0

Lots of errors with the Python stuff, e.g. :

../../Source/pybind11/cast.h:1247:53: error: ‘PyString_Size’ was not declared in this scope
         size_t length = (size_t) PYBIND11_BYTES_SIZE(utfNbytes.ptr()) / sizeof(CharT);
...
/usr/include/python2.7/object.h:769:24: error: ‘PyObject {aka struct _object}’ has no member named ‘ob_refcnt’
     ((PyObject*)(op))->ob_refcnt++)
...
../../Source/pybind11/detail/class.h:493:15: error: ‘Py_buffer {aka struct bufferinfo}’ has no member named ‘len’
         view->len *= s;
               ^~~

Are you using Python2 or Python3 ?

[Linux] Segfautlt on reset layout

Greetings,

It affects only linux builds. Pressing "reset layout" cause segmentation fault. GDB trace:

(gdb) run
Starting program: /media/src/src/audio/BespokeSynth/Builds/LinuxMakefile/build/BespokeSynth 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
JUCE v5.4.7
[Detaching after fork from child process 23923]
[Detaching after fork from child process 23924]
[New Thread 0x7ffff64ee700 (LWP 23927)]
0.001: pixel ratio: 1 screen width: 2560 screen height: 1080
[New Thread 0x7ffff578c700 (LWP 23928)]
[Thread 0x7ffff578c700 (LWP 23928) exited]
[New Thread 0x7ffff578c700 (LWP 23929)]
[New Thread 0x7ffff4f8b700 (LWP 23930)]
[New Thread 0x7fffc38d3700 (LWP 23952)]
0.001: output: Gina3G, Gina3G; Front output / input   input: Gina3G, Gina3G; Front output / input
[Thread 0x7ffff64ee700 (LWP 23927) exited]
0.547667: Loading layout: /home/kv/.config/BespokeSynth/data/layouts/blank.json
3.64367: Loading layout: /home/kv/.config/BespokeSynth/data/layouts/blank.json

Thread 1 "BespokeSynth" received signal SIGSEGV, Segmentation fault.
IDrawableModule::OnClicked (this=0x1585170, x=159, y=26, right=<optimized out>) at /usr/include/c++/10/bits/stl_vector.h:1043
1043          operator[](size_type __n) _GLIBCXX_NOEXCEPT
Missing separate debuginfos, use: zypper install krb5-debuginfo-1.18.2-3.2.x86_64 libX11-6-debuginfo-1.6.12-1.1.x86_64 libX11-xcb1-debuginfo-1.6.12-1.1.x86_64 libXau6-debuginfo-1.0.9-1.7.x86_64 libXcursor1-debuginfo-1.2.0-1.5.x86_64 libXext6-debuginfo-1.3.4-1.7.x86_64 libXfixes3-debuginfo-5.0.3-1.11.x86_64 libXinerama1-debuginfo-1.1.4-1.8.x86_64 libXrandr-devel-debuginfo-1.5.2-1.7.x86_64 libXrender1-debuginfo-0.9.10-1.12.x86_64 libXss1-debuginfo-1.2.3-1.9.x86_64 libbrotlicommon1-debuginfo-1.0.9-1.1.x86_64 libbrotlidec1-debuginfo-1.0.9-1.1.x86_64 libbz2-1-debuginfo-1.0.8-2.20.x86_64 libcom_err2-debuginfo-1.45.6-1.19.x86_64 libcrypt1-debuginfo-4.4.17-1.1.x86_64 libcurl4-debuginfo-7.72.0-1.2.x86_64 libdrm2-debuginfo-2.4.102-2.1.x86_64 libfreetype6-debuginfo-2.10.2-1.3.x86_64 libgcc_s1-debuginfo-10.2.1+git583-1.2.x86_64 libglvnd-debuginfo-1.3.2-2.1.x86_64 libidn2-0-debuginfo-2.3.0-3.2.x86_64 libkeyutils1-debuginfo-1.6-1.19.x86_64 libldap-2_4-2-debuginfo-2.4.53-57.2.x86_64 libnghttp2-14-debuginfo-1.41.0-1.3.x86_64 libopenssl1_1-debuginfo-1.1.1g-2.13.x86_64 libpcre1-debuginfo-8.44-1.19.x86_64 libpng16-16-debuginfo-1.6.37-1.7.x86_64 libpython3_8-1_0-debuginfo-3.8.5-2.1.x86_64 libsasl2-3-debuginfo-2.1.27-3.5.x86_64 libselinux1-debuginfo-3.0-2.3.x86_64 libssh4-debuginfo-0.9.5-1.1.x86_64 libstdc++6-debuginfo-10.2.1+git583-1.2.x86_64 libunistring2-debuginfo-0.9.10-2.8.x86_64 libxcb-dri3-0-debuginfo-1.14-1.3.x86_64 libxcb-glx0-debuginfo-1.14-1.3.x86_64 libxcb-present0-debuginfo-1.14-1.3.x86_64 libxcb-sync1-debuginfo-1.14-1.3.x86_64 libxcb1-debuginfo-1.14-1.3.x86_64 libz1-debuginfo-1.2.11-16.1.x86_64
(gdb) bt
#0  IDrawableModule::OnClicked (this=0x1585170, x=159, y=26, right=<optimized out>) at /usr/include/c++/10/bits/stl_vector.h:1043
#1  0x0000000000883c33 in IClickable::TestClick (testOnly=false, right=false, y=26, x=159, this=0x1585170) at ../../Source/IClickable.cpp:50
#2  IClickable::TestClick (this=0x1585170, x=159, y=26, right=<optimized out>, testOnly=<optimized out>) at ../../Source/IClickable.cpp:34
#3  0x000000000089f522 in ModularSynth::CheckClick (this=0x14505e8, clickedModule=0x1585170, x=159, y=26, rightButton=<optimized out>) at ../../Source/ModularSynth.cpp:1031
#4  0x0000000000c20d7e in juce::Component::internalMouseDown (this=<optimized out>, source=..., relativePos=..., time=..., pressure=<optimized out>, orientation=<optimized out>, rotation=<optimized out>, tiltX=<optimized out>, tiltY=<optimized out>)
    at /usr/share/juce/modules/juce_gui_basics/components/juce_Component.cpp:2407
#5  0x0000000000caf9cb in juce::MouseInputSourceInternal::sendMouseDown (time=..., screenPos=..., comp=..., this=0x143b270) at /usr/share/juce/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp:584
#6  juce::MouseInputSourceInternal::setButtons (this=this@entry=0x143b270, screenPos=..., screenPos@entry=..., time=time@entry=..., newButtonState=..., newButtonState@entry=...) at /usr/share/juce/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp:216
#7  0x0000000000c340f1 in juce::MouseInputSourceInternal::handleEvent (pen=..., newOrientation=<optimized out>, newPressure=<optimized out>, newMods=..., time=..., positionWithinPeer=..., newPeer=..., this=<optimized out>)
    at /usr/share/juce/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp:334
#8  juce::MouseInputSource::handleEvent (this=this@entry=0x7fffffffd750, peer=..., pos=..., pos@entry=..., time=time@entry=1601348466602, mods=..., mods@entry=..., pressure=<optimized out>, orientation=<optimized out>, penDetails=...)
    at /usr/share/juce/modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp:634
#9  0x0000000000c342d2 in juce::ComponentPeer::handleMouseEvent (this=0x144a220, type=juce::MouseInputSource::mouse, pos=..., newMods=..., newPressure=<optimized out>, newOrientation=<optimized out>, time=1601348466602, pen=..., touchIndex=0)
    at /usr/include/c++/10/bits/atomic_base.h:325
#10 0x0000000000cb083d in juce::LinuxComponentPeer::handleButtonPressEvent (buttonPressEvent=..., this=0x144a220) at /usr/share/juce/modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp:1877
#11 juce::LinuxComponentPeer::handleWindowMessage (this=0x144a220, event=...) at /usr/share/juce/modules/juce_gui_basics/native/juce_linux_X11_Windowing.cpp:1635
#12 0x0000000000b7d48a in operator() (__closure=<optimized out>) at /usr/share/juce/modules/juce_gui_basics/native/juce_linux_X11.cpp:217
#13 std::__invoke_impl<void, juce::XWindowSystem::initialiseXDisplay()::<lambda(int)>&, int> (__f=...) at /usr/include/c++/10/bits/invoke.h:60
#14 std::__invoke_r<void, juce::XWindowSystem::initialiseXDisplay()::<lambda(int)>&, int> (__fn=...) at /usr/include/c++/10/bits/invoke.h:153
#15 std::_Function_handler<void(int), juce::XWindowSystem::initialiseXDisplay()::<lambda(int)> >::_M_invoke(const std::_Any_data &, int &&) (__functor=..., __args#0=<optimized out>) at /usr/include/c++/10/bits/std_function.h:291
#16 0x0000000000ab6c3a in std::function<void (int)>::operator()(int) const (__args#0=<optimized out>, this=0x143acb0) at /usr/include/c++/10/bits/std_function.h:617
#17 juce::InternalRunLoop::dispatchPendingEvents (this=0x143ac20) at /usr/share/juce/modules/juce_events/native/juce_linux_Messaging.cpp:169
#18 juce::MessageManager::dispatchNextMessageOnSystemQueue (returnIfNoPendingMessages=<optimized out>) at /usr/share/juce/modules/juce_events/native/juce_linux_Messaging.cpp:260
#19 0x0000000000ab6de7 in juce::MessageManager::runDispatchLoop (this=0x143abb0) at /usr/share/juce/modules/juce_events/messages/juce_MessageManager.cpp:128
#20 0x00000000004f2092 in juce::JUCEApplicationBase::main () at /usr/share/juce/modules/juce_events/messages/juce_ApplicationBase.cpp:262
#21 0x00007ffff728acca in __libc_start_main (main=0x4da4c0 <main(int, char**)>, argc=1, argv=0x7fffffffdb58, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdb48) at ../csu/libc-start.c:308
#22 0x00000000004f4a8a in _start () at ../sysdeps/x86_64/start.S:120

OSC Output testing

Hi Ryan,

I am trying to test the OSC into another app, but as soon as I made the node, playing with slide, it crashes the app. This happens not once, but always. I have not managed to make it to work to interface with TouchOSC or Blender AddRoutes OSC.

What's the OSC address it is sending I wonder?

Process:               Bespoke [33317]
Path:                  /Users/USER/Downloads/*/Bespoke.app/Contents/MacOS/Bespoke
Identifier:            com.ryanchallinor.Bespoke
Version:               1.0.0 (1.0.0)
Code Type:             X86-64 (Native)
Parent Process:        ??? [33315]
Responsible:           Terminal [325]
User ID:               501

Date/Time:             2020-08-19 16:00:54.294 +1000
OS Version:            Mac OS X 10.16 (20A5343i)
Report Version:        12
Bridge OS Version:     3.0 (14Y908)
Anonymous UUID:        D5DD7E3C-563B-3734-588B-51023013A26D

Sleep/Wake UUID:       D6189D95-90A3-4D92-8C5B-EC3C2F404735

Time Awake Since Boot: 370000 seconds
Time Since Wake:       3900 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000018
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [33317]

VM Regions Near 0x18:
--> 
    __TEXT                        1076dd000-108194000        [ 10.7M] r-x/r-x SM=COW  /Users/*/Downloads/*/Bespoke.app/Contents/MacOS/Bespoke

Thread 0 Crashed:: JUCE Message Thread  Dispatch queue: com.apple.main-thread
0   com.apple.HIToolbox           	0x00007fff28757f5c IBXRefCountRelease + 16
1   com.apple.CoreFoundation      	0x00007fff29ea3910 _CFRelease + 238
2   com.apple.HIToolbox           	0x00007fff28763313 IBArray::~IBArray() + 29
3   com.apple.HIToolbox           	0x00007fff287632c5 IBArray::~IBArray() + 15
4   com.apple.HIToolbox           	0x00007fff28763232 IBCarbonNib::~IBCarbonNib() + 86
5   com.apple.HIToolbox           	0x00007fff287631b5 IBCarbonNib::~IBCarbonNib() + 15
6   com.apple.HIToolbox           	0x00007fff2876316b DisposeNibReference + 42
7   com.apple.HIToolbox           	0x00007fff287630fd StandardMenuTimer(__EventLoopTimer*, void*) + 26
8   com.apple.CoreFoundation      	0x00007fff29df326b __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
9   com.apple.CoreFoundation      	0x00007fff29df2d41 __CFRunLoopDoTimer + 922
10  com.apple.CoreFoundation      	0x00007fff29df288b __CFRunLoopDoTimers + 307
11  com.apple.CoreFoundation      	0x00007fff29dd8ff5 __CFRunLoopRun + 2008
12  com.apple.CoreFoundation      	0x00007fff29dd8134 CFRunLoopRunSpecific + 563
13  com.apple.HIToolbox           	0x00007fff2872a1d0 RunCurrentEventLoopInMode + 292
14  com.apple.HIToolbox           	0x00007fff28729fcc ReceiveNextEventCommon + 709
15  com.apple.HIToolbox           	0x00007fff28729cef _BlockUntilNextEventMatchingListInModeWithFilter + 64
16  com.apple.AppKit              	0x00007fff26c686db _DPSNextEvent + 877
17  com.apple.AppKit              	0x00007fff26c66f09 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1352
18  com.apple.AppKit              	0x00007fff26c593fa -[NSApplication run] + 586
19  com.ryanchallinor.Bespoke     	0x0000000107b73714 main + 388
20  libdyld.dylib                 	0x00007fff6b149851 start + 1

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff6b3814b4 start_wqthread + 0

Thread 2:: Pool
0   libsystem_kernel.dylib        	0x00007fff6b2b821e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6b2b8590 mach_msg + 60
2   com.apple.AppKit              	0x00007fff271b919c NSWaitUntilHostTime + 102
3   com.apple.AppKit              	0x00007fff276992b1 -[NSCGLSurface synchronize] + 112
4   com.apple.AppKit              	0x00007fff276987f7 NSCGLSurfaceFlush + 89
5   GLEngine                      	0x0000000108dd0c2a glSwap_Exec + 186
6   com.apple.opengl              	0x00007fff336182bb CGLFlushDrawable + 59
7   com.apple.AppKit              	0x00007fff26fe0420 -[NSOpenGLContext flushBuffer] + 20
8   com.ryanchallinor.Bespoke     	0x0000000107e2a19a juce::OpenGLContext::CachedImage::renderFrame() + 1562
9   com.ryanchallinor.Bespoke     	0x0000000107e29285 juce::OpenGLContext::CachedImage::runJob() + 709
10  com.ryanchallinor.Bespoke     	0x0000000107e2957d non-virtual thunk to juce::OpenGLContext::CachedImage::runJob() + 13
11  com.ryanchallinor.Bespoke     	0x0000000107cea04a juce::ThreadPool::ThreadPoolThread::run() + 682
12  com.ryanchallinor.Bespoke     	0x0000000107cc9a8c juce::threadEntryProc(void*) + 412
13  libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
14  libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 3:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff6b2b821e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6b2b8590 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff29dda650 __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff29dd8d40 __CFRunLoopRun + 1315
4   com.apple.CoreFoundation      	0x00007fff29dd8134 CFRunLoopRunSpecific + 563
5   com.apple.AppKit              	0x00007fff26def05a _NSEventThread + 124
6   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 4:: JUCE Timer
0   libsystem_kernel.dylib        	0x00007fff6b2bac8a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff6b385ed3 _pthread_cond_wait + 1254
2   com.ryanchallinor.Bespoke     	0x0000000107cbfade juce::WaitableEvent::wait(int) const + 206
3   com.ryanchallinor.Bespoke     	0x0000000107cf742b juce::Timer::TimerThread::run() + 171
4   com.ryanchallinor.Bespoke     	0x0000000107cc9a8c juce::threadEntryProc(void*) + 412
5   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff6b3814b4 start_wqthread + 0

Thread 6:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib        	0x00007fff6b2b821e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6b2b8590 mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff29dda650 __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff29dd8d40 __CFRunLoopRun + 1315
4   com.apple.CoreFoundation      	0x00007fff29dd8134 CFRunLoopRunSpecific + 563
5   com.apple.CFNetwork           	0x00007fff2843a396 0x7fff281fc000 + 2352022
6   com.apple.Foundation          	0x00007fff2c7a4e7d __NSThread__start__ + 1042
7   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
8   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 7:: AMCP Logging Spool
0   libsystem_kernel.dylib        	0x00007fff6b2b825a semaphore_wait_trap + 10
1   com.apple.audio.caulk         	0x00007fff63cf38da caulk::mach::semaphore::wait_or_error() + 16
2   com.apple.audio.caulk         	0x00007fff63ce0436 caulk::semaphore::timed_wait(double) + 110
3   com.apple.audio.caulk         	0x00007fff63ce0388 caulk::concurrent::details::worker_thread::run() + 30
4   com.apple.audio.caulk         	0x00007fff63ce0124 void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*> > >(void*) + 45
5   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 8:: Built-in Output
0   libsystem_kernel.dylib        	0x00007fff6b2bac8a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff6b385ed3 _pthread_cond_wait + 1254
2   com.ryanchallinor.Bespoke     	0x0000000107cbfade juce::WaitableEvent::wait(int) const + 206
3   com.ryanchallinor.Bespoke     	0x0000000107bfc4d3 juce::CoreAudioClasses::AudioIODeviceCombiner::run() + 3027
4   com.ryanchallinor.Bespoke     	0x0000000107cc9a8c juce::threadEntryProc(void*) + 412
5   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 9:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fff6b2b821e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6b2b8590 mach_msg + 60
2   com.apple.audio.CoreAudio     	0x00007fff2936a375 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 111
3   com.apple.audio.CoreAudio     	0x00007fff2920a101 invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 3137
4   com.apple.audio.CoreAudio     	0x00007fff293a8614 HALB_IOThread::Entry(void*) + 72
5   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 10:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fff6b2b821e mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff6b2b8590 mach_msg + 60
2   com.apple.audio.CoreAudio     	0x00007fff2936a375 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 111
3   com.apple.audio.CoreAudio     	0x00007fff2920a101 invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 3137
4   com.apple.audio.CoreAudio     	0x00007fff293a8614 HALB_IOThread::Entry(void*) + 72
5   libsystem_pthread.dylib       	0x00007fff6b3859b4 _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff6b3814d7 thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00007fff86c152b0  rcx: 0x0000000000000000  rdx: 0x000000000000003a
  rdi: 0x00007fa7edeafbf0  rsi: 0x00007fa7edeafbf0  rbp: 0x00007ffee8520150  rsp: 0x00007ffee85200f8
   r8: 0x00000000000130a8   r9: 0x00007fa7edc06300  r10: 0x0000000000000000  r11: 0x00000000ffffff00
  r12: 0x00007fa7edeafa20  r13: 0x000000000000003a  r14: 0x0000000000000018  r15: 0x00007fa7ef1c8b00
  rip: 0x00007fff28757f5c  rfl: 0x0000000000010206  cr2: 0x0000000000000018
  
Logical CPU:     0
Error Code:      0x00000004 (no mapping for user data read)
Trap Number:     14


Binary Images:
       0x1076dd000 -        0x108193fff +com.ryanchallinor.Bespoke (1.0.0 - 1.0.0) <553A0AA9-1001-384D-80D3-E04C69B543A9> /Users/USER/Downloads/*/Bespoke.app/Contents/MacOS/Bespoke
       0x1086aa000 -        0x1087a1fff  org.python.python (2.7.16 - 2.7.16) <B847AEED-6657-3379-8A49-21B46D7FE80B> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
       0x108821000 -        0x10883cfff +liblzma.5.dylib (0) <98E3CB2B-4973-34BC-A9DC-1E48759CB05A> /usr/local/Cellar/xz/5.2.4/lib/liblzma.5.dylib
       0x108d39000 -        0x108d48fff  libobjc-trampolines.dylib (817) <20369EC2-CFDF-3C0E-800A-7E8F3FE1E336> /usr/lib/libobjc-trampolines.dylib
       0x108d7c000 -        0x108d9bfff  libCGInterfaces.dylib (539) <03A78A59-542B-3CB8-A352-2BE0F6127638> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x108db5000 -        0x108f30fff  GLEngine (18.0.29) <267A140A-AC82-381D-B2ED-54584075E619> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
       0x108f78000 -        0x108fa3fff  GLRendererFloat (18.0.29) <F6F94FE3-9344-31C2-8C91-F3B327D8E9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x10e6bc000 -        0x10e7c3fff  com.apple.AMDRadeonX4000GLDriver (4.0.31 - 4.0.0) <4AEEC53F-529C-31A9-A50D-3A114EC1E89D> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
       0x10e829000 -        0x10e8c0fff  dyld (828) <0F674766-D96E-3668-8705-324A53FA816A> /usr/lib/dyld
       0x11188d000 -        0x111b00fff  com.apple.RawCamera.bundle (9.10.0 - 1400.43) <0DAD2731-802E-3AD5-8303-0A1F4AE7A5F3> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
       0x111b89000 -        0x112b5cfff  com.apple.driver.AppleIntelKBLGraphicsGLDriver (16.0.37 - 16.0.0) <5616FC97-42D6-3CC1-B815-905989DF4735> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
       0x116c9e000 -        0x116dedfff  com.apple.audio.units.Components (1.14 - 1.14) <7672F2D6-707F-3BB3-A3BC-661F24B99375> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
       0x116e42000 -        0x116e49fff  com.apple.audio.AppleHDAHALPlugIn (283.15 - 283.15) <4FB2DBBA-7EC7-3CB6-A1B1-40D62886C3E3> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0x7fff2366f000 -     0x7fff236befff  ATIRadeonX4000SCLib.dylib (4.0.31) <41F81F5A-1091-332C-8EE4-B1EA8DAF3970> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib
    0x7fff2468b000 -     0x7fff2508efff  libSC.dylib (4.0.31) <378398C7-6F5A-362B-AED2-F66DEE9D7B4C> /System/Library/Extensions/AMDShared.bundle/Contents/PlugIns/libSC.dylib
    0x7fff2519f000 -     0x7fff2519ffff  com.apple.avfoundation (2.0 - 1987.2) <B0F16319-7658-3583-A09E-9C8CFEDB298E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff251a0000 -     0x7fff25290fff  com.apple.audio.AVFAudio (1.0 - 470) <2252E774-F648-3430-BB3C-7E27C4BDA53F> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff25291000 -     0x7fff253c4fff  com.apple.AVKit (1.1 - 708) <5B20D326-A267-3CD0-B4FC-444B24CF6BF2> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
    0x7fff253c5000 -     0x7fff253c5fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <B142CF00-4805-3FA0-955D-990E96924859> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff253c6000 -     0x7fff25a65fff  com.apple.vImage (8.1 - 539) <62141BC1-47CD-3E73-8AAA-D2807C7087EB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff25a66000 -     0x7fff25cc9fff  libBLAS.dylib (1336) <D4A78CD6-EF66-31F4-9D2A-177162F34226> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff25cca000 -     0x7fff26380fff  libBNNS.dylib (288) <6B211BBD-6AA3-38C3-870E-A66B01320D39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff26381000 -     0x7fff2671dfff  libLAPACK.dylib (1336) <4E6671A8-DEC9-358C-97E8-35B57B78D802> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2671e000 -     0x7fff26733fff  libLinearAlgebra.dylib (1336) <0B4B98B6-4602-3299-B43A-BF5991B7DA63> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff26734000 -     0x7fff26739fff  libQuadrature.dylib (7) <7750B06A-19EB-3306-A767-3DAD7BF12DA4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2673a000 -     0x7fff267a8fff  libSparse.dylib (106) <F8DF88E7-454C-30CF-A348-23DEC4FC908D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff267a9000 -     0x7fff267bbfff  libSparseBLAS.dylib (1336) <BB26359C-BBDC-36B8-8128-FEFF4647D2F4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff267bc000 -     0x7fff2698ffff  libvDSP.dylib (760) <3D55AA9A-39F1-3D69-94E9-C57D53294E72> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff26990000 -     0x7fff26a4efff  libvMisc.dylib (760) <717A692E-4145-32FD-B808-FE5835B5CBAA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff26a4f000 -     0x7fff26a4ffff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <D6DD45D8-0D16-392F-8222-09B7ABB9E034> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff26a54000 -     0x7fff26ad0fff  com.apple.Accounts (113 - 113) <4EE85418-13C3-3AA2-BE2E-CDAE8541B75D> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff26c2a000 -     0x7fff27aabfff  com.apple.AppKit (6.9 - 2004.102) <F3CCC59D-6582-343D-9485-EF4353436026> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff27b06000 -     0x7fff27b06fff  com.apple.ApplicationServices (48 - 50) <82678098-E1EB-30B4-83DD-419DC45BA085> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff27b07000 -     0x7fff27b72fff  com.apple.ApplicationServices.ATS (377 - 510) <E123D5B7-2D83-3DC6-A443-D772F16E4D04> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff27b73000 -     0x7fff27bb4fff  libFontRegistry.dylib (302) <2B78CC06-CAA5-3222-9A0F-5C190CE3B631> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff27bb5000 -     0x7fff27be4fff  com.apple.ATSUI (1.0 - 1) <52FC2183-3352-30F0-87C6-D5D391CA2740> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff27be5000 -     0x7fff27becfff  com.apple.ColorSyncLegacy (4.13.0 - 1) <DA4ECE08-B6D9-3876-AC11-6425595BD168> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff27bed000 -     0x7fff27c48fff  com.apple.HIServices (1.22 - 702) <F813C824-1C13-331B-9C92-22FBA39A3AE0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff27c49000 -     0x7fff27c58fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2BD94785-5A8E-3E1E-AB93-268BBB18D137> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff27c59000 -     0x7fff27ca0fff  com.apple.print.framework.PrintCore (16 - 528) <4D231C01-9BF2-3779-8CAC-B802119AB968> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff27ca1000 -     0x7fff27cacfff  com.apple.QD (4.0 - 415) <40DAE821-3B29-3D8D-B429-3C665AA5CC95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff27cad000 -     0x7fff27cbcfff  com.apple.speech.synthesis.framework (9.0.38 - 9.0.38) <DF5B778F-C053-35EC-98A6-AA76701A4858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff27cbd000 -     0x7fff27dcefff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <9CD4CB12-7DCD-3278-8AE9-65CE552F6F28> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff27dcf000 -     0x7fff27dcffff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <124AA74C-E573-3E46-B4D0-9F447D80FBC2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff27dd0000 -     0x7fff27f5bfff  com.apple.AudioVideoBridging (900.11 - 900.11) <4528A3D7-D537-3F6F-AAA2-DE0CD2627296> /System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/AudioVideoBridging
    0x7fff281fc000 -     0x7fff2866cfff  com.apple.CFNetwork (1188.1 - 1188.1) <920F606B-4441-3AC1-B077-F36D06AF7B1C> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff286f0000 -     0x7fff286f3fff  com.apple.Carbon (160 - 164) <430D4C8F-116A-35B0-919B-94814D94A514> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff286f4000 -     0x7fff286f7fff  com.apple.CommonPanels (1.2.6 - 101) <F87D09F2-3200-32CC-9531-02EDD20BB990> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff286f8000 -     0x7fff289f7fff  com.apple.HIToolbox (2.1.1 - 1046.1) <F05608C5-68EF-3EB3-A1F5-534848154C3B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff289f8000 -     0x7fff289fbfff  com.apple.help (1.3.8 - 71) <67C25F8B-BFA6-3EE2-98D7-564532183714> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff289fc000 -     0x7fff28a03fff  com.apple.ImageCapture (1694 - 1694) <72B1424C-5692-3413-9F96-BE6869C8B122> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff28a04000 -     0x7fff28a07fff  com.apple.ink.framework (10.15 - 227) <64F2A88D-F2B4-3F11-9946-F4639BBFD939> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff28a08000 -     0x7fff28a23fff  com.apple.openscripting (1.7 - 186) <49F907D6-1DAF-334A-A351-F530A97D7E99> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff28a24000 -     0x7fff28a27fff  com.apple.print.framework.Print (15 - 271) <9DA36D0C-5B3A-3C88-B548-C39C17133FAA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff28a28000 -     0x7fff28a2bfff  com.apple.securityhi (9.0 - 55008) <9278D565-1518-38A8-834D-C9315CC659BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff28a2c000 -     0x7fff28a33fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <208FA2E1-5B3D-373E-ACF4-613F92A20AAF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff28aad000 -     0x7fff28c70fff  com.apple.cloudkit.CloudKit (946 - 946) <B2CB9F09-34FF-3047-8377-D95842FC965B> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff28c71000 -     0x7fff28c74fff  com.apple.Cocoa (6.11 - 23) <BA47DA37-7FE7-3F49-83DA-AEC1FDD2B4D6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff28c85000 -     0x7fff28d85fff  com.apple.ColorSync (4.13.0 - 3459) <44299C6D-35CB-3792-A24A-3731FCD9B7B5> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff2909a000 -     0x7fff2972ffff  com.apple.audio.CoreAudio (5.0 - 5.0) <D5C0C6D5-299A-3CD7-9DDE-6D91761664FB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff29730000 -     0x7fff29787fff  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <17AE5736-BFB7-3AB2-B40C-8707DD341605> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x7fff29788000 -     0x7fff29817fff  com.apple.CoreBluetooth (1.0 - 1) <9B151F4F-B57B-3FD7-B4FD-2FCFD75A9577> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff29818000 -     0x7fff29c28fff  com.apple.CoreData (120 - 1030) <AFFD591B-6C34-337E-BA43-753522F24152> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff29c29000 -     0x7fff29d58fff  com.apple.CoreDisplay (217 - 217) <3184BC75-4334-3AED-8945-9C957C70893D> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff29d59000 -     0x7fff2a253fff  com.apple.CoreFoundation (6.9 - 1749.101) <EA59BC1E-B36A-3F10-8D2A-9CBE0CD60169> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff2a254000 -     0x7fff2a8e2fff  com.apple.CoreGraphics (2.0 - 1436) <6F80C47B-6F97-30B1-BC9C-3872033258F8> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2a928000 -     0x7fff2ac96fff  com.apple.CoreImage (15.0.0 - 1100.45) <8D98CD7A-44C7-3DD4-A5ED-6C6D48BD00D4> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff2ac97000 -     0x7fff2ad0ffff  com.apple.corelocation (2420.0.44 - 2420.0.44) <6D5E97E2-F20E-3D20-9917-AF9FF16B79B2> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff2ad10000 -     0x7fff2ad7afff  com.apple.audio.midi.CoreMIDI (2.0 - 88) <255E2EFB-A5EF-3DF7-9D75-012DC420DFC9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x7fff2b250000 -     0x7fff2b3d1fff  com.apple.CoreMedia (1.0 - 2747.2.4.1) <AD1273B5-566D-31D1-AFB0-2F4BF1FAD552> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff2b3d2000 -     0x7fff2b436fff  com.apple.CoreMediaIO (1000.0 - 5315) <4079860A-4128-312A-BBE7-70AF564AE43E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff2b4d3000 -     0x7fff2b4d3fff  com.apple.CoreServices (1112.0.10 - 1112.0.10) <A5EFE49A-40F6-36AC-9DD7-AEA84F7B0586> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff2b4d4000 -     0x7fff2b548fff  com.apple.AE (915 - 915) <F5FDA27A-B921-3733-9A59-89D0CA51D0CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff2b549000 -     0x7fff2b830fff  com.apple.CoreServices.CarbonCore (1304 - 1304) <F727BB23-19E8-3C89-9668-C41582794AC2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff2b831000 -     0x7fff2b87ffff  com.apple.DictionaryServices (1.2 - 339) <285A6B36-68E4-37DA-99D6-64C815DAC298> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2b880000 -     0x7fff2b888fff  com.apple.CoreServices.FSEvents (1290 - 1290) <21AE8161-C5D3-374C-9629-60F1E111512F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2b889000 -     0x7fff2bac5fff  com.apple.LaunchServices (1112.0.10 - 1112.0.10) <9A49868C-5B32-38AB-983B-435BB3717A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff2bac6000 -     0x7fff2bb61fff  com.apple.Metadata (10.7.0 - 2136.1) <08CD3A93-F999-3223-8554-8DCCD089688B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff2bb62000 -     0x7fff2bb8ffff  com.apple.CoreServices.OSServices (1112.0.10 - 1112.0.10) <92066DAE-8CC9-3CDD-876F-2EDAEFC06D65> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2bb90000 -     0x7fff2bbf7fff  com.apple.SearchKit (1.4.1 - 1.4.1) <8D7F5904-9970-3394-AA44-B9C34A1421EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2bbf8000 -     0x7fff2bc1dfff  com.apple.coreservices.SharedFileList (139 - 139) <F516257F-4F1C-36FC-A8A4-FDD3191228A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff2bd5b000 -     0x7fff2be37fff  com.apple.CoreTelephony (113 - 8087.3) <5832103F-3C00-38D5-BFB5-E214D032C087> /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony
    0x7fff2be38000 -     0x7fff2c01cfff  com.apple.CoreText (672 - 672) <0BC99FAB-9DD6-3DB6-8FE3-5AC77B710013> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff2c01d000 -     0x7fff2c063fff  com.apple.CoreVideo (1.8 - 387.0) <E1D2FB9E-5E3E-38F4-A9EA-6897657D2E6E> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff2c064000 -     0x7fff2c132fff  com.apple.framework.CoreWLAN (16.0 - 1657) <12DEB978-E079-3CDA-AD59-012242291D14> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff2c30b000 -     0x7fff2c316fff  com.apple.DirectoryService.Framework (11.0 - 230) <75E00DA0-372F-3505-83B5-13F419C50609> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff2c317000 -     0x7fff2c3c2fff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <8BE251B9-6D28-3B56-845A-44AB81AB9007> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff2c3e7000 -     0x7fff2c3edfff  com.apple.DiskArbitration (2.7 - 2.7) <72D15308-5FD9-31C7-8A41-CB84D68B121E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff2c5f7000 -     0x7fff2c730fff  com.apple.FileProvider (315 - 315) <0CD3888A-2906-3981-8DAD-71193385FB80> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff2c74d000 -     0x7fff2caeffff  com.apple.Foundation (6.9 - 1749.101) <A4BC8737-5FBE-3AD8-A576-755B5F5DC2E3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff2cb5c000 -     0x7fff2cbabfff  com.apple.GSS (4.0 - 2.0) <F3AFA039-C541-3536-B75F-414EC31A2A4C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2cd7c000 -     0x7fff2ce9afff  com.apple.Bluetooth (8.0.0 - 8.0.0d44) <3E2CB99B-AE33-3D11-851F-FF4AAC45C221> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2cf03000 -     0x7fff2cfadfff  com.apple.framework.IOKit (2.0.2 - 1845) <D630DDBF-B94B-3857-A965-EAEF45182EA5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff2cfae000 -     0x7fff2cfbffff  com.apple.IOSurface (289.1 - 289.1) <2C6714BF-A5A8-3806-95A9-974F5D13AF35> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff2d04f000 -     0x7fff2d27dfff  com.apple.ImageIO (3.3.0 - 2105) <AF5F1E2F-5A81-3B6F-8E36-200724E35A5E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff2d27e000 -     0x7fff2d282fff  libGIF.dylib (2105) <9D734A0E-F499-3ABB-B591-10F7AFD46970> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2d283000 -     0x7fff2d361fff  libJP2.dylib (2105) <42E1FA94-3490-3DB2-8475-102157D23114> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2d362000 -     0x7fff2d386fff  libJPEG.dylib (2105) <22732D49-2C7E-312E-8CA7-31B4449D7E28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2d387000 -     0x7fff2d3adfff  libPng.dylib (2105) <7E598C1E-7F2B-330A-B4F9-797E98120D71> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2d3ae000 -     0x7fff2d3b0fff  libRadiance.dylib (2105) <82C08204-2748-35ED-9F3F-5368786270C4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2d3b1000 -     0x7fff2d40efff  libTIFF.dylib (2105) <67260C09-4F34-3172-8C07-57252615E55D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2d42b000 -     0x7fff2d9dcfff  com.apple.Intents (1.0 - 1) <E09BE26A-AF34-367E-BEE4-E7F452963BFB> /System/Library/Frameworks/Intents.framework/Versions/A/Intents
    0x7fff2d9f1000 -     0x7fff2eb44fff  com.apple.JavaScriptCore (16610 - 16610.1.23.1.3) <CC6A1EDB-8584-30E7-B95C-BCB385F7BFFA> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff2eb4d000 -     0x7fff2eb5cfff  com.apple.Kerberos (3.0 - 1) <CAA81A1C-E866-3521-B10B-67752EFCE389> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2eb5d000 -     0x7fff2eb5dfff  libHeimdalProxy.dylib (79) <CCEA436F-DFA3-3901-AB51-DA444AE78A67> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff2eb62000 -     0x7fff2eb99fff  com.apple.LDAPFramework (2.4.28 - 194.5) <417CDFC3-52E7-3601-BB56-C54258133EC3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff2ed0e000 -     0x7fff2ee63fff  com.apple.MLCompute (1.0 - 1) <62F01A8C-26A8-3B39-B6B7-D6DB302977A8> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2f0d0000 -     0x7fff2f0dbfff  com.apple.MediaAccessibility (1.0 - 130) <A91EBCF3-7399-3040-A31D-A67DECC7CA38> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff2f268000 -     0x7fff2fd4afff  com.apple.MediaToolbox (1.0 - 2747.2.4.1) <6A07179A-BF11-3025-8AA8-8E86C6F5410E> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff2fd4f000 -     0x7fff2fe6ffff  com.apple.Metal (244.22 - 244.22) <A40E6A48-DA22-34A6-997E-766AF289A004> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff2fe90000 -     0x7fff2fef7fff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <EC0C437A-560F-3464-A6C4-68D207EFB1BC> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff2fef8000 -     0x7fff2ff8bfff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <D688B24E-2049-3734-8EFF-86427999D80A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2ff8c000 -     0x7fff2ffbffff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <81F3FFC8-B4B7-3AFE-A8E1-BF142C397938> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2ffc0000 -     0x7fff2fffefff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <EC54E6D1-57BB-3A7A-BEAB-8FE86DF5ABA1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2ffff000 -     0x7fff30229fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <F8D248FA-D53A-35DC-ACCD-C0F813CCB1C7> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff3022a000 -     0x7fff3027dfff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <4472DFE4-BBF9-3FC5-998A-3B27C6DDE019> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff3027e000 -     0x7fff3027ffff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <835D56E3-4B34-3484-9D94-36485CE5666E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff3110a000 -     0x7fff31288fff  com.apple.Network (1.0 - 1) <E653B877-ED7C-39FC-A884-F45F472767C7> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff320d9000 -     0x7fff32131fff  com.apple.opencl (4.4 - 4.4) <64B14BBF-7408-3AD6-BEFD-B2472EACD431> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff32132000 -     0x7fff32151fff  com.apple.CFOpenDirectory (11.0 - 230) <7C63003C-5FFF-3F7A-BC21-86F6D64B1730> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff32152000 -     0x7fff32161fff  com.apple.OpenDirectory (11.0 - 230) <1B347165-EB4D-37CD-A6B1-45439B6BC2F4> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff32aa2000 -     0x7fff32aa4fff  libCVMSPluginSupport.dylib (18.0.29) <D88B3FF7-C726-30F2-B361-E29AD79E8734> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff32aa5000 -     0x7fff32aabfff  libCoreFSCache.dylib (177.19) <EBB1C2BA-5594-3D0B-B2B6-0F7CB74EB942> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff32aac000 -     0x7fff32ab0fff  libCoreVMClient.dylib (177.19) <E204ECEE-A7AF-3D43-9D52-A25EB1EC0BE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff32ab1000 -     0x7fff32ab9fff  libGFXShared.dylib (18.0.29) <8029F7EF-9937-3E5A-A020-2425B4D67C33> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff32aba000 -     0x7fff32ac4fff  libGL.dylib (18.0.29) <F5689E9A-ADBB-390C-923F-30DB3E20F8A9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff32ac5000 -     0x7fff32af8fff  libGLImage.dylib (18.0.29) <AA437A02-F9F8-3188-9D92-010976D54F99> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff32af9000 -     0x7fff32c8dfff  libGLProgrammability.dylib (18.0.29) <18FA3959-5116-3E35-8119-7E2773A0C443> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff32c8e000 -     0x7fff32ccafff  libGLU.dylib (18.0.29) <49EA1683-0F7C-37CC-AB3E-0A7116115C7F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff3360b000 -     0x7fff3361afff  com.apple.opengl (18.0.29 - 18.0.29) <DD296742-8B5D-31A4-9B28-28AB05EA4A15> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff33b7b000 -     0x7fff33b81fff  com.apple.PushKit (1.0 - 1) <E5A188DE-9947-3F45-AE87-D959B3A40405> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff34442000 -     0x7fff34700fff  com.apple.QuartzCore (1.11 - 908) <992583CF-5740-3A3D-A34E-3AD2285DC8CA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff35209000 -     0x7fff35220fff  com.apple.ScriptingBridge (1.4 - 80) <1539BA3E-4E22-31BE-AE58-35A13ED828F5> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fff35221000 -     0x7fff3556bfff  com.apple.security (7.0 - 59747) <E03D361E-EBCE-3682-B76B-1827964EE62F> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3556c000 -     0x7fff355f7fff  com.apple.securityfoundation (6.0 - 55240) <0A5A71FA-6B33-3545-92B7-6A9C8B6591C3> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff355f8000 -     0x7fff3562bfff  com.apple.securityinterface (10.0 - 55149) <EFBAF413-484F-34AD-98CD-7DDBDAD5D11F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff35656000 -     0x7fff3565afff  com.apple.xpc.ServiceManagement (1.0 - 1) <4DD15261-8910-32B5-B69C-C9E05A011019> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff36683000 -     0x7fff366fefff  com.apple.SystemConfiguration (1.20 - 1.20) <BDF04B61-D692-3C65-8BA9-97CF01257FE8> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff368d3000 -     0x7fff368e5fff  com.apple.UniformTypeIdentifiers (629.1 - 629.1) <3A559061-DF9E-3FBB-B929-F52A0C689772> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff369b1000 -     0x7fff36b02fff  com.apple.VideoToolbox (1.0 - 2747.2.4.1) <2FEF7400-0F47-3D78-93A1-67773E32D2D8> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff37b92000 -     0x7fff384e5fff  libwebrtc.dylib (7610.1.23.1.3) <29571F6C-9939-3CB3-B4D8-BBE338F69C47> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
    0x7fff384e6000 -     0x7fff3aa5dfff  com.apple.WebCore (16610 - 16610.1.23.1.3) <2039818B-B193-3252-A586-2D50129A0F3F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff3aa5e000 -     0x7fff3ac35fff  com.apple.WebKitLegacy (16610 - 16610.1.23.1.3) <1D4524DC-434B-3311-850E-9AC8FE903975> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff3ac36000 -     0x7fff3b3f5fff  com.apple.WebKit (16610 - 16610.1.23.1.3) <C31781D3-20D3-372A-9ED1-93B1743413F1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff3b986000 -     0x7fff3b99dfff  com.apple.ANEServices (4.29 - 4.29) <AC8E2551-D0B0-3BC6-9E4D-214BAA90392E> /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices
    0x7fff3bc46000 -     0x7fff3bd38fff  com.apple.APFS (1677.0.0 - 1677.0.0) <8CD08248-7014-3394-8952-69F40AC640EC> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff3c492000 -     0x7fff3c608fff  com.apple.AVFCapture (1.0 - 66.5.2) <77C7C55F-CAF5-3EE7-94A7-B3D981F8B1FD> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture
    0x7fff3c609000 -     0x7fff3c817fff  com.apple.AVFCore (1.0 - 1987.2) <422D925A-01C6-3CE1-A54A-7E0A95F6D00C> /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore
    0x7fff3c894000 -     0x7fff3c8a3fff  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <9EE9083C-0D3A-33DE-8818-88B822EE4313> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
    0x7fff3d458000 -     0x7fff3d459fff  com.apple.AggregateDictionary (1.0 - 1) <418FFE47-588D-3FBB-9B7E-DD9755F4E77B> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff3d6a4000 -     0x7fff3d783fff  com.apple.AirPlaySync (1.0 - 2747.2.4.1) <8E51EBC0-124E-31DF-888F-8528FB1B6A71> /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync
    0x7fff3d784000 -     0x7fff3d79ffff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <8C7FB4F1-BE4E-3B78-BA9B-3D64F6E62B87> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
    0x7fff3d935000 -     0x7fff3d949fff  com.apple.AppContainer (4.0 - 509) <49BAFBD1-6B63-3D9E-B5D1-75F5060A9C03> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff3d970000 -     0x7fff3d988fff  com.apple.AppSSOCore (1.0 - 1) <5D6FB1E7-F830-3C5E-AB5F-7AA92FBA2806> /System/Library/PrivateFrameworks/AppSSOCore.framework/Versions/A/AppSSOCore
    0x7fff3d9bc000 -     0x7fff3d9c2fff  com.apple.xpc.AppServerSupport (1.0 - 2038) <304007D9-5109-37DC-896E-6F5C2828A655> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff3de9c000 -     0x7fff3df02fff  com.apple.AppSupport (1.0.0 - 29) <E3CC57E3-E281-3D9E-8A50-8460EC6F1493> /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport
    0x7fff3df33000 -     0x7fff3df92fff  com.apple.framework.Apple80211 (17.0 - 1708) <3FF42BB9-2AE7-30B4-BF75-4F840ED2C4C4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff3e27b000 -     0x7fff3e28afff  com.apple.AppleFSCompression (125 - 1.0) <71B93E58-3D8D-38AF-9F73-56ED254F04B9> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff3e3ab000 -     0x7fff3e3b7fff  com.apple.AppleIDAuthSupport (1.0 - 1) <0D9BDF60-617E-3113-8E67-1FCA11556506> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff3e3fd000 -     0x7fff3e446fff  com.apple.AppleJPEG (1.0 - 1) <A6B7C6EF-9BAB-3970-B702-F36FAD856A2C> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff3e8a4000 -     0x7fff3e8bbfff  com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <D88872DB-BCAB-3EDF-B0B9-3CD002C035C7> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine
    0x7fff3e8bc000 -     0x7fff3e8e4fff  com.apple.aps.framework (4.0 - 4.0) <A5529760-45D6-3CFB-B540-7FCB7CBC7B72> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff3e8e5000 -     0x7fff3e8e9fff  com.apple.AppleSRP (5.0 - 1) <26AA51A1-4FD0-3B66-ADFF-FCBB90FED0F5> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff3e8ea000 -     0x7fff3e90dfff  com.apple.applesauce (1.0 - 16.26) <45E82826-B845-37F9-AA4B-ED507BC58C28> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff3e9fe000 -     0x7fff3ea01fff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <6F07D6CF-F156-3DAC-B8CD-5CFC89EC0922> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff3ea02000 -     0x7fff3ea55fff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <29727E31-761C-32AB-B25D-FA3381F996BD> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff3ea56000 -     0x7fff3ea95fff  com.apple.AppleVPAFramework (3.20.3 - 3.20.3) <D64B7F03-CECC-3E7E-B638-4A03B8A065B7> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff3eaa2000 -     0x7fff3eab2fff  com.apple.AssertionServices (1.0 - 505) <672A2E57-4552-3BE7-B33C-2F348278C2D5> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff3f07f000 -     0x7fff3f6f2fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <76617793-1624-3909-8E00-B210D7758B1F> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff3f790000 -     0x7fff3f7f9fff  com.apple.audio.AudioSession (1.0 - 69) <C6F45E87-7F24-30DD-9D0D-1A0986985613> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff3f7fa000 -     0x7fff3f82bfff  libSessionUtility.dylib (69) <99A9558F-E6CA-3FD7-B9A3-26F0A09A8553> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff3f8e0000 -     0x7fff3fb4dfff  com.apple.audio.AudioToolboxCore (1.0 - 1174) <9258F5AE-9172-3DBC-A3C5-89A5406142C2> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff3fb52000 -     0x7fff3fc82fff  com.apple.AuthKit (1.0 - 1) <AB52FC97-192A-359C-A69D-54D744FAD7B6> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff3fe55000 -     0x7fff3fe6ffff  com.apple.BackBoardServices (1.0 - 1.0) <FE625FF4-E793-3802-AD21-4D0AC92BD55A> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices
    0x7fff3fe70000 -     0x7fff3fe79fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <670F5184-64C7-31D2-ADA8-2F9407A3E11C> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff3ff22000 -     0x7fff3ffacfff  com.apple.BaseBoard (517 - 517) <49D980A9-3AF0-33D5-9F6D-DC8AA1E1A841> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4034e000 -     0x7fff40379fff  com.apple.BoardServices (1.0 - 517) <9D0BE3C2-2FB6-31CB-B9FC-F1B5D3F91586> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices
    0x7fff4037a000 -     0x7fff403e4fff  com.apple.bom (14.0 - 231) <DAC1DCB7-C2D7-312C-B88C-8BFF877D1229> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff40579000 -     0x7fff405b6fff  com.apple.C2 (1.3 - 569) <D436DCC7-8CAA-3F58-9A64-7D306E49F736> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff406ad000 -     0x7fff40a5bfff  com.apple.CMCapture (1.0 - 66.5.2) <F627FC85-59DB-3377-8F32-17874E83D695> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture
    0x7fff40a5c000 -     0x7fff40a64fff  com.apple.CMCaptureCore (1.0 - 66.5.2) <7EDB6C82-9275-3A52-A256-C19210A69BBA> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff4158a000 -     0x7fff415dafff  com.apple.ChunkingLibrary (334 - 334) <6FE8BA81-499D-3EAA-8449-F52A48074769> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff423ea000 -     0x7fff423fafff  com.apple.CommonAuth (4.0 - 2.0) <BCA6B440-73C1-334E-B7AD-899ADF85B342> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff423fb000 -     0x7fff42413fff  com.apple.commonutilities (8.0 - 900) <DFB6AF83-4D25-35C8-9F49-5F8557F9F104> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff42bf9000 -     0x7fff42fb3fff  com.apple.CoreAUC (303.0.0 - 303.0.0) <FB6A880B-FCC7-36BD-8744-6A748EC32CAF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff42fb4000 -     0x7fff42fe1fff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <F919C371-2E83-30D3-8B85-E4280151A357> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff4300c000 -     0x7fff4302ffff  com.apple.analyticsd (1.0 - 1) <AC3F7315-75DE-3E7B-BE51-68E26ABC2D5B> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff4318f000 -     0x7fff431d6fff  com.apple.CoreAutoLayout (1.0 - 10) <53A8FE7B-E22C-3505-B580-274FDFD025F7> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff4345f000 -     0x7fff4346afff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <5ADAF956-AD80-3187-8EB5-8D411A814DEB> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff4346b000 -     0x7fff43688fff  com.apple.CoreDuet (1.0 - 1) <BEA1AF97-6A4B-3A71-BD3D-A3317638DB5D> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff43689000 -     0x7fff436dffff  com.apple.coreduetcontext (1.0 - 1) <61D63248-409E-333C-8AA6-397BAEEC0480> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext
    0x7fff436e0000 -     0x7fff436f0fff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <98E8A558-CD78-391C-A95C-0527B13D04C2> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol
    0x7fff436f3000 -     0x7fff436f5fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <E80E9512-50BE-3886-B5BA-0CE8374B44A5> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging
    0x7fff43706000 -     0x7fff43717fff  com.apple.CoreEmoji (1.0 - 122) <F481037D-1AA4-3623-B6F9-102A5CAD427A> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff43de7000 -     0x7fff43e82fff  com.apple.CoreNLP (1.0 - 241) <7E1C5BC4-A5E7-375D-8778-35F0045EEDAC> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff441b2000 -     0x7fff441b6fff  com.apple.CoreOptimization (1.0 - 1) <64A461C1-EE85-35CB-B06C-CA84DDE1470F> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
    0x7fff4433f000 -     0x7fff44347fff  com.apple.CorePhoneNumbers (1.0 - 1) <CB40D334-E5DA-3FFF-8DD5-DC722CCF2A8E> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff44348000 -     0x7fff4439cfff  com.apple.CorePrediction (1.0 - 1) <8BF23149-FBA7-3268-8541-4638F3DEA0CE> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
    0x7fff44e51000 -     0x7fff44e79fff  com.apple.CoreSVG (1.0 - 148) <88C8AB66-7AD3-3532-9EA6-444769B21851> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff44e7a000 -     0x7fff44eb1fff  com.apple.CoreServicesInternal (468 - 468) <D2EE2A24-24DC-33CD-B50D-19CBBE8AFD6D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff44eb2000 -     0x7fff44eedfff  com.apple.CSStore (1112.0.10 - 1112.0.10) <9B5644B9-46A0-38A2-9314-ED8624EF49A0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff4547f000 -     0x7fff45536fff  com.apple.CoreSymbolication (12.0 - 64540.77.1) <5D22593A-CF82-3D7C-ABD0-D117E90116C2> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff455cb000 -     0x7fff455d4fff  com.apple.CoreTime (277) <CF3FC5D2-3B79-3031-8661-81F606B4E536> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime
    0x7fff455f1000 -     0x7fff4572efff  com.apple.coreui (2.1 - 671) <60200A67-BD66-3CFB-9A98-5C1A28BE0EB3> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff4572f000 -     0x7fff4593cfff  com.apple.CoreUtils (6.3 - 630.67) <3AE43426-8E0D-36FB-8F55-58A7C8A91E7C> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff4599d000 -     0x7fff45ae9fff  com.apple.CoreWiFi (3.0 - 341) <F4E6E671-A751-3BDE-8095-96E97E92DDD6> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff45aea000 -     0x7fff45afdfff  com.apple.CrashReporterSupport (10.13 - 15029) <0780316F-7A16-3131-8E36-1B0DD6862BF6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff45bbf000 -     0x7fff45bd2fff  com.apple.framework.DFRFoundation (1.0 - 260) <C716AB5D-1000-315B-8D94-AEAFBE90E2DF> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff45bd3000 -     0x7fff45bd8fff  com.apple.DSExternalDisplay (3.1 - 380) <C6B2BFFF-EF72-33CD-81A7-60AA0C127691> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff45c67000 -     0x7fff45ce1fff  com.apple.datadetectorscore (8.0 - 669) <74515097-36E2-34A9-A6F5-77DD625B765D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff45d2e000 -     0x7fff45d6afff  com.apple.DebugSymbols (195 - 195) <BA81085B-3192-32A3-9542-F3A631210C37> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff45d6b000 -     0x7fff45efefff  com.apple.desktopservices (1.15 - 1337) <69F0AAB2-8066-3EEE-BA91-C124D90B44CD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff46448000 -     0x7fff464f7fff  com.apple.DiskImagesFramework (595 - 595) <AD496D30-C44F-384B-8F46-AFB40E94896A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff4654c000 -     0x7fff4662bfff  com.apple.DiskManagement (14.0 - 1733.0.0.141.1) <EE5E419E-E098-3A8E-A141-9F3185F79536> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff466ae000 -     0x7fff466d2fff  com.apple.DuetActivityScheduler (1.0 - 1) <1F27AA1A-980D-3558-A730-E702303C20DF> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler
    0x7fff4673d000 -     0x7fff46744fff  com.apple.EFILogin (2.0 - 2) <146A7631-9CF2-37E7-A838-7C39BF66736D> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff4746e000 -     0x7fff47483fff  com.apple.Engram (1.0 - 1) <7917FDCF-977E-38FF-85D5-47C22FE14AAD> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
    0x7fff47484000 -     0x7fff47c6ffff  com.apple.vision.EspressoFramework (1.0 - 239) <F32A4D55-8C2B-33EC-917E-CE4994AC24EB> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff480be000 -     0x7fff484d8fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <B287325C-0C9D-31E0-90FB-DFE3BEC27842> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff48bfc000 -     0x7fff48d57fff  libFontParser.dylib (302) <B8CE176A-7B0D-3303-AC3E-A8D1CB81200F> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff48d58000 -     0x7fff48d6afff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <985AE5A7-3416-3426-B65B-DECC3F63528A> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff48d72000 -     0x7fff48df0fff  com.apple.FrontBoardServices (689 - 689) <232F2F61-D77E-3A8E-8C30-493606678E0C> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices
    0x7fff4da60000 -     0x7fff4da6bfff  libGPUSupportMercury.dylib (18.0.29) <DB3A54D1-4414-3F86-B990-AADD70AAC21C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff4da6c000 -     0x7fff4da72fff  com.apple.GPUWrangler (6.1.18 - 6.1.18) <377A81D1-8D45-3D7B-B107-4B7392F4680D> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4e0ae000 -     0x7fff4e0d3fff  com.apple.GenerationalStorage (2.0 - 322) <EE329AD0-9083-3209-9CE2-9BBA0000BA15> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff4e0f0000 -     0x7fff4f6bcfff  com.apple.GeoServices (1.0 - 1747.20.7.22.1) <FDA631D7-4EBF-326C-B4E1-89C5FED03354> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff4f7b1000 -     0x7fff4f7bffff  com.apple.GraphVisualizer (1.0 - 100.1) <70405B9E-5165-3293-8106-8F1339D229D3> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff4f983000 -     0x7fff4fa42fff  com.apple.Heimdal (4.0 - 2.0) <F6A25CE3-0125-3E5A-B084-ED65C84D9C88> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff513a0000 -     0x7fff514b1fff  com.apple.ids (10.0 - 1000) <A8ABD4EB-F819-3B38-809C-57D3FC194893> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x7fff514b2000 -     0x7fff51627fff  com.apple.idsfoundation (10.0 - 1000) <B5267BB3-FA07-37EE-BEC2-2C53D5B0D36C> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
    0x7fff51cc0000 -     0x7fff51d34fff  com.apple.imfoundation (10.0 - 1000) <64CE5B02-C4C4-3CF1-B7DF-6F143C665094> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x7fff51e94000 -     0x7fff51e9cfff  com.apple.IOAccelerator (439.34 - 439.34) <53569C7E-6E59-3622-9EB9-DAE7482EE2EF> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff51ecc000 -     0x7fff51ed7fff  com.apple.audio.IOKitten (200.6 - 200.6) <08D0ABC5-26BD-323F-A923-D6918F105C65> /System/Library/PrivateFrameworks/IOKitten.framework/Versions/A/IOKitten
    0x7fff51ed8000 -     0x7fff51ee2fff  com.apple.IOMobileFramebuffer (342.0.0 - 342.0.0) <14618DEA-C8CB-3683-BFC0-CDA1DFFB4C97> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff51ee7000 -     0x7fff51efefff  com.apple.IOPresentment (1.0 - 37) <D97C68D9-9361-311A-84EC-C4951B936A30> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff522a7000 -     0x7fff522bafff  com.apple.IconFoundation (468.1 - 468.1) <0118A145-C4B8-326C-B646-4B5214238782> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff522bb000 -     0x7fff52325fff  com.apple.IconServices (468.1 - 468.1) <81207E43-BB53-30CB-A76B-7CF5F334335E> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff52576000 -     0x7fff52585fff  com.apple.IntentsFoundation (1.0 - 1) <4E619B19-9655-3D34-A09A-0110CA899439> /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation
    0x7fff526bc000 -     0x7fff526c4fff  com.apple.InternationalSupport (1.0 - 58) <0831C163-E4E7-3A39-922B-71B70E513462> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff52a8a000 -     0x7fff52aacfff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <D4DF57E1-6B74-3E32-8386-FE91C49E8601> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff52c37000 -     0x7fff52d20fff  com.apple.LanguageModeling (1.0 - 243) <DBDB7657-027A-31B2-B3F1-77856773F9D9> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff52d21000 -     0x7fff52d6cfff  com.apple.Lexicon-framework (1.0 - 83) <3A3A2CCB-3FB0-3C7D-81CA-FDEC63A8C628> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff52d75000 -     0x7fff52d7bfff  com.apple.LinguisticData (1.0 - 377) <EE1BC81F-1A0F-3F9A-9486-CAFBDB7C5526> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff52da8000 -     0x7fff52dcffff  com.apple.locationsupport (2420.0.44 - 2420.0.44) <968F15A4-25F0-3550-A251-BF6DA3F7C88A> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff52e45000 -     0x7fff52e4cfff  com.apple.LoginUICore (4.0 - 4.0) <20C1713E-AA51-3F0A-AAB2-9D0BB03DABAA> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff5358d000 -     0x7fff53590fff  com.apple.Mangrove (1.0 - 25) <44422F2B-99E2-337A-93A7-4B5A084172FE> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff53846000 -     0x7fff53846fff  com.apple.marco (10.0 - 1000) <30018C09-E0BB-3423-97B4-66C93A012A54> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x7fff5390b000 -     0x7fff539d4fff  com.apple.MediaExperience (1.0 - 1) <66A99D46-5810-3305-997C-AF0B6932C7AF> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff53a5c000 -     0x7fff53a8ffff  com.apple.MediaKit (16 - 927) <38B3C91A-A460-3D3E-B05C-7A5A57A7ADA8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff53b5c000 -     0x7fff53f80fff  com.apple.MediaRemote (1.0 - 1) <5E62FB48-8DC3-3D4B-8BC3-32A0FFE3635E> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
    0x7fff53f81000 -     0x7fff53fc5fff  com.apple.MediaServices (1.0 - 1) <807A189B-D85B-3EB9-AE2E-759351165FC8> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
    0x7fff54315000 -     0x7fff54362fff  com.apple.spotlight.metadata.utilities (1.0 - 2136.1) <0675C7C8-3BBC-39F8-A743-E5D8D87A0E23> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff5438a000 -     0x7fff54484fff  com.apple.gpusw.MetalTools (1.0 - 1) <52AE58B5-F39E-3D40-AF04-FE7B870F7D10> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff544fa000 -     0x7fff5451efff  com.apple.MobileAssets (1.0 - 659) <0311BF97-372B-3761-8ED1-41AF555A1583> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff54580000 -     0x7fff5459ffff  com.apple.MobileKeyBag (2.0 - 1.0) <CDCEDF46-DF05-331E-809E-89D0A54041D7> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff54889000 -     0x7fff548bcfff  com.apple.MultitouchSupport.framework (4400.21 - 4400.21) <93E40814-3D9A-358C-8508-165545DE0268> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff54e21000 -     0x7fff54e2bfff  com.apple.NetAuth (6.2 - 6.2) <1B6E2DAC-0C65-3AA7-9A7B-D7AD1244A0D2> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff55fb0000 -     0x7fff55ffdfff  com.apple.OTSVG (1.0 - 672) <2E11608E-A2F6-34F7-B450-171C6803870A> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff5685e000 -     0x7fff56865fff  com.apple.PIP (1.0 - 109) <863C9180-2779-30A9-B1EC-71AD8E4F5A2A> /System/Library/PrivateFrameworks/PIP.framework/Versions/A/PIP
    0x7fff570eb000 -     0x7fff570f6fff  com.apple.PerformanceAnalysis (1.264 - 264) <E3C0A3EA-290E-317B-9440-90C2B03BAF6D> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff570ff000 -     0x7fff57128fff  com.apple.persistentconnection (1.0 - 1.0) <99B437C2-3E69-3AA8-A731-DBAE734668F8> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff58e8c000 -     0x7fff58ebffff  com.apple.pluginkit.framework (1.0 - 1) <A3C67556-9A8E-3283-AD4A-E8863C5FBF08> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff58f45000 -     0x7fff58f59fff  com.apple.PowerLog (1.0 - 1) <F092E715-6B94-320E-B3CE-E3FA274398AE> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
    0x7fff5a0c8000 -     0x7fff5a120fff  com.apple.ProtectedCloudStorage (1.0 - 1) <C8B603B7-A6A3-36AB-A064-BDE59BF3BF57> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff5a121000 -     0x7fff5a139fff  com.apple.ProtocolBuffer (1 - 283.20.7.22.1) <FAB0055E-E552-37D5-BD94-28A2872E4A6D> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5a17f000 -     0x7fff5a212fff  com.apple.Quagga (46 - 46) <444F5FFD-14B9-324F-AC4B-25A25C01C9FF> /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga
    0x7fff5a35b000 -     0x7fff5a3d9fff  com.apple.Rapport (2.0.0 - 200.17) <45F65BDE-4787-3B01-A6EF-BB8447394269> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport
    0x7fff5a9fc000 -     0x7fff5aa27fff  com.apple.RemoteViewServices (2.0 - 162) <8C74E6C3-085D-3265-A02A-0107A87A348B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff5abd0000 -     0x7fff5ac20fff  com.apple.RunningBoardServices (1.0 - 505) <AC8D05AD-BC88-3B99-AF54-471C06A39860> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff5bab3000 -     0x7fff5bb00fff  com.apple.Safari.SafeBrowsing (16610 - 16610.1.23.1.3) <D49BF6BC-2DA0-3748-B620-8AB2A6A9EE11> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff5c7a9000 -     0x7fff5c7acfff  com.apple.SecCodeWrapper (4.0 - 509) <A6B886B9-1C7A-301F-AD70-15F575A55821> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff5c96e000 -     0x7fff5cab2fff  com.apple.Sharing (1561.1 - 1561.1) <2152803F-05A2-3313-8D50-E18BF2309E1C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff5dfa7000 -     0x7fff5e2f7fff  com.apple.SkyLight (1.600.0 - 529.1) <CD11BEC2-4BB0-33E3-B845-466D787FBFA4> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff5e8b4000 -     0x7fff5e8b4fff  com.apple.SoftLinking (1.0 - 1) <CE4866E4-69BC-3DF2-B4AD-FBAAE174BA3F> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff5ed86000 -     0x7fff5ed95fff  com.apple.SpeechRecognitionCore (6.1.8 - 6.1.8) <6F7025D4-69EC-33D0-848A-CDB2B8E6F3F9> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff5f516000 -     0x7fff5f558fff  com.apple.StreamingZip (1.0 - 1) <DA5C167F-E251-39F9-9081-48DF71C30FA3> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff5f67d000 -     0x7fff5f687fff  com.apple.SymptomDiagnosticReporter (1.0 - 79) <B4790C7E-A662-3695-A2CE-2DCABE328975> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff5f934000 -     0x7fff5f96bfff  com.apple.framework.SystemAdministration (1.0 - 1.0) <7E87EB27-4BFB-3E63-92C3-88777CC641C4> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff5fbc8000 -     0x7fff5fbdffff  com.apple.TCC (1.0 - 1) <F3D5CC58-E15B-3CAB-B917-34F68DE64C64> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff60146000 -     0x7fff60212fff  com.apple.TextureIO (3.10.9 - 3.10.9) <0E93D75C-557E-36EF-8C78-6A979F863598> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff60293000 -     0x7fff602d4fff  com.apple.TimeSync (1.0 - 900.9) <B9731DA0-0626-302B-A4BD-568F9641DC4A> /System/Library/PrivateFrameworks/TimeSync.framework/Versions/A/TimeSync
    0x7fff606f7000 -     0x7fff606f8fff  com.apple.TrustEvaluationAgent (2.0 - 35) <2B10E4FC-6A1F-365C-9C03-75D5FC075813> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff60745000 -     0x7fff609c9fff  com.apple.UIFoundation (1.0 - 714) <EBE71D51-45D4-3C15-A97F-FA2117D7C1CB> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff60ab3000 -     0x7fff60abdfff  com.apple.URLFormatting (143 - 143) <3A891E34-DB69-3828-A6DD-2AAF857E0686> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff6165f000 -     0x7fff616c4fff  com.apple.UserActivity (427 - 427) <7159CA2E-867B-3470-957F-2D2B3A26E8E4> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff616c5000 -     0x7fff616e6fff  com.apple.UserManagement (1.0 - 1) <FD5F530D-48DC-3B3D-BFA6-910CC301AAAE> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff62c3c000 -     0x7fff62d27fff  com.apple.ViewBridge (534 - 534) <9616DF92-7AC2-35C7-A33D-573570B339AF> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff62f38000 -     0x7fff62f3bfff  com.apple.WatchdogClient.framework (1.0 - 98) <682796D3-7FB4-3493-B398-790DD442DCE3> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff63130000 -     0x7fff63133fff  com.apple.WebInspectorUI (610 - 610.1.23.1.3) <AEC2E5A6-8877-3C11-86D4-A92668589EEB> /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspectorUI
    0x7fff632f1000 -     0x7fff6332dfff  libAWDSupport.dylib (949) <58999CA3-7FED-3F44-B91B-E46383077154> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib
    0x7fff6332e000 -     0x7fff63630fff  libAWDSupportFramework.dylib (3684) <A1259FFE-F7DA-34F4-8A08-EBA3131C7DC1> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
    0x7fff63631000 -     0x7fff63642fff  libprotobuf-lite.dylib (3684) <5F28EC32-793E-3D0A-A45D-16CA4E0FC180> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
    0x7fff63643000 -     0x7fff6369efff  libprotobuf.dylib (3684) <28155931-6760-3F83-A6A1-FB9AE21A1506> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
    0x7fff6369f000 -     0x7fff636e3fff  com.apple.awd (1.0 - 949) <65FCF91A-D33F-3B74-862A-C3086F290208> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
    0x7fff63c4a000 -     0x7fff63c4dfff  com.apple.dt.XCTTargetBootstrap (1.0 - 17144) <4327EA5F-FA35-3B2D-B1A6-0F0ADF9E4D77> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff63cde000 -     0x7fff63cfafff  com.apple.audio.caulk (1.0 - 69) <58EE43A4-A278-3BEC-B6BE-44B372CDDE04> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff64c31000 -     0x7fff64c33fff  com.apple.loginsupport (1.0 - 1) <7C4A8828-6936-361D-A0A4-A6D6B5DC0077> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff64c34000 -     0x7fff64c4dfff  com.apple.login (3.0 - 3.0) <461DD311-3BC2-3C14-9321-F35B4B010EF7> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff64c7e000 -     0x7fff64c8afff  com.apple.perfdata (1.0 - 67) <8A698C11-16A9-3489-BBF0-AFEDDC8A78BB> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff67656000 -     0x7fff6766dfff  libAccessibility.dylib (2862) <EA518AA9-6C22-3850-AEEE-FF04C0DCDBA9> /usr/lib/libAccessibility.dylib
    0x7fff6784b000 -     0x7fff6785afff  libAudioStatistics.dylib (18.1) <72879876-1A33-3458-9955-A62A45F0674F> /usr/lib/libAudioStatistics.dylib
    0x7fff6785b000 -     0x7fff6788dfff  libAudioToolboxUtility.dylib (1174) <C2E94415-4A3B-3394-B38B-F97A1C5601CC> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff67896000 -     0x7fff678cbfff  libCRFSuite.dylib (49) <404D4D81-549E-380A-A5CC-73695FB1F32E> /usr/lib/libCRFSuite.dylib
    0x7fff678ce000 -     0x7fff678d9fff  libCheckFix.dylib (31) <13EAD581-4CDD-3BD4-8F56-6A8FDEEEED78> /usr/lib/libCheckFix.dylib
    0x7fff678da000 -     0x7fff678e4fff  libChineseTokenizer.dylib (37) <8625269C-1069-3E38-9960-F42632C7A424> /usr/lib/libChineseTokenizer.dylib
    0x7fff678e5000 -     0x7fff67970fff  libCoreStorage.dylib (554) <D2C6C1AD-7F92-39DB-BDC2-00207A9A857B> /usr/lib/libCoreStorage.dylib
    0x7fff67973000 -     0x7fff67975fff  libDiagnosticMessagesClient.dylib (112) <5DB62D7D-3422-34C6-9179-C327CC7E0D4B> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff67bdd000 -     0x7fff67be4fff  libIOReport.dylib (64) <60863308-E76F-31A0-ADAA-0D8EDC46FC1A> /usr/lib/libIOReport.dylib
    0x7fff67be5000 -     0x7fff67becfff  libMatch.1.dylib (38) <40E5245D-5ECB-3A64-B98E-CDC13295248A> /usr/lib/libMatch.1.dylib
    0x7fff67c25000 -     0x7fff67c52fff  libMobileGestalt.dylib (978) <7EEB5EBA-F2FB-39D4-A1F2-E28AB9B3AF52> /usr/lib/libMobileGestalt.dylib
    0x7fff67cce000 -     0x7fff67dadfff  libSMC.dylib (20) <86675883-5D2F-3F36-A155-F23379CCEE9A> /usr/lib/libSMC.dylib
    0x7fff67dc6000 -     0x7fff67dc7fff  libSystem.B.dylib (1292) <F12C33FB-7BC2-39CA-AE83-3D04259960DA> /usr/lib/libSystem.B.dylib
    0x7fff67dc8000 -     0x7fff67e54fff  libTelephonyUtilDynamic.dylib (5341) <30EE2003-8D8F-320F-85E6-23FC4B74D490> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff67e55000 -     0x7fff67e56fff  libThaiTokenizer.dylib (3) <DE1FB1D7-9F5B-30EA-9913-84196A006EFF> /usr/lib/libThaiTokenizer.dylib
    0x7fff67ecb000 -     0x7fff67ecdfff  libapp_launch_measurement.dylib (14.1) <2EFE6781-5CEE-3569-AEE3-C7871C14ACC6> /usr/lib/libapp_launch_measurement.dylib
    0x7fff67ece000 -     0x7fff67ee5fff  libapple_nghttp2.dylib (1.41) <48F3268E-2D66-3D83-A829-CEC17EB8E3E8> /usr/lib/libapple_nghttp2.dylib
    0x7fff67f1e000 -     0x7fff67f8ffff  libarchive.2.dylib (83) <550DC1BF-2952-338B-83C3-366DFB8B1032> /usr/lib/libarchive.2.dylib
    0x7fff67f90000 -     0x7fff68028fff  libate.dylib (3.0.4) <8F4B2A4F-0851-3C89-BB5C-523E29ABF077> /usr/lib/libate.dylib
    0x7fff68132000 -     0x7fff681edfff  libboringssl.dylib (351) <0B1F60F8-C171-3806-A4A2-E0AF961FE871> /usr/lib/libboringssl.dylib
    0x7fff681ee000 -     0x7fff681fefff  libbsm.0.dylib (68) <FE182C77-ADE5-3453-9B9C-ADD9855D52BC> /usr/lib/libbsm.0.dylib
    0x7fff681ff000 -     0x7fff6820cfff  libbz2.1.0.dylib (44) <FE5D3CA0-072E-3A98-A375-74F5A0B544AC> /usr/lib/libbz2.1.0.dylib
    0x7fff6820d000 -     0x7fff68262fff  libc++.1.dylib (904.4) <5EE67A09-5FD2-39A4-AB6C-11B47358A5C0> /usr/lib/libc++.1.dylib
    0x7fff68263000 -     0x7fff6827bfff  libc++abi.dylib (904.4) <7FCB3491-F792-37AD-BCAF-CE79F98511EC> /usr/lib/libc++abi.dylib
    0x7fff6827c000 -     0x7fff6827cfff  libcharset.1.dylib (59) <B6EC98CA-2466-3EB2-BD42-D581D6AC809E> /usr/lib/libcharset.1.dylib
    0x7fff6827d000 -     0x7fff6828efff  libcmph.dylib (8) <1ABA686C-9EE8-31F8-8836-991853CCB4ED> /usr/lib/libcmph.dylib
    0x7fff68293000 -     0x7fff682abfff  libcompression.dylib (96) <5130D34A-5ED2-3265-AA40-32EA5F257BD6> /usr/lib/libcompression.dylib
    0x7fff685c8000 -     0x7fff685dffff  libcoretls.dylib (169) <6DEE1172-4798-332A-8FA5-EDFFB2E2C96A> /usr/lib/libcoretls.dylib
    0x7fff685e0000 -     0x7fff685e1fff  libcoretls_cfhelpers.dylib (169) <4CF7B667-544B-36E8-A84D-8ED057DE6C69> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff68aa8000 -     0x7fff68babfff  libcrypto.44.dylib (56) <BC40C248-42B0-33E9-BA2C-ED4DE5228C36> /usr/lib/libcrypto.44.dylib
    0x7fff68bb0000 -     0x7fff68bbbfff  libcsfde.dylib (554) <8D340292-76C7-3401-AB1F-61E8D1B21E5B> /usr/lib/libcsfde.dylib
    0x7fff68bc3000 -     0x7fff68c22fff  libcups.2.dylib (492) <A6486557-6556-359C-88B3-8244FBEC6101> /usr/lib/libcups.2.dylib
    0x7fff68c24000 -     0x7fff68c8afff  libcurl.4.dylib (121) <55AE68FF-AD59-3852-8778-A70C1D4CADBC> /usr/lib/libcurl.4.dylib
    0x7fff68c8b000 -     0x7fff68c90fff  libdns_services.dylib (1310) <65AD8178-4A99-3645-B973-F1D099B25AA8> /usr/lib/libdns_services.dylib
    0x7fff68d48000 -     0x7fff68d48fff  libenergytrace.dylib (22) <BE258EF2-3E1C-3648-B8D3-A93388D8AB2E> /usr/lib/libenergytrace.dylib
    0x7fff68d49000 -     0x7fff68d62fff  libexpat.1.dylib (26) <3A83967F-512D-34D0-9205-266DB027ECE2> /usr/lib/libexpat.1.dylib
    0x7fff68d70000 -     0x7fff68d73fff  libfakelink.dylib (3) <2074C384-F844-3206-ABD7-81243F83ECC8> /usr/lib/libfakelink.dylib
    0x7fff68d82000 -     0x7fff68d87fff  libgermantok.dylib (24) <7F6CDD0B-8F98-3937-86CA-6509CFB81450> /usr/lib/libgermantok.dylib
    0x7fff68d88000 -     0x7fff68d91fff  libheimdal-asn1.dylib (597.40.2) <993A4E43-00C8-35D2-B473-7F02EAAF8D11> /usr/lib/libheimdal-asn1.dylib
    0x7fff68dbe000 -     0x7fff68eaefff  libiconv.2.dylib (59) <D5C4A542-6927-3238-A571-817C336006B3> /usr/lib/libiconv.2.dylib
    0x7fff68eaf000 -     0x7fff69110fff  libicucore.A.dylib (66022) <D8ED1E57-1437-39C4-B550-4B8F7FCED557> /usr/lib/libicucore.A.dylib
    0x7fff6917a000 -     0x7fff6917bfff  liblangid.dylib (136) <E3E6AF39-70B1-3B24-ACB5-BF1D7AC72C65> /usr/lib/liblangid.dylib
    0x7fff691ac000 -     0x7fff691f4fff  libmecab.dylib (918) <E8C5063D-FB01-34C2-9928-153065D11A60> /usr/lib/libmecab.dylib
    0x7fff691f5000 -     0x7fff69413fff  libmecabra.dylib (918) <71DE8A7C-D409-34AF-8507-5D1110B6F9F6> /usr/lib/libmecabra.dylib
    0x7fff697d2000 -     0x7fff69dfcfff  libnetwork.dylib (2288) <E0F8D045-B729-37D5-9F3A-E8114B2F474F> /usr/lib/libnetwork.dylib
    0x7fff69eb7000 -     0x7fff69ebefff  liboah.dylib (182) <5DF7D349-395E-3F72-B53B-B6045A1A6D8F> /usr/lib/liboah.dylib
    0x7fff69ebf000 -     0x7fff69ef7fff  libobjc.A.dylib (817) <75F925B9-CE64-351D-8B44-16E802E162EE> /usr/lib/libobjc.A.dylib
    0x7fff69ef8000 -     0x7fff69efbfff  libodfde.dylib (26) <B0D2D40B-993B-3315-A1CE-B63E6741A54B> /usr/lib/libodfde.dylib
    0x7fff69f10000 -     0x7fff69f14fff  libpam.2.dylib (28.40.1) <F7408A5D-CC10-34F6-805B-BD3D634B2A2B> /usr/lib/libpam.2.dylib
    0x7fff69f27000 -     0x7fff69f5efff  libpcap.A.dylib (98) <7B8E8362-3E96-32BF-B765-A650E94E8DE4> /usr/lib/libpcap.A.dylib
    0x7fff69fa3000 -     0x7fff69fb1fff  libperfcheck.dylib (41) <A009AB90-B1FE-34EB-BFBE-1B43D1B63175> /usr/lib/libperfcheck.dylib
    0x7fff69ff3000 -     0x7fff6a052fff  libquic.dylib (2288) <5B0D5118-A151-3E91-BC75-637FBCDAAEF6> /usr/lib/libquic.dylib
    0x7fff6a055000 -     0x7fff6a06dfff  libresolv.9.dylib (68) <60AB5EF6-B296-3717-A109-9165734E5982> /usr/lib/libresolv.9.dylib
    0x7fff6a072000 -     0x7fff6a0bdfff  libsandbox.1.dylib (1432.0.0.141.1) <1D4EA797-0E1E-3DE9-BC15-CA3D7F2C65BC> /usr/lib/libsandbox.1.dylib
    0x7fff6a0be000 -     0x7fff6a0d1fff  libsasl2.2.dylib (214) <F0760A03-213B-3F67-9E6B-4E11954101D0> /usr/lib/libsasl2.2.dylib
    0x7fff6a0d2000 -     0x7fff6a0d4fff  libspindump.dylib (293) <705AE0BF-7EAD-3628-B00B-B0738146C0BA> /usr/lib/libspindump.dylib
    0x7fff6a0d5000 -     0x7fff6a294fff  libsqlite3.dylib (318) <D06FEE9A-1DFF-3313-8683-827C4AB4841B> /usr/lib/libsqlite3.dylib
    0x7fff6a38c000 -     0x7fff6a3b9fff  libssl.46.dylib (56) <0B1E487C-0DA4-3037-84D3-3AA2919BA6B6> /usr/lib/libssl.46.dylib
    0x7fff6a44b000 -     0x7fff6a47bfff  libtidy.A.dylib (18.1) <8B98282B-4949-3733-8850-92F97DCE579F> /usr/lib/libtidy.A.dylib
    0x7fff6a49e000 -     0x7fff6a505fff  libusrtcp.dylib (2288) <7AEAA4B9-D6D5-3071-888D-609EC850913E> /usr/lib/libusrtcp.dylib
    0x7fff6a506000 -     0x7fff6a509fff  libutil.dylib (58) <8931AA5D-FDFB-30A1-88DA-FAEB283EFCE7> /usr/lib/libutil.dylib
    0x7fff6a50a000 -     0x7fff6a517fff  libxar.1.dylib (452) <777318E9-4852-325A-8BD2-F5AB9CE105B5> /usr/lib/libxar.1.dylib
    0x7fff6a51d000 -     0x7fff6a5fffff  libxml2.2.dylib (34.3) <84B0E58F-DE3B-3979-9C99-2F9492CA2D10> /usr/lib/libxml2.2.dylib
    0x7fff6a604000 -     0x7fff6a62cfff  libxslt.1.dylib (17.2) <3CB70B81-CE4B-34C5-A331-6771B4D48632> /usr/lib/libxslt.1.dylib
    0x7fff6a62d000 -     0x7fff6a63ffff  libz.1.dylib (76) <CC4270B1-D4DF-3AF5-B009-5F61102422FB> /usr/lib/libz.1.dylib
    0x7fff6a67b000 -     0x7fff6a67dfff  liblog_network.dylib (2288) <AF96FA98-6AF4-3FEA-AD4A-A5863F66AA31> /usr/lib/log/liblog_network.dylib
    0x7fff6af0c000 -     0x7fff6af14fff  libcache.dylib (83) <27402B67-7C0A-3F21-83D2-2384FFB6F95F> /usr/lib/system/libcache.dylib
    0x7fff6af15000 -     0x7fff6af21fff  libcommonCrypto.dylib (60178) <531C00CD-8B5E-3C73-8F02-86B29B32EE09> /usr/lib/system/libcommonCrypto.dylib
    0x7fff6af22000 -     0x7fff6af29fff  libcompiler_rt.dylib (102.2) <A1A5D77C-992F-31E1-8799-9B47821A0C0F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff6af2a000 -     0x7fff6af34fff  libcopyfile.dylib (173) <73040C48-4BF1-3A30-AA61-001FE8EA7162> /usr/lib/system/libcopyfile.dylib
    0x7fff6af35000 -     0x7fff6afd0fff  libcorecrypto.dylib (1000) <850B19BA-C868-3F13-93D3-676CB5B55478> /usr/lib/system/libcorecrypto.dylib
    0x7fff6b0ef000 -     0x7fff6b133fff  libdispatch.dylib (1271) <BE11F898-3E40-309A-AD81-E6A3670F622C> /usr/lib/system/libdispatch.dylib
    0x7fff6b134000 -     0x7fff6b16efff  libdyld.dylib (828) <08E73B25-1629-36CA-9052-5916461D377E> /usr/lib/system/libdyld.dylib
    0x7fff6b16f000 -     0x7fff6b16ffff  libkeymgr.dylib (30) <EB8681E0-4FB5-374A-970F-0D2865B953DE> /usr/lib/system/libkeymgr.dylib
    0x7fff6b170000 -     0x7fff6b18bfff  libkxld.dylib (7195.0.0.141.5) <4316AB36-3C5E-3628-BAD3-13DCFAB9DC03> /usr/lib/system/libkxld.dylib
    0x7fff6b18c000 -     0x7fff6b18cfff  liblaunch.dylib (2038) <7205BF8A-5691-31FC-819D-1B8E83CD3A90> /usr/lib/system/liblaunch.dylib
    0x7fff6b18d000 -     0x7fff6b192fff  libmacho.dylib (973) <432977C1-2650-395B-AF20-BD551C9C2143> /usr/lib/system/libmacho.dylib
    0x7fff6b193000 -     0x7fff6b195fff  libquarantine.dylib (119.40.1) <609CCCCE-71B5-3B5C-B5E9-3733E93A3639> /usr/lib/system/libquarantine.dylib
    0x7fff6b196000 -     0x7fff6b197fff  libremovefile.dylib (49) <2FB728CD-D7F7-33D5-884D-3270AB7C8749> /usr/lib/system/libremovefile.dylib
    0x7fff6b198000 -     0x7fff6b1aefff  libsystem_asl.dylib (385) <F143B592-D336-371C-81FD-FFDCD6448524> /usr/lib/system/libsystem_asl.dylib
    0x7fff6b1af000 -     0x7fff6b1b0fff  libsystem_blocks.dylib (77) <49BAE65F-0F5F-36C0-8411-64949D968865> /usr/lib/system/libsystem_blocks.dylib
    0x7fff6b1b1000 -     0x7fff6b239fff  libsystem_c.dylib (1439) <3A4B404C-01A4-36F2-9DF9-474562AC62E6> /usr/lib/system/libsystem_c.dylib
    0x7fff6b23a000 -     0x7fff6b23cfff  libsystem_collections.dylib (1439) <61BCFC64-9646-3A7D-BF92-8932FEF0C79A> /usr/lib/system/libsystem_collections.dylib
    0x7fff6b23d000 -     0x7fff6b240fff  libsystem_configuration.dylib (1109) <B4F16E8D-D059-30C3-9122-F93F9ACC4D20> /usr/lib/system/libsystem_configuration.dylib
    0x7fff6b241000 -     0x7fff6b250fff  libsystem_containermanager.dylib (318.0.0.141.1) <3C1B09E6-A307-3C1A-B13A-FC0C12B5488B> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff6b251000 -     0x7fff6b255fff  libsystem_coreservices.dylib (123) <9706CE4F-EFB4-3880-ACFE-FA2C3D94B69E> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff6b256000 -     0x7fff6b25ffff  libsystem_darwin.dylib (1439) <58B64786-E941-34DA-8B44-155B0A4E6F8F> /usr/lib/system/libsystem_darwin.dylib
    0x7fff6b260000 -     0x7fff6b267fff  libsystem_dnssd.dylib (1310) <E4F326DD-155B-3AEF-93F0-FC92BE1C25D4> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff6b268000 -     0x7fff6b26afff  libsystem_featureflags.dylib (28) <0643B931-9D69-3D18-81BB-B085FE4F2277> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff6b26b000 -     0x7fff6b2b6fff  libsystem_info.dylib (542) <946DCDCD-2F3B-33F7-A8AD-D85B24AD498B> /usr/lib/system/libsystem_info.dylib
    0x7fff6b2b7000 -     0x7fff6b2e5fff  libsystem_kernel.dylib (7195.0.0.141.5) <3469259C-F28D-3E21-9502-EADE42F0B031> /usr/lib/system/libsystem_kernel.dylib
    0x7fff6b2e6000 -     0x7fff6b32dfff  libsystem_m.dylib (3186) <3B322AF5-CB5E-3156-9063-F828ACF77EDB> /usr/lib/system/libsystem_m.dylib
    0x7fff6b32e000 -     0x7fff6b35afff  libsystem_malloc.dylib (317) <4D9C5716-C923-3ED6-930B-2E55345DFF49> /usr/lib/system/libsystem_malloc.dylib
    0x7fff6b35b000 -     0x7fff6b369fff  libsystem_networkextension.dylib (1295) <F62E2FF8-37F2-3580-B446-061CC657AD6B> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff6b36a000 -     0x7fff6b373fff  libsystem_notify.dylib (279) <8FE392AE-CFAC-3B62-AFCA-30A12952ADF5> /usr/lib/system/libsystem_notify.dylib
    0x7fff6b374000 -     0x7fff6b37dfff  libsystem_platform.dylib (254) <A76375DB-F3B2-32A8-A756-565DBC5AA6D2> /usr/lib/system/libsystem_platform.dylib
    0x7fff6b37e000 -     0x7fff6b37efff  libsystem_product_info_filter.dylib (8) <BC4E5E9D-D861-3F38-898B-3149B212A279> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff6b37f000 -     0x7fff6b38afff  libsystem_pthread.dylib (454) <F3A2B8EA-4999-3B91-BD01-60AD1D9B75D2> /usr/lib/system/libsystem_pthread.dylib
    0x7fff6b38b000 -     0x7fff6b38ffff  libsystem_sandbox.dylib (1432.0.0.141.1) <7CA23847-08E2-3903-A6A3-ECFEB35A10F9> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff6b390000 -     0x7fff6b392fff  libsystem_secinit.dylib (87) <C22B7CDC-ED5B-3827-886E-30043DE945EE> /usr/lib/system/libsystem_secinit.dylib
    0x7fff6b393000 -     0x7fff6b39afff  libsystem_symptoms.dylib (1431) <B35630CF-33E1-3728-B7F1-6B0E04141A3C> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff6b39b000 -     0x7fff6b3b2fff  libsystem_trace.dylib (1277) <76D0BBF9-189E-3236-9826-2F8A6B8C9E87> /usr/lib/system/libsystem_trace.dylib
    0x7fff6b3b7000 -     0x7fff6b3c1fff  libunwind.dylib (200.10) <AC1EC06F-54C7-3B85-9440-C057FA1E3584> /usr/lib/system/libunwind.dylib
    0x7fff6b3c2000 -     0x7fff6b3f6fff  libxpc.dylib (2038) <D348486B-337C-3916-A0D9-419AC5FF24A6> /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: 389428
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=881.2M resident=0K(0%) swapped_out_or_unallocated=881.2M(100%)
Writable regions: Total=2.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.0G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               128K        1 
Activity Tracing                   256K        1 
CG backing stores                 3792K        6 
CG image                            84K        5 
CoreAnimation                     51.6M        9 
CoreGraphics                         8K        1 
CoreUI image data                  896K        7 
Dispatch continuations            64.0M        1 
Foundation                          16K        1 
Kernel Alloc Once                    8K        1 
MALLOC                             1.3G       92 
MALLOC guard page                   48K       12 
MALLOC_LARGE (reserved)          605.6M        2         reserved VM address space (unallocated)
OpenGL GLSL                        384K        5 
STACK GUARD                       56.0M       11 
Stack                             13.1M       11 
VM_ALLOCATE                       5152K       66 
VM_ALLOCATE (reserved)              36K        1         reserved VM address space (unallocated)
__DATA                            56.5M      416 
__DATA_CONST                       197K        6 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       479.9M       23 
__OBJC_RO                         36.5M        1 
__OBJC_RW                         2483K        2 
__TEXT                           401.4M      403 
__UNICODE                          588K        1 
libnetwork                         128K        8 
mapped file                      107.3M       28 
shared memory                       44K        5 
===========                     =======  ======= 
TOTAL                              3.1G     1128 
TOTAL, minus reserved VM space     2.5G     1128 

Model: MacBookPro14,3, BootROM 428.0.0.0.0, 4 processors, Quad-Core Intel Core i7, 2.8 GHz, 16 GB, SMC 2.45f4
Graphics: kHW_IntelHDGraphics630Item, Intel HD Graphics 630, spdisplays_builtin
Graphics: kHW_AMDRadeonPro555Item, Radeon Pro 555, spdisplays_pcie_device, 2 GB
Memory Module: BANK 0/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
Memory Module: BANK 1/DIMM0, 8 GB, LPDDR3, 2133 MHz, 0x802C, 0x4D5435324C31473332443450472D30393320
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x173), Broadcom BCM43xx 1.0 (7.77.111.1 AirPortDriverBrcmNIC-1667)
Bluetooth: Version 8.0.0d44, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Network Service: iPhone, Ethernet, en7
USB Device: USB 3.0 Bus
USB Device: iPhone
USB Device: Apple T1 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.4

Linux build error [SOLVED]

Greetings ! I've successfully built the VST2 plugin on Ubuntu 18.04 but haven't tested it yet. Now I'm attempting a Linux build of the standalone version on an old Fedora 23 system but I've run into an error. Btw, I created the Linux Makefile with JUCE Projucer, in which I left the format at the Default (GUI Application) selection, i.e. I didn't select any plugin build.

Here's the build error, please advise if there's a fix:

Compiling VSTPlugin.cpp
../../Source/VSTPlugin.cpp: In member function ‘void VSTPlugin::SetVST(std::__cxx11::string)’:
../../Source/VSTPlugin.cpp:205:18: error: no match for ‘operator=’ (operand types are ‘std::unique_ptr<juce::AudioProcessor>’ and ‘juce::AudioPluginInstance*’)
          mPlugin = mFormatManager.getFormat(i)->createInstanceFromDescription(desc, gSampleRate, gBufferSize);
                  ^
In file included from /usr/include/c++/5.3.1/memory:81:0,
                 from ../../../JUCE/modules/juce_core/system/juce_StandardHeader.h:46,
                 from ../../../JUCE/modules/juce_core/juce_core.h:201,
                 from ../../../JUCE/modules/juce_audio_basics/juce_audio_basics.h:52,
                 from ../../Source/../JuceLibraryCode/JuceHeader.h:17,
                 from ../../Source/SynthGlobals.h:12,
                 from ../../Source/ChannelBuffer.h:12,
                 from ../../Source/IAudioReceiver.h:12,
                 from ../../Source/IAudioProcessor.h:13,
                 from ../../Source/VSTPlugin.h:12,
                 from ../../Source/VSTPlugin.cpp:9:
/usr/include/c++/5.3.1/bits/unique_ptr.h:249:7: note: candidate: std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Tp, _Dp>&&) [with _Tp = juce::AudioProcessor; _Dp = std::default_delete<juce::AudioProcessor>]
       operator=(unique_ptr&& __u) noexcept
       ^
/usr/include/c++/5.3.1/bits/unique_ptr.h:249:7: note:   no known conversion for argument 1 from ‘juce::AudioPluginInstance*’ to ‘std::unique_ptr<juce::AudioProcessor>&&’
In file included from /usr/include/c++/5.3.1/memory:81:0,
                 from ../../../JUCE/modules/juce_core/system/juce_StandardHeader.h:46,
                 from ../../../JUCE/modules/juce_core/juce_core.h:201,
                 from ../../../JUCE/modules/juce_audio_basics/juce_audio_basics.h:52,
                 from ../../Source/../JuceLibraryCode/JuceHeader.h:17,
                 from ../../Source/SynthGlobals.h:12,
                 from ../../Source/ChannelBuffer.h:12,
                 from ../../Source/IAudioReceiver.h:12,
                 from ../../Source/IAudioProcessor.h:13,
                 from ../../Source/VSTPlugin.h:12,
                 from ../../Source/VSTPlugin.cpp:9:
/usr/include/c++/5.3.1/bits/unique_ptr.h:269:2: note: candidate: template<class _Up, class _Ep> typename std::enable_if<std::__and_<std::is_convertible<typename std::unique_ptr<_Up, _Ep>::pointer, typename std::unique_ptr<_Tp, _Dp>::_Pointer::type>, std::__not_<std::is_array<_Up> > >::value, std::unique_ptr<_Tp, _Dp>&>::type std::unique_ptr<_Tp, _Dp>::operator=(std::unique_ptr<_Up, _Ep>&&) [with _Up = _Up; _Ep = _Ep; _Tp = juce::AudioProcessor; _Dp = std::default_delete<juce::AudioProcessor>]
  operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
  ^
/usr/include/c++/5.3.1/bits/unique_ptr.h:269:2: note:   template argument deduction/substitution failed:
../../Source/VSTPlugin.cpp:205:18: note:   mismatched types ‘std::unique_ptr<_Tp, _Dp>’ and ‘juce::AudioPluginInstance*’
          mPlugin = mFormatManager.getFormat(i)->createInstanceFromDescription(desc, gSampleRate, gBufferSize);
                  ^
In file included from /usr/include/c++/5.3.1/memory:81:0,
                 from ../../../JUCE/modules/juce_core/system/juce_StandardHeader.h:46,
                 from ../../../JUCE/modules/juce_core/juce_core.h:201,
                 from ../../../JUCE/modules/juce_audio_basics/juce_audio_basics.h:52,
                 from ../../Source/../JuceLibraryCode/JuceHeader.h:17,
                 from ../../Source/SynthGlobals.h:12,
                 from ../../Source/ChannelBuffer.h:12,
                 from ../../Source/IAudioReceiver.h:12,
                 from ../../Source/IAudioProcessor.h:13,
                 from ../../Source/VSTPlugin.h:12,
                 from ../../Source/VSTPlugin.cpp:9:
/usr/include/c++/5.3.1/bits/unique_ptr.h:278:7: note: candidate: std::unique_ptr<_Tp, _Dp>& std::unique_ptr<_Tp, _Dp>::operator=(std::nullptr_t) [with _Tp = juce::AudioProcessor; _Dp = std::default_delete<juce::AudioProcessor>; std::nullptr_t = std::nullptr_t]
       operator=(nullptr_t) noexcept
       ^
/usr/include/c++/5.3.1/bits/unique_ptr.h:278:7: note:   no known conversion for argument 1 from ‘juce::AudioPluginInstance*’ to ‘std::nullptr_t’
../../Source/VSTPlugin.cpp: In member function ‘virtual void VSTPlugin::Poll()’:
../../Source/VSTPlugin.cpp:279:98: warning: ‘virtual float juce::AudioProcessor::getParameter(int)’ is deprecated [-Wdeprecated-declarations]
          mParameterSliders[i].mValue = mPlugin->getParameter(mParameterSliders[i].mParameterIndex);
                                                                                                  ^
In file included from ../../../JUCE/modules/juce_audio_processors/juce_audio_processors.h:113:0,
                 from ../../Source/../JuceLibraryCode/JuceHeader.h:20,
                 from ../../Source/SynthGlobals.h:12,
                 from ../../Source/ChannelBuffer.h:12,
                 from ../../Source/IAudioReceiver.h:12,
                 from ../../Source/IAudioProcessor.h:13,
                 from ../../Source/VSTPlugin.h:12,
                 from ../../Source/VSTPlugin.cpp:9:
../../../JUCE/modules/juce_audio_processors/processors/juce_AudioProcessor.h:1015:19: note: declared here
     JUCE_DEPRECATED (virtual float getParameter (int parameterIndex));
                   ^
../../Source/VSTPlugin.cpp: In member function ‘virtual void VSTPlugin::FloatSliderUpdated(FloatSlider*, float)’:
../../Source/VSTPlugin.cpp:512:97: warning: ‘virtual void juce::AudioProcessor::setParameter(int, float)’ is deprecated [-Wdeprecated-declarations]
          mPlugin->setParameter(mParameterSliders[i].mParameterIndex, mParameterSliders[i].mValue);
                                                                                                 ^
In file included from ../../../JUCE/modules/juce_audio_processors/juce_audio_processors.h:113:0,
                 from ../../Source/../JuceLibraryCode/JuceHeader.h:20,
                 from ../../Source/SynthGlobals.h:12,
                 from ../../Source/ChannelBuffer.h:12,
                 from ../../Source/IAudioReceiver.h:12,
                 from ../../Source/IAudioProcessor.h:13,
                 from ../../Source/VSTPlugin.h:12,
                 from ../../Source/VSTPlugin.cpp:9:
../../../JUCE/modules/juce_audio_processors/processors/juce_AudioProcessor.h:1132:18: note: declared here
     JUCE_DEPRECATED (virtual void setParameter (int parameterIndex, float newValue));
                  ^
Makefile:1384: recipe for target 'build/intermediate/Release/VSTPlugin_33bc53cb.o' failed
make: *** [build/intermediate/Release/VSTPlugin_33bc53cb.o] Error 1

[Linux] Crashing on open/save state.

Hi, another curious Linux user here.

When I try to load or save any state BespokeSynth crashes with:

Loading layout: ../Release/data/layouts/blank.json
JSON saved to ../Release/data/userprefs.json
LoadState() ../Release/data/layouts/seaboard.json
Bespoke: ../../Source/FileStream.cpp:100: FileStreamIn& FileStreamIn::operator>>(std::string&): Assertion `len < 99999' failed.

Segfault by insert curve into note effect

Steps:

Add notetransformer (may crash with other note effect too).
Add curve modulator.
Connect curve to notetransform.

Windows build affected too.
Backtrace:

Thread 1 "BespokeSynth" received signal SIGSEGV, Segmentation fault.
ModulatorCurve::Value (this=0x1350160, samplesIn=<optimized out>) at ../../Source/Slider.h:59
59         float& GetModulatorMax() { return mModulatorMax; }
Missing separate debuginfos, use: zypper install krb5-debuginfo-1.18.2-3.1.x86_64 libX11-6-debuginfo-1.6.9-2.1.x86_64 libXau6-debuginfo-1.0.9-1.6.x86_64 libXcursor1-debuginfo-1.2.0-1.4.x86_64 libXext6-debuginfo-1.3.4-1.6.x86_64 libXfixes3-debuginfo-5.0.3-1.10.x86_64 libXinerama1-debuginfo-1.1.4-1.7.x86_64 libXrandr-devel-debuginfo-1.5.2-1.6.x86_64 libXrender1-debuginfo-0.9.10-1.11.x86_64 libXss1-debuginfo-1.2.3-1.8.x86_64 libbrotlicommon1-debuginfo-1.0.7-4.1.x86_64 libbrotlidec1-debuginfo-1.0.7-4.1.x86_64 libbz2-1-debuginfo-1.0.8-2.19.x86_64 libcom_err2-debuginfo-1.45.6-1.18.x86_64 libcrypt1-debuginfo-4.4.15-1.19.x86_64 libcurl4-debuginfo-7.72.0-1.1.x86_64 libfreetype6-debuginfo-2.10.2-1.2.x86_64 libgcc_s1-debuginfo-10.2.1+git501-1.1.x86_64 libglvnd-debuginfo-1.2.0-4.3.x86_64 libidn2-0-debuginfo-2.3.0-3.1.x86_64 libkeyutils1-debuginfo-1.6-1.18.x86_64 libldap-2_4-2-debuginfo-2.4.51-55.1.x86_64 libnghttp2-14-debuginfo-1.41.0-1.2.x86_64 libopenssl1_1-debuginfo-1.1.1g-2.12.x86_64 libpcre1-debuginfo-8.44-1.18.x86_64 libpng16-16-debuginfo-1.6.37-1.6.x86_64 libpsl5-debuginfo-0.21.1-1.1.x86_64 libpython3_8-1_0-debuginfo-3.8.5-1.2.x86_64 libsasl2-3-debuginfo-2.1.27-3.4.x86_64 libselinux1-debuginfo-3.0-2.2.x86_64 libssh4-debuginfo-0.9.4-1.3.x86_64 libstdc++6-debuginfo-10.2.1+git501-1.1.x86_64 libunistring2-debuginfo-0.9.10-2.7.x86_64 libxcb-glx0-debuginfo-1.14-1.2.x86_64 libxcb-present0-debuginfo-1.14-1.2.x86_64 libxcb-sync1-debuginfo-1.14-1.2.x86_64 libxcb1-debuginfo-1.14-1.2.x86_64 libz1-debuginfo-1.2.11-14.1.x86_64
(gdb) bt
#0  ModulatorCurve::Value (this=0x1350160, samplesIn=<optimized out>) at ../../Source/Slider.h:59
#1  0x0000000000885320 in IModulator::Poll (this=<optimized out>) at ../../Source/IModulator.cpp:64
#2  0x00000000008a077a in ModularSynth::Poll (this=0x1358fa0) at ../../Source/ModularSynth.cpp:186
#3  0x0000000000889d6e in non-virtual thunk to MainContentComponent::timerCallback() () at ../../Source/FloatSliderLFOControl.h:70
#4  0x0000000000a52fd3 in juce::Timer::TimerThread::callTimers (this=0x133e900) at /usr/share/juce/modules/juce_events/timers/juce_Timer.cpp:114
#5  0x0000000000a5384a in juce::InternalMessageQueue::InternalMessageQueue()::{lambda(int)#1}::operator()(int) const (__closure=0x13307f8, fd=4) at /usr/share/juce/modules/juce_events/native/juce_linux_Messaging.cpp:43
#6  0x0000000000a518b2 in std::function<void (int)>::operator()(int) const (__args#0=<optimized out>, this=0x13307f8) at /usr/include/c++/10/bits/std_function.h:617
#7  juce::InternalRunLoop::dispatchPendingEvents (this=0x1330790) at /usr/share/juce/modules/juce_events/native/juce_linux_Messaging.cpp:169
#8  juce::MessageManager::dispatchNextMessageOnSystemQueue (returnIfNoPendingMessages=<optimized out>) at /usr/share/juce/modules/juce_events/native/juce_linux_Messaging.cpp:260
#9  0x0000000000a519d7 in juce::MessageManager::runDispatchLoop (this=0x1330720) at /usr/share/juce/modules/juce_events/messages/juce_MessageManager.cpp:128
#10 0x00000000004ef515 in juce::JUCEApplicationBase::main () at /usr/share/juce/modules/juce_events/messages/juce_ApplicationBase.cpp:262
#11 0x00007ffff727fcca in __libc_start_main (main=0x4d7a00 <main(int, char**)>, argc=1, argv=0x7fffffffdb58, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdb48) at ../csu/libc-start.c:308
#12 0x00000000004f1e4a in _start () at ../sysdeps/x86_64/start.S:120
(gdb)

Sampler not playing on Linux

I tried to build a simple sample->gain->out using a Youtube handle.
Everytime I press the play button I get a message trying to stop before we started :

[youtube:search] query "71l85z2bXAs": Downloading page 1
[download] Downloading playlist: 71l85z2bXAs
[youtube:search] playlist 71l85z2bXAs: Collected 1 video ids (downloading 1 of them)
[download] Downloading video 1 of 1
[youtube] 71l85z2bXAs: Downloading webpage
[download] Papa Was A Rollin' Stone does not pass filter duration < 610, skipping ..
[download] Finished downloading playlist: 71l85z2bXAs
�113.93: trying to stop before we started (113930<=113930)
115.21: trying to stop before we started (115210<=115210)
116.069: trying to stop before we started (116069<=116069)
116.223: trying to stop before we started (116223<=116223)
116.559: trying to stop before we started (116559<=116559)
116.986: trying to stop before we started (116986<=116986)
117.157: trying to stop before we started (117157<=117157)
117.34: trying to stop before we started (117340<=117340)
117.552: trying to stop before we started (117552<=117552)
117.729: trying to stop before we started (117729<=117729)
118.231: trying to stop before we started (118231<=118231)
118.818: trying to stop before we started (118818<=118818)

Adding VST plugins stops engine.

Greetings Ryan,

I found that adding VST plugin on canvas immediately stops transport. So everything become silent. No animation. Any events (keys from MIDI or scripts) are ignored. While interface still responsive newly loaded state is inactive too. Only way is to restart BespokeSynth.

It's on Linux. Is there any way to debug such behaviour?

Missing json files?

I'm getting some crashes that seems to be related to missing files :

868.221: Could not load file /home/djdeath/src/BespokeSynth/Builds/MacOSX/build/Release/data/controllers/osccontroller.json

BespokeSynth.lv2? (was JUCE6?)

Might a move to JUCE 6 be on the cards? With JUCE 5 and the Projucer manual resave requirement, there's no way to automate the build atm.

startup error with audio device

I have an odd problem with Bespoke now. The laptop is up to date and running fine, Bespoke works without troubles there. On the desktop box I get this when I start the program:

error initializing audio device: device didn't start

Both systems are set up with Jack via the PulseAudio sink, which doesn't seem to cause any issues elsewhere. Will the userprefs.json file accept anything other than "auto" for its audio device ?

Deleting pinned LFO Module makes it impossible to bring back up

Steps to reproduce:

  1. add LFO to a slider and pin the LFO module. Change the high and/or low values
  2. select the LFO module and delete it
  3. Right click the slider again

You'll see that no LFO menu comes up when the slider is right clicked again, but the LFO is still active for the slider

Platform: Windows 10

Crash on Linux

Sorry, I didn't save the thing that created this crash, hopefully the backtrace sheds some light on what went wrong :

Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x0000565195aec372 in EffectChain::Process (this=0x565197a07580, time=3520822.4058407834) at ../../Source/EffectChain.cpp:146
146	../../Source/EffectChain.cpp: No such file or directory.
[Current thread is 1 (LWP 243921)]
(gdb) bt
#0  0x0000565195aec372 in EffectChain::Process (this=0x565197a07580, time=3520822.4058407834) at ../../Source/EffectChain.cpp:146
#1  0x0000565195c3ab82 in ModularSynth::AudioOut (this=0x565197330270, output=0x7f6b5c813e50, bufferSize=128, nChannels=8)
    at ../../Source/ModularSynth.cpp:1105
#2  0x0000565195cbade3 in juce::AudioDeviceManager::audioDeviceIOCallbackInt (this=0x56519732ff30, inputChannelData=0x7f6b50001830, numInputChannels=8, 
    outputChannelData=0x7f6b5c813e50, numOutputChannels=8, numSamples=128)
    at /home/awwbees/JUCE/modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp:812
#3  0x0000565195cb562e in juce::(anonymous namespace)::ALSAThread::run (this=0x7f6b5c7a38d0)
    at /home/awwbees/JUCE/modules/juce_audio_devices/native/juce_linux_ALSA.cpp:716
#4  0x0000565195d90d41 in juce::Thread::threadEntryPoint (this=0x7f6b5c7a38d0) at /home/awwbees/JUCE/modules/juce_core/threads/juce_Thread.cpp:98
#5  0x0000565195d90ed9 in juce::juce_threadEntryPoint (userData=<optimized out>) at /home/awwbees/JUCE/modules/juce_core/threads/juce_Thread.cpp:121
#6  juce::threadEntryProc (userData=<optimized out>) at /home/awwbees/JUCE/modules/juce_core/native/juce_posix_SharedCode.h:834
#7  0x00007f6bb10adea7 in ?? ()
#8  0x0000000000000000 in ?? ()

Can get any sound out of it.

On Mac Catalina. Probably a Security thing but can't figure out what or where.

The app itself says "Can't find or load data/userprefs.js ... Again the same....

Best way to update ?

Hello,
After downloading last version, i try to load state from old version, this crash Beskope, so i copy my "savestate" folder in the new data folder, some works ,some crash.
Is there others things to copy to use old state ?
thanks

Circle Sequencer Click Area Issue

I don't know if this the intended behavior of the Circle Sequencer, but where you need to click doesn't line up with where the marks are:
odd

I'm running this on Windows 10 in case that is useful.

Option for audio device settings.

Hi,
BespokeSynth uses default audio device, if i understand correctly.
It will be great to have simple option to select which device to use for input/output. Maybe at first it can be done in userprefs.json :)

build fail [SOLVED]

Hmm, maybe a lib isn't getting linked ?

Linking BespokeSynth - App
build/intermediate/Release/Push2-Usb-Communicator_2ebfaa0a.o: In function `ableton::UsbCommunicator::PollUsbForEvents()':
Push2-Usb-Communicator.cpp:(.text+0x3d): undefined reference to `libusb_handle_events_timeout_completed'
build/intermediate/Release/Push2-Usb-Communicator_2ebfaa0a.o: In function `ableton::UsbCommunicator::sendNextSlice(libusb_transfer*)':
Push2-Usb-Communicator.cpp:(.text+0x3f6): undefined reference to `libusb_submit_transfer'
Push2-Usb-Communicator.cpp:(.text+0x452): undefined reference to `libusb_submit_transfer'
build/intermediate/Release/Push2-Usb-Communicator_2ebfaa0a.o: In function `ableton::UsbCommunicator::startSending()':
Push2-Usb-Communicator.cpp:(.text+0x6b1): undefined reference to `libusb_alloc_transfer'
Push2-Usb-Communicator.cpp:(.text+0x710): undefined reference to `libusb_alloc_transfer'
build/intermediate/Release/Push2-Usb-Communicator_2ebfaa0a.o: In function `ableton::UsbCommunicator::Init(unsigned short const*)':
Push2-Usb-Communicator.cpp:(.text+0x810): undefined reference to `libusb_init'
Push2-Usb-Communicator.cpp:(.text+0x824): undefined reference to `libusb_set_debug'
Push2-Usb-Communicator.cpp:(.text+0x830): undefined reference to `libusb_get_device_list'
Push2-Usb-Communicator.cpp:(.text+0x8c5): undefined reference to `libusb_get_device_descriptor'
Push2-Usb-Communicator.cpp:(.text+0x8fd): undefined reference to `libusb_open'
Push2-Usb-Communicator.cpp:(.text+0x911): undefined reference to `libusb_claim_interface'
Push2-Usb-Communicator.cpp:(.text+0x941): undefined reference to `libusb_close'
Push2-Usb-Communicator.cpp:(.text+0xbe7): undefined reference to `libusb_free_device_list'
collect2: error: ld returned 1 exit status
Makefile:385: recipe for target 'build/BespokeSynth' failed
make: *** [build/BespokeSynth] Error 1

[Linux] BespokeSynth only works well when compiling in Debug mode.

I try to compile from source on Arch Linux. If I compile in Release mode, the computer keyboard is not really responsive. For instance, the popup menu won't show up every time when I press 'k'. Another wired thing is that BespokeSynth has no sound in JACK and only has sound in pulseAudio. I also get some messages from terminal:

44.8387: trying to stop before we started (44845<=44845)
45.5121: trying to stop before we started (45517.6<=45517.6)
47.5322: trying to stop before we started (47535.4<=47535.4)
48.2056: trying to stop before we started (48208<=48208)

I also try the latest v0.0004-pre binary version, but it has the same issues.

Note: If I compile in Debug mode, I have no issue. Extremely AWESOME!

[Windows] Bespoke exiting when opening sample Fubbles .bsk (filesystem encoding error)

Using the v0.0004-pre Windows installer from https://github.com/awwbees/BespokeSynth/releases/download/v0.0004-pre/Bespoke-Windows.zip

Repro steps I followed:

  • On Windows 10 x64 (French, maybe related?)
  • Launch Bespoke-Windows\BespokeSynth.exe
  • Attach Visual Studio 2017
  • Click "load state", then browse to Bespoke-Windows\data\savestate\2020-08-18_00-39_fubbles_script_demo.bsk
  • BespokeSynth quits
  • Excerpt from the output in Visual Studio:

'BespokeSynth.exe' (Win32): Unloaded 'C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.18362.959_none_17b2aea46d9edc89\GdiPlus.dll'
'BespokeSynth.exe' (Win32): Unloaded 'C:\Windows\System32\sendmail.dll'
The thread 0x3194 has exited with code 0 (0x0).
The thread 0x3084 has exited with code 0 (0x0).
The thread 0xffc has exited with code 0 (0x0).
'BespokeSynth.exe' (Win32): Unloaded 'C:\Windows\System32\msftedit.dll'
'BespokeSynth.exe' (Win32): Loaded 'C:\Windows\System32\zipfldr.dll'. Cannot find or open the PDB file.
The thread 0x2cfc has exited with code 0 (0x0).
Fatal Python error: failed to get the Python codec of the filesystem encoding
The thread 0x770 has exited with code 1 (0x1).
The thread 0x3638 has exited with code 1 (0x1).
The thread 0x3624 has exited with code 1 (0x1).

Macroslider segfaults on self-connect.

Add macroslider, grab connection from any output, drop in same output.
I know that there is no reason to do that but it can be catch easy with touchpad.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.