MolecularNodes
MolecularNodes copied to clipboard
DOC: Blender 4.0.1 default spheres for large systems
We discussed this a bit on the MDAnalysis discord, but this reproducer is actually different than the real system behavior, but likely problematic nonetheless. I'm providing an MDAnalysis-based Python module that can be used to generate the synthetic data, which can then be loaded into Blender 4.0.1
on MacOS ARM64 (32 GB), and causes a Blender crash in my hands. In fact, I'm not so sure it is a memory related crash in this particular case, so there may be a few things to fix to handle synthetic data like this before I figure out how to reproduce the original memory problem, which may be topology-specific (not sure yet).
Load the output of the following into Molecular Nodes in Blender with .gro
as top file, and .xtc
as traj file, using presets and no specific selections active. The crash might even come from excessive duplication of the same atoms, not sure, but it looks different from my original hangs.
import MDAnalysis as mda
from MDAnalysis.coordinates.XTC import XTCWriter
from MDAnalysisTests.datafiles import GRO
from tqdm import tqdm
def main():
# the genuine reproducer had 13.7 M atoms
u = mda.Universe(GRO)
# this test system only has 47,681 atoms
# so the synthetic reproducer will be built up
# by concatenation
ratio = int(13.7e6 / u.atoms.n_atoms)
ag = u.atoms
for i in tqdm(range(ratio)):
ag += u.atoms
print(f"final ag atom count: {ag.n_atoms}")
ag.write("synthetic_repro.gro")
# produce a traj with 100 frames to match the real scenario
writer = XTCWriter("synthetic_repro.xtc",
ag.n_atoms,
convert_units=True,
precision=3)
for i in tqdm(range(100)):
writer.write(ag)
if __name__ == "__main__":
main()
If degeneracy (duplicate coords) is the root cause (and not size alone), I suppose you might just want to error out on that, to at least guard against a hard crash.
I had a play around on both my M2 Pro and my Windows PC, neither crashed when working with the system, and both maintained fairly stable RAM usage when playing back through the trajectory, even when applying different styles. I didn't try the EEVEE
Spheres, as this would definitely cause issues & potentially crash when dealing with that many instances.
Can you give more details about what your Geometry Nodes / Molecular Nodes setup is? What styles are you applying, when does the crash happen (during import / playback etc)?
Crash was during import, I think Eevee is the default until the user changes it, though render view shouldn’t be active. I’ve had more crashes with 4.x than 3.6 LTS.
Maybe I can get more info from a console log somehow? It is definitely reproducible in 4.0.1.
On Sun, Dec 3, 2023 at 20:04 Brady Johnston @.***> wrote:
I had a play around on both my M2 Pro and my Windows PC, neither crashed when working with the system, and both maintained fairly stable RAM usage when playing back through the trajectory, even when applying different styles. I didn't try the EEVEE Spheres, as this would definitely cause issues & potentially crash when dealing with that many instances.
Can you give more details about what your Geometry Nodes / Molecular Nodes setup is? What styles are you applying, when does the crash happen (during import / playback etc)?
— Reply to this email directly, view it on GitHub https://github.com/BradyAJohnston/MolecularNodes/issues/372#issuecomment-1837765376, or unsubscribe https://github.com/notifications/unsubscribe-auth/AB4JOZTL2XB5MVGNYAFWFPDYHU4TNAVCNFSM6AAAAABADD2MR2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMZXG43DKMZXGY . You are receiving this because you authored the thread.Message ID: @.***>
I'm still having 100 % success rate with reproducing the crash with Blender 4.0.1
, so I'll paste the logs below the fold. I'll try to take a look myself in the next few days to see if I can help, but type 11 segfault is a memory issue it seems? Anything look different about our setups beyond that? My M2 max and your M2 pro should be super similar behavior I would think..
MacOS detailed crash report
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Process: Blender [94717]
Path: /Applications/Blender.app/Contents/MacOS/Blender
Identifier: org.blenderfoundation.blender
Version: 4.0.1 (4.0.1 2023-11-17)
Code Type: ARM-64 (Native)
Parent Process: zsh [33990]
Responsible: Terminal [857]
User ID: 28751
Date/Time: 2023-12-04 12:45:48.5281 -0700
OS Version: macOS 13.6.2 (22G320)
Report Version: 12
Anonymous UUID: F7404F57-7BF0-7108-6B17-6A85C29106A1
Sleep/Wake UUID: 1A32D710-3503-47E6-9262-DE5E885AEA98
Time Awake Since Boot: 96000 seconds
Time Since Wake: 11721 seconds
System Integrity Protection: enabled
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0xffffffff7fffffe0
Exception Codes: 0x0000000000000001, 0xffffffff7fffffe0
Termination Reason: Namespace SIGNAL, Code 11 Segmentation fault: 11
Terminating Process: exc handler [94717]
VM Region Info: 0xffffffff7fffffe0 is not in any region. Bytes after previous region: 18446638517908930529
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-/rwx SM=NUL ...(unallocated)
--->
UNUSED SPACE AT END
Kernel Triage:
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
VM - (arg = 0x0) pmap_enter retried due to resource shortage
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_platform.dylib 0x19a1ee848 _platform_memmove + 520
1 Blender 0x105d193f8 blender::gpu::MTLStorageBuf::update(void const*) + 296
2 Blender 0x101a09b64 blender::draw::Manager::end_sync() + 52
3 Blender 0x101a0cba8 DRW_draw_render_loop_ex + 936
4 Blender 0x102731b50 view3d_main_region_draw + 220
5 Blender 0x101dbe57c ED_region_do_draw(bContext*, ARegion*) + 760
6 Blender 0x1018752c0 wm_draw_update(bContext*) + 1612
7 Blender 0x101871324 WM_main(bContext*) + 52
8 Blender 0x10117ed80 main + 860
9 dyld 0x199e67f28 start + 2236
Thread 1:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 2:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 3:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 4:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 5:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 6:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 7:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 8:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 9:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 10:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 11:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libdispatch.dylib 0x19a01099c _dispatch_sema4_wait + 28
2 libdispatch.dylib 0x19a011050 _dispatch_semaphore_wait_slow + 132
3 libIlmThread.dylib 0x10fda6de8 IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>) + 52
4 libIlmThread.dylib 0x10fda70a4 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*) + 92
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 12:: caulk.messenger.shared:17
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 caulk 0x1a37fb024 caulk::semaphore::timed_wait(double) + 212
2 caulk 0x1a37faed8 caulk::concurrent::details::worker_thread::run() + 36
3 caulk 0x1a37fabc8 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*) + 96
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 13:: com.apple.audio.IOThread.client
0 libsystem_kernel.dylib 0x19a17ff34 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x19a192260 mach_msg2_internal + 80
2 libsystem_kernel.dylib 0x19a188b98 mach_msg_overwrite + 604
3 libsystem_kernel.dylib 0x19a1802b0 mach_msg + 24
4 CoreAudio 0x19c5ac634 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 104
5 CoreAudio 0x19c499d24 HALC_ProxyIOContext::IOWorkLoop() + 3516
6 CoreAudio 0x19c49888c invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 116
7 CoreAudio 0x19c5fb574 HALB_IOThread::Entry(void*) + 88
8 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
9 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 14:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 15:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 16:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 17:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 18:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 19:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 20:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 21:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 22:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 23:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 24:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libc++.1.dylib 0x19a0e8ef0 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28
3 libOpenImageIO_Util.dylib 0x1101e3904 OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const + 164
4 libOpenImageIO_Util.dylib 0x1101e3768 void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*) + 52
5 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
6 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 25:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 26:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 27:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 28:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 29:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 30:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 31:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 32:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 33:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 34:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 35:
0 libsystem_kernel.dylib 0x19a183730 __psynch_cvwait + 8
1 libsystem_pthread.dylib 0x19a1c0574 _pthread_cond_wait + 1232
2 libopenblas.0.dylib 0x28435d930 blas_thread_server + 360
3 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
4 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 36:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 37:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 38:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 39:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 40:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 41:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 42:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 43:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 44:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 45:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 46:
0 libsystem_kernel.dylib 0x19a17feb0 semaphore_wait_trap + 8
1 libtbb.dylib 0x10fdd5ffc rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&) + 64
2 libtbb.dylib 0x10fdd5bb4 tbb::internal::rml::private_worker::run() + 420
3 libtbb.dylib 0x10fdd5a04 tbb::internal::rml::private_worker::thread_routine(void*) + 12
4 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
5 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 47:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x19a17ff34 mach_msg2_trap + 8
1 libsystem_kernel.dylib 0x19a192260 mach_msg2_internal + 80
2 libsystem_kernel.dylib 0x19a188b98 mach_msg_overwrite + 604
3 libsystem_kernel.dylib 0x19a1802b0 mach_msg + 24
4 CoreFoundation 0x19a29e754 __CFRunLoopServiceMachPort + 160
5 CoreFoundation 0x19a29d034 __CFRunLoopRun + 1208
6 CoreFoundation 0x19a29c428 CFRunLoopRunSpecific + 612
7 AppKit 0x19d5edf54 _NSEventThread + 172
8 libsystem_pthread.dylib 0x19a1bffa8 _pthread_start + 148
9 libsystem_pthread.dylib 0x19a1bada0 thread_start + 8
Thread 48:
0 libsystem_pthread.dylib 0x19a1bad8c start_wqthread + 0
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x00000006e0000020 x2: 0xffffffff7fffffe0 x3: 0xffffffff7fffffe0
x4: 0xffffffff80000000 x5: 0x0000000000000020 x6: 0x0000000000000000 x7: 0x0000000000000000
x8: 0x000000013ef1c510 x9: 0x0000000000000002 x10: 0x0000000000000000 x11: 0x0000000000000002
x12: 0x0000000169803f84 x13: 0x0000000000000017 x14: 0x0000000169800000 x15: 0x0000000000000000
x16: 0x000000019a1ee640 x17: 0x00000001f9d70c88 x18: 0x0000000000000000 x19: 0x0000600002270d28
x20: 0x0000000760000040 x21: 0x0000000000000002 x22: 0x000000010c6bc780 x23: 0x000000010c6bc760
x24: 0x0000000000000000 x25: 0x000000010c6bc000 x26: 0x00000000000000c3 x27: 0x0000000000000003
x28: 0x000000010c6bc9f0 fp: 0x000000016ee32a80 lr: 0x0000000105d193f8
sp: 0x000000016ee32a60 pc: 0x000000019a1ee848 cpsr: 0xa0001000
far: 0xffffffff7fffffe0 esr: 0x92000044 (Data Abort) byte write Translation fault
Binary Images:
0x100fcc000 - 0x10bb9bfff org.blenderfoundation.blender (4.0.1) <e6e8b13a-1909-3730-9e63-7882b4b103af> /Applications/Blender.app/Contents/MacOS/Blender
0x10fe1c000 - 0x10fe7ffff libomp.dylib (*) <ab1fadc1-903c-3c36-8438-ce0fe19bed46> /Applications/Blender.app/Contents/Resources/lib/libomp.dylib
0x10fdc4000 - 0x10fde3fff libtbb.dylib (*) <cb394e8c-9c52-37c6-9022-fd990fd35d7b> /Applications/Blender.app/Contents/Resources/lib/libtbb.dylib
0x10ffb4000 - 0x11004bfff libosdGPU.dylib (*) <4731deac-271c-3ffa-a784-1db25c099939> /Applications/Blender.app/Contents/Resources/lib/libosdGPU.dylib
0x1100b4000 - 0x11013ffff libosdCPU.dylib (*) <8271d479-dfd6-3eaa-bcc1-736d265872f9> /Applications/Blender.app/Contents/Resources/lib/libosdCPU.dylib
0x110fa4000 - 0x111983fff libembree4.dylib (*) <d86170d4-9c85-3e7e-b24a-a57248f6de2a> /Applications/Blender.app/Contents/Resources/lib/libembree4.dylib
0x111de4000 - 0x11246bfff libOpenImageIO.dylib (*) <9ddc4613-7bbf-37b5-a67f-e624e089cd4e> /Applications/Blender.app/Contents/Resources/lib/libOpenImageIO.dylib
0x110184000 - 0x1101fffff libOpenImageIO_Util.dylib (*) <cb29c953-f7bb-3aef-a3fd-5849616d62a3> /Applications/Blender.app/Contents/Resources/lib/libOpenImageIO_Util.dylib
0x11085c000 - 0x110bf7fff libOpenColorIO.dylib (*) <681f7251-f3c3-3cf3-81d0-c52ad49a94a4> /Applications/Blender.app/Contents/Resources/lib/libOpenColorIO.dylib
0x10ff08000 - 0x10ff2ffff libboost_python310.dylib (*) <8dc70c62-1e81-3c55-a828-38772a0f8b8f> /Applications/Blender.app/Contents/Resources/lib/libboost_python310.dylib
0x1102a0000 - 0x1102d3fff libMaterialXFormat.dylib (*) <636bb672-8a7a-3eb2-8971-379a45d7409d> /Applications/Blender.app/Contents/Resources/lib/libMaterialXFormat.dylib
0x1103d4000 - 0x110447fff libMaterialXCore.dylib (*) <ba31ab31-698f-3450-9126-1fa90e0f2acb> /Applications/Blender.app/Contents/Resources/lib/libMaterialXCore.dylib
0x115090000 - 0x1165cbfff libusd_ms.dylib (*) <59a48536-bd6a-308e-b142-547083bde8bc> /Applications/Blender.app/Contents/Resources/lib/libusd_ms.dylib
0x11af98000 - 0x11c687fff libopenvdb.dylib (*) <896f40b8-9c63-3c0e-ac5b-4f268176047c> /Applications/Blender.app/Contents/Resources/lib/libopenvdb.dylib
0x110594000 - 0x1105fbfff libIex.dylib (*) <32e1b904-123b-3d56-ba7a-ad7c29eb8c55> /Applications/Blender.app/Contents/Resources/lib/libIex.dylib
0x112e10000 - 0x11309bfff libOpenEXR.dylib (*) <c87aa12f-eb66-3dcc-9d71-f4d427be7e2c> /Applications/Blender.app/Contents/Resources/lib/libOpenEXR.dylib
0x1104ac000 - 0x110527fff libOpenEXRCore.dylib (*) <bf418d11-173e-3fad-9f5d-ff0bcd4af8af> /Applications/Blender.app/Contents/Resources/lib/libOpenEXRCore.dylib
0x10fda0000 - 0x10fda7fff libIlmThread.dylib (*) <d4c9744b-1d84-397d-8274-9e24e1fb928e> /Applications/Blender.app/Contents/Resources/lib/libIlmThread.dylib
0x1102fc000 - 0x110347fff libImath.dylib (*) <9d93e231-1897-3dc8-bc24-fd335af5efb6> /Applications/Blender.app/Contents/Resources/lib/libImath.dylib
0x10fd90000 - 0x10fd93fff libboost_date_time.dylib (*) <e016fca7-87ee-3d62-b75c-9edd1da5cb81> /Applications/Blender.app/Contents/Resources/lib/libboost_date_time.dylib
0x10ff58000 - 0x10ff6bfff libboost_filesystem.dylib (*) <78128f3e-0f02-3176-9305-6b0f7d991e06> /Applications/Blender.app/Contents/Resources/lib/libboost_filesystem.dylib
0x11067c000 - 0x1106b7fff libboost_regex.dylib (*) <354a43e8-3246-33ba-bdee-ed39d0e6ac0b> /Applications/Blender.app/Contents/Resources/lib/libboost_regex.dylib
0x10fe04000 - 0x10fe07fff libboost_system.dylib (*) <d77553f9-42f6-3d7a-8634-612da23caaa9> /Applications/Blender.app/Contents/Resources/lib/libboost_system.dylib
0x10fedc000 - 0x10fee7fff libboost_thread.dylib (*) <10f833aa-0210-37f9-82ab-5748ad4d22f4> /Applications/Blender.app/Contents/Resources/lib/libboost_thread.dylib
0x11310c000 - 0x1131d3fff libboost_wave.dylib (*) <1a824ed6-22ea-38b4-a6d1-8ab528bcfc73> /Applications/Blender.app/Contents/Resources/lib/libboost_wave.dylib
0x11077c000 - 0x1107cffff libboost_locale.dylib (*) <77cbe9a2-df0b-3d43-af3c-9750fd7a12c8> /Applications/Blender.app/Contents/Resources/lib/libboost_locale.dylib
0x10ff84000 - 0x10ff8bfff libboost_iostreams.dylib (*) <adcdda11-da89-33a2-8650-483e36d02f0b> /Applications/Blender.app/Contents/Resources/lib/libboost_iostreams.dylib
0x110358000 - 0x11035bfff libboost_chrono.dylib (*) <8944fd7a-dfd8-3ad2-b8d6-6f42a91ae307> /Applications/Blender.app/Contents/Resources/lib/libboost_chrono.dylib
0x11036c000 - 0x11036ffff libboost_atomic.dylib (*) <22201547-32c7-393d-b0f8-e55c2b2c97c5> /Applications/Blender.app/Contents/Resources/lib/libboost_atomic.dylib
0x110e1c000 - 0x110e3ffff libboost_serialization.dylib (*) <7e0d9013-c728-3315-8d6a-53275bfe33d6> /Applications/Blender.app/Contents/Resources/lib/libboost_serialization.dylib
0x110e84000 - 0x110eebfff libMaterialXRender.dylib (*) <edd09303-4461-3d46-9995-a88a65fe659d> /Applications/Blender.app/Contents/Resources/lib/libMaterialXRender.dylib
0x110f1c000 - 0x110f57fff libMaterialXGenGlsl.dylib (*) <4fa3272e-ffb3-3f8f-9ce8-2d6f57a5188b> /Applications/Blender.app/Contents/Resources/lib/libMaterialXGenGlsl.dylib
0x112bd4000 - 0x112c3bfff libMaterialXGenShader.dylib (*) <c5c3a78e-bab3-3a09-81b8-90243b4ef835> /Applications/Blender.app/Contents/Resources/lib/libMaterialXGenShader.dylib
0x114c70000 - 0x114da3fff com.apple.audio.units.Components (1.14) <c775db32-d8a6-3e08-97ee-42f05005c1b7> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x1148b8000 - 0x1148c3fff libobjc-trampolines.dylib (*) <106e99a0-0b8d-34fb-ad61-91eca3d8285c> /usr/lib/libobjc-trampolines.dylib
0x11ed20000 - 0x11ed3ffff com.apple.security.csparser (3.0) <af79a0fa-e8a1-3134-bee8-c9567ed1e971> /System/Library/Frameworks/Security.framework/Versions/A/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x11ece8000 - 0x11ecf3fff math.cpython-310-darwin.so (*) <4957c3e0-f132-3297-a059-ea3daa6d9942> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/math.cpython-310-darwin.so
0x11ed08000 - 0x11ed0bfff _opcode.cpython-310-darwin.so (*) <419ee335-6a90-35dc-9792-fea56e9cb70c> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_opcode.cpython-310-darwin.so
0x11ed88000 - 0x11ed9bfff _datetime.cpython-310-darwin.so (*) <02c4b64d-97dd-35cc-85e1-52172322240b> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_datetime.cpython-310-darwin.so
0x16ea20000 - 0x16eb2bfff unicodedata.cpython-310-darwin.so (*) <0daa5dea-8162-32dc-ac26-672cd456a349> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/unicodedata.cpython-310-darwin.so
0x11ed5c000 - 0x11ed5ffff _heapq.cpython-310-darwin.so (*) <be92244f-86d4-3fa9-94b5-54055e2250cc> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_heapq.cpython-310-darwin.so
0x11edd8000 - 0x11ede7fff _socket.cpython-310-darwin.so (*) <b77c5df6-6798-3b52-b185-4c3d835c5c44> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_socket.cpython-310-darwin.so
0x11ed70000 - 0x11ed77fff select.cpython-310-darwin.so (*) <2d0ac23a-e6f9-3c59-8357-65a9d4813a8d> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/select.cpython-310-darwin.so
0x11edb4000 - 0x11edbffff array.cpython-310-darwin.so (*) <853e90bf-52cb-3b55-992c-6ffe81990d76> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/array.cpython-310-darwin.so
0x11ff7c000 - 0x11ff7ffff fcntl.cpython-310-darwin.so (*) <14c4db3d-9222-3ab1-8783-284949975f44> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/fcntl.cpython-310-darwin.so
0x11ff90000 - 0x11ff93fff _posixsubprocess.cpython-310-darwin.so (*) <2cd94cfa-1fb4-3de6-9d8a-0050d7f29dac> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_posixsubprocess.cpython-310-darwin.so
0x280cdc000 - 0x28107bfff _ssl.cpython-310-darwin.so (*) <a0216b06-8112-39ce-aa60-91c7ba55ba24> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_ssl.cpython-310-darwin.so
0x11ffa4000 - 0x11ffabfff _struct.cpython-310-darwin.so (*) <38978966-6c95-3783-a1a2-7bd5ba1e8cd2> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_struct.cpython-310-darwin.so
0x11ffc0000 - 0x11ffc7fff binascii.cpython-310-darwin.so (*) <d4da6934-0d06-3e98-ba0c-9a101312c0bd> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/binascii.cpython-310-darwin.so
0x11ffd8000 - 0x11ffdbfff _contextvars.cpython-310-darwin.so (*) <abd92f5e-398c-3e53-aa9e-13fd54eb2973> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_contextvars.cpython-310-darwin.so
0x12ff10000 - 0x12ff1bfff _asyncio.cpython-310-darwin.so (*) <713124c3-93b5-36c5-915b-2aec0d39f6f7> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_asyncio.cpython-310-darwin.so
0x12ff30000 - 0x12ff37fff _json.cpython-310-darwin.so (*) <7abcd9f8-be9e-3988-aec0-0bf47ee3ce6d> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_json.cpython-310-darwin.so
0x2811b8000 - 0x281487fff _multiarray_umath.cpython-310-darwin.so (*) <6b2e4631-da68-32aa-a167-45384a3a31a0> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/core/_multiarray_umath.cpython-310-darwin.so
0x12ff78000 - 0x12ff8ffff _pickle.cpython-310-darwin.so (*) <3d42ce55-ce21-36ce-8432-2cb30af10798> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_pickle.cpython-310-darwin.so
0x12ffa8000 - 0x12ffbbfff _multiarray_tests.cpython-310-darwin.so (*) <7c1eb455-bbe8-33b5-90c4-35d628451d70> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/core/_multiarray_tests.cpython-310-darwin.so
0x13ed58000 - 0x13ed7bfff _ctypes.cpython-310-darwin.so (*) <59aeb87b-2bc9-38d4-9454-7b0a0792ebc3> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_ctypes.cpython-310-darwin.so
0x13ed98000 - 0x13edaffff _umath_linalg.cpython-310-darwin.so (*) <d8b00d95-5577-34ed-91b3-a5b26c903c5b> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/linalg/_umath_linalg.cpython-310-darwin.so
0x12ff48000 - 0x12ff57fff _pocketfft_internal.cpython-310-darwin.so (*) <92b91810-5d65-313f-9ca7-49bb5dd12f6c> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/fft/_pocketfft_internal.cpython-310-darwin.so
0x16ff10000 - 0x16ff77fff mtrand.cpython-310-darwin.so (*) <72e5a6dc-0c7f-397f-b6d2-55149c6a6775> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/mtrand.cpython-310-darwin.so
0x14e970000 - 0x14e98ffff bit_generator.cpython-310-darwin.so (*) <56c4b70a-47b9-31c9-b0b6-92854af124e6> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/bit_generator.cpython-310-darwin.so
0x16deac000 - 0x16dedbfff _common.cpython-310-darwin.so (*) <41906d80-c8d1-39f6-b2af-e98c59368ebf> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_common.cpython-310-darwin.so
0x2819bc000 - 0x281cabfff _hashlib.cpython-310-darwin.so (*) <0963246e-e9ca-3b1d-bb2b-8e69b91dd9a8> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_hashlib.cpython-310-darwin.so
0x12ffd8000 - 0x12ffdffff _blake2.cpython-310-darwin.so (*) <3a059868-82bc-3dc6-b99e-d9606547f3cb> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_blake2.cpython-310-darwin.so
0x11ffec000 - 0x11ffeffff _bisect.cpython-310-darwin.so (*) <df158113-da43-3e8d-8fa1-23df7f1a97a9> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_bisect.cpython-310-darwin.so
0x13ed18000 - 0x13ed1bfff _random.cpython-310-darwin.so (*) <401f2088-7aa3-3d46-9c8a-495b7a0886a1> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_random.cpython-310-darwin.so
0x13ed2c000 - 0x13ed2ffff _sha512.cpython-310-darwin.so (*) <f7a98436-7b74-39e7-a99b-757387b6f1be> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_sha512.cpython-310-darwin.so
0x16eba0000 - 0x16ebe3fff _bounded_integers.cpython-310-darwin.so (*) <31b80dc6-66db-3ce1-ae47-f7ce5ff614ae> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_bounded_integers.cpython-310-darwin.so
0x14e9ac000 - 0x14e9bbfff _mt19937.cpython-310-darwin.so (*) <17f2b8a3-e346-31e6-b177-cb04daacd6a6> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_mt19937.cpython-310-darwin.so
0x14e9d0000 - 0x14e9dffff _philox.cpython-310-darwin.so (*) <2284e618-fb90-37ce-a02e-d37860e8521c> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_philox.cpython-310-darwin.so
0x16eb40000 - 0x16eb4ffff _pcg64.cpython-310-darwin.so (*) <9205d7eb-a870-3994-b75e-847bb47f91e3> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_pcg64.cpython-310-darwin.so
0x13edcc000 - 0x13edd3fff _sfc64.cpython-310-darwin.so (*) <5392329a-a175-3ea0-b87a-40e7490151f1> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_sfc64.cpython-310-darwin.so
0x280bd8000 - 0x280c5bfff _generator.cpython-310-darwin.so (*) <c0153baa-2e7a-3a4f-8c98-dbba96beb65c> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/random/_generator.cpython-310-darwin.so
0x16ed00000 - 0x16ed1bfff _bz2.cpython-310-darwin.so (*) <bc5bc4f6-8100-3a09-9bd5-5133f977538d> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_bz2.cpython-310-darwin.so
0x16ffc8000 - 0x16ffdbfff zlib.cpython-310-darwin.so (*) <f9291176-ed9f-3f0a-a3c0-2e580f7780e4> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/zlib.cpython-310-darwin.so
0x280b48000 - 0x280b7bfff _lzma.cpython-310-darwin.so (*) <9d923253-f17d-37f2-a329-a65d1b7e30cd> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_lzma.cpython-310-darwin.so
0x13ed40000 - 0x13ed43fff _scproxy.cpython-310-darwin.so (*) <0593d4e6-4a80-3703-ad73-59392775fe6b> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_scproxy.cpython-310-darwin.so
0x280b00000 - 0x280b1ffff _cmsgpack.cpython-310-darwin.so (*) <b550a101-9d01-397f-ad9d-bdc5f6b5a1ee> /Users/USER/*/_cmsgpack.cpython-310-darwin.so
0x13ede8000 - 0x13edebfff lapack_lite.cpython-310-darwin.so (*) <cfbc89bb-b5a6-36d0-94d4-b7bce4e52526> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/site-packages/numpy/linalg/lapack_lite.cpython-310-darwin.so
0x281900000 - 0x28192bfff _cutil.cpython-310-darwin.so (*) <265dcb8d-1d27-37cc-86c9-07aad45d9082> /Users/USER/*/_cutil.cpython-310-darwin.so
0x16ea00000 - 0x16ea0ffff _transformations.cpython-310-darwin.so (*) <f0099789-8300-3216-9dab-0526180dc540> /Users/USER/*/_transformations.cpython-310-darwin.so
0x281948000 - 0x281973fff _augment.cpython-310-darwin.so (*) <2df927ab-af74-30f5-8aa2-37d37566c067> /Users/USER/*/_augment.cpython-310-darwin.so
0x281f00000 - 0x281f2ffff nsgrid.cpython-310-darwin.so (*) <a3ee7acc-42cd-3d38-b57e-f44c5bab11d5> /Users/USER/*/nsgrid.cpython-310-darwin.so
0x281fa0000 - 0x281fdbfff c_distances.cpython-310-darwin.so (*) <a6812d4c-e74c-3e5d-ad82-fbcb7bdd6215> /Users/USER/*/c_distances.cpython-310-darwin.so
0x280b90000 - 0x280ba3fff c_distances_openmp.cpython-310-darwin.so (*) <578d3a3f-aacc-3712-8ba6-56a4385639f2> /Users/USER/*/c_distances_openmp.cpython-310-darwin.so
0x282264000 - 0x2822a7fff libmdaxdr.cpython-310-darwin.so (*) <b75012ab-696a-3ea4-bbad-d10cb7ac0e79> /Users/USER/*/libmdaxdr.cpython-310-darwin.so
0x2817c4000 - 0x2817e3fff cython_util.cpython-310-darwin.so (*) <a00ce9cd-fc17-3dfe-b91d-f9a4e5a3fba4> /Users/USER/*/cython_util.cpython-310-darwin.so
0x2822cc000 - 0x282307fff libdcd.cpython-310-darwin.so (*) <c20c8fb7-d8b6-3d07-8364-80ee64ffb0b0> /Users/USER/*/libdcd.cpython-310-darwin.so
0x16eb64000 - 0x16eb6ffff _ccallback_c.cpython-310-darwin.so (*) <38eac972-64bc-37ee-8d51-f4b5a8de4ab5> /Users/USER/*/_ccallback_c.cpython-310-darwin.so
0x2823c4000 - 0x282443fff _ckdtree.cpython-310-darwin.so (*) <724daf7b-1929-36b5-992f-239e9bbc1d00> /Users/USER/*/_ckdtree.cpython-310-darwin.so
0x282840000 - 0x282b97fff _sparsetools.cpython-310-darwin.so (*) <a11bd8e5-2002-399e-a2d6-27188b2466ae> /Users/USER/*/_sparsetools.cpython-310-darwin.so
0x282568000 - 0x2825cbfff _csparsetools.cpython-310-darwin.so (*) <7d8fc776-5a4f-3080-a687-7e3b28e40a10> /Users/USER/*/_csparsetools.cpython-310-darwin.so
0x281f4c000 - 0x281f73fff _iterative.cpython-310-darwin.so (*) <fb563b39-4904-371b-9f72-4ef185e8315d> /Users/USER/*/_iterative.cpython-310-darwin.so
0x2841f0000 - 0x285607fff libopenblas.0.dylib (*) <7ec19e0c-d79b-3527-a672-0d1f29947537> /Users/USER/*/libopenblas.0.dylib
0x282c18000 - 0x282d67fff libgfortran.5.dylib (*) <ae3c441b-de1b-3bb8-8c6e-1a2411185d0e> /Users/USER/*/libgfortran.5.dylib
0x282324000 - 0x282363fff libquadmath.0.dylib (*) <81355d03-a464-3826-b89b-106d33d94d39> /Users/USER/*/libquadmath.0.dylib
0x16eb7c000 - 0x16eb8bfff libgcc_s.1.1.dylib (*) <ad4f9635-aa1c-370d-a9a6-8889ebb4d94b> /Users/USER/*/libgcc_s.1.1.dylib
0x28323c000 - 0x28328bfff _fblas.cpython-310-darwin.so (*) <bc09ec83-4262-30af-854d-3e2a14886eb5> /Users/USER/*/_fblas.cpython-310-darwin.so
0x28346c000 - 0x283563fff _flapack.cpython-310-darwin.so (*) <c5634766-a74e-35ce-8adb-da2ca0dd2812> /Users/USER/*/_flapack.cpython-310-darwin.so
0x2832c8000 - 0x28331bfff _cythonized_array_utils.cpython-310-darwin.so (*) <6b921222-a3b0-3a5a-9636-5b2bc681b2c0> /Users/USER/*/_cythonized_array_utils.cpython-310-darwin.so
0x283610000 - 0x28367bfff cython_lapack.cpython-310-darwin.so (*) <aa4fbd05-db9c-3cfa-a675-291ec408a1e7> /Users/USER/*/cython_lapack.cpython-310-darwin.so
0x282200000 - 0x282223fff _solve_toeplitz.cpython-310-darwin.so (*) <b0ded942-1247-37b9-bf1f-123e8ffbda19> /Users/USER/*/_solve_toeplitz.cpython-310-darwin.so
0x281eb4000 - 0x281ed3fff _decomp_lu_cython.cpython-310-darwin.so (*) <f78270f9-c64d-3df8-b359-10f56c207d32> /Users/USER/*/_decomp_lu_cython.cpython-310-darwin.so
0x282234000 - 0x282253fff _matfuncs_sqrtm_triu.cpython-310-darwin.so (*) <585c3f93-d639-383b-b61b-513828427eec> /Users/USER/*/_matfuncs_sqrtm_triu.cpython-310-darwin.so
0x2836b8000 - 0x2836f7fff _matfuncs_expm.cpython-310-darwin.so (*) <edc85e0d-647c-32ce-ab46-446abfe15283> /Users/USER/*/_matfuncs_expm.cpython-310-darwin.so
0x2831b0000 - 0x2831d3fff cython_blas.cpython-310-darwin.so (*) <d5263251-714e-3749-b658-8b0ba385bb71> /Users/USER/*/cython_blas.cpython-310-darwin.so
0x2831ec000 - 0x28321bfff _decomp_update.cpython-310-darwin.so (*) <e16414c5-8606-329a-b019-c611b9c4f20a> /Users/USER/*/_decomp_update.cpython-310-darwin.so
0x280bb4000 - 0x280bbffff _flinalg.cpython-310-darwin.so (*) <505f472c-6d68-3284-aa21-72552d09a611> /Users/USER/*/_flinalg.cpython-310-darwin.so
0x283760000 - 0x2837a3fff _superlu.cpython-310-darwin.so (*) <2d652d8d-e892-3474-9c15-c1c9ddfdbacf> /Users/USER/*/_superlu.cpython-310-darwin.so
0x283828000 - 0x28387bfff _arpack.cpython-310-darwin.so (*) <d34930a6-5fb3-3e2a-9609-dbde9bd3d68a> /Users/USER/*/_arpack.cpython-310-darwin.so
0x283898000 - 0x2838e3fff _shortest_path.cpython-310-darwin.so (*) <ca358fb6-ce7a-3d5b-97f8-7680a3042e79> /Users/USER/*/_shortest_path.cpython-310-darwin.so
0x28198c000 - 0x2819a7fff _tools.cpython-310-darwin.so (*) <79574cc3-4391-37a7-928b-2eaa6195d334> /Users/USER/*/_tools.cpython-310-darwin.so
0x2838f8000 - 0x28394bfff _traversal.cpython-310-darwin.so (*) <b0ad47cd-e6bd-3f61-9f6e-d4ad0f42a0a1> /Users/USER/*/_traversal.cpython-310-darwin.so
0x28237c000 - 0x282397fff _min_spanning_tree.cpython-310-darwin.so (*) <cf459a29-a880-36e8-92ec-f8720674c838> /Users/USER/*/_min_spanning_tree.cpython-310-darwin.so
0x2837b8000 - 0x2837e7fff _flow.cpython-310-darwin.so (*) <2f87c9df-1534-3b6f-930b-83ceb729ef9e> /Users/USER/*/_flow.cpython-310-darwin.so
0x283964000 - 0x283993fff _matching.cpython-310-darwin.so (*) <108dee20-469a-3f13-8565-3f9ebeaa410b> /Users/USER/*/_matching.cpython-310-darwin.so
0x283708000 - 0x28372ffff _reordering.cpython-310-darwin.so (*) <ecfd39c0-ac0e-34c6-a3ab-40a29602df23> /Users/USER/*/_reordering.cpython-310-darwin.so
0x283a8c000 - 0x283b4bfff _qhull.cpython-310-darwin.so (*) <6bcfa0fb-6096-31e8-9c66-037b63b04bcb> /Users/USER/*/_qhull.cpython-310-darwin.so
0x280cb0000 - 0x280cb7fff messagestream.cpython-310-darwin.so (*) <0091c133-b013-30e1-98ea-184db1e4135c> /Users/USER/*/messagestream.cpython-310-darwin.so
0x283434000 - 0x28344ffff _voronoi.cpython-310-darwin.so (*) <2bd1e08c-8958-3859-a35e-7474f1a5e78f> /Users/USER/*/_voronoi.cpython-310-darwin.so
0x281ee4000 - 0x281ef3fff _distance_wrap.cpython-310-darwin.so (*) <1a8904b5-653a-36f7-b59a-0e48be412ab2> /Users/USER/*/_distance_wrap.cpython-310-darwin.so
0x2837fc000 - 0x283817fff _hausdorff.cpython-310-darwin.so (*) <b21592bc-479b-34a9-b62c-bd0d929dcf53> /Users/USER/*/_hausdorff.cpython-310-darwin.so
0x283cb4000 - 0x283dcbfff _ufuncs.cpython-310-darwin.so (*) <519cec9d-7349-3b8e-836f-b38ccfd31091> /Users/USER/*/_ufuncs.cpython-310-darwin.so
0x283a04000 - 0x283a47fff _ufuncs_cxx.cpython-310-darwin.so (*) <e38c5413-da33-322a-8cd4-7841570179c4> /Users/USER/*/_ufuncs_cxx.cpython-310-darwin.so
0x283e68000 - 0x283ebbfff _specfun.cpython-310-darwin.so (*) <986a8abd-e0f7-3590-8a48-a99375572ad8> /Users/USER/*/_specfun.cpython-310-darwin.so
0x11ecd8000 - 0x11ecdbfff _comb.cpython-310-darwin.so (*) <c5f0badd-f49e-3309-990d-9c0af9c43335> /Users/USER/*/_comb.cpython-310-darwin.so
0x282814000 - 0x28281ffff _ellip_harm_2.cpython-310-darwin.so (*) <2481fbe2-1eae-33b1-a6bd-d6a1b14038b3> /Users/USER/*/_ellip_harm_2.cpython-310-darwin.so
0x283f60000 - 0x283fcbfff _distance_pybind.cpython-310-darwin.so (*) <4d805032-8d7a-3b26-a50e-f01d0baf0ac3> /Users/USER/*/_distance_pybind.cpython-310-darwin.so
0x283ff0000 - 0x284057fff _rotation.cpython-310-darwin.so (*) <5b36c42b-4086-3b86-9058-e6ede72fa1b1> /Users/USER/*/_rotation.cpython-310-darwin.so
0x281f8c000 - 0x281f8ffff _uuid.cpython-310-darwin.so (*) <2d5a7fe5-ad0a-3bfd-927d-73e3930fa0da> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_uuid.cpython-310-darwin.so
0x283c70000 - 0x283c93fff timestep.cpython-310-darwin.so (*) <c881c452-a84d-32d7-9b7f-73ad6612d257> /Users/USER/*/timestep.cpython-310-darwin.so
0x29baa8000 - 0x29bc3bfff _sqlite3.cpython-310-darwin.so (*) <3ebb37da-563a-3c4f-a72d-e88308be3a94> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_sqlite3.cpython-310-darwin.so
0x2839a8000 - 0x2839b3fff _elementtree.cpython-310-darwin.so (*) <584ca3f3-3063-3215-8c00-bc81b4bfb0d2> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_elementtree.cpython-310-darwin.so
0x283ed0000 - 0x283ef7fff pyexpat.cpython-310-darwin.so (*) <44d0dcd0-7010-39d1-8360-2cf13b17177a> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/pyexpat.cpython-310-darwin.so
0x2823a8000 - 0x2823affff _mio_utils.cpython-310-darwin.so (*) <dd53079c-bb97-34de-b715-34473da190f6> /Users/USER/*/_mio_utils.cpython-310-darwin.so
0x283e00000 - 0x283e23fff _mio5_utils.cpython-310-darwin.so (*) <c7ff71f6-189a-3e69-bb62-3465fda739b8> /Users/USER/*/_mio5_utils.cpython-310-darwin.so
0x2839c8000 - 0x2839d7fff _streams.cpython-310-darwin.so (*) <7f3c5c60-eb50-3e62-87ae-5e47b9b490f7> /Users/USER/*/_streams.cpython-310-darwin.so
0x283740000 - 0x283743fff mmap.cpython-310-darwin.so (*) <2995f06f-6c67-3069-9497-fd67e672e0eb> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/mmap.cpython-310-darwin.so
0x2839e4000 - 0x2839ebfff _csv.cpython-310-darwin.so (*) <d18304eb-9781-35f5-ac4f-5841e48ec1f5> /Applications/Blender.app/Contents/Resources/4.0/python/lib/python3.10/lib-dynload/_csv.cpython-310-darwin.so
0x19a1eb000 - 0x19a1f1ffb libsystem_platform.dylib (*) <6d458354-3c39-3f35-a3bb-d01a78817b4a> /usr/lib/system/libsystem_platform.dylib
0x199e62000 - 0x199ef0587 dyld (*) <49204446-242b-3d1e-9704-32f8ac99723e> /usr/lib/dyld
0x19a17f000 - 0x19a1b8fe7 libsystem_kernel.dylib (*) <a57217d4-b72e-3092-a6e4-3d9c1885fe92> /usr/lib/system/libsystem_kernel.dylib
0x19a00c000 - 0x19a053fff libdispatch.dylib (*) <9897030f-75d3-374b-8787-322d3d72e096> /usr/lib/system/libdispatch.dylib
0x19a1b9000 - 0x19a1c5fff libsystem_pthread.dylib (*) <1f30fb9a-bdf9-32db-a709-8417666a7e45> /usr/lib/system/libsystem_pthread.dylib
0x1a37f9000 - 0x1a3821fff com.apple.audio.caulk (1.0) <94eafeb1-517c-3d98-8d0d-9c350f0eb986> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
0x19c2bd000 - 0x19c950fff com.apple.audio.CoreAudio (5.0) <86c35c01-57f0-3e1a-851e-201b9e4f75f9> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x19a0d6000 - 0x19a162ff7 libc++.1.dylib (*) <3ee92404-8fc3-374b-a598-d5c9a8cd64b5> /usr/lib/libc++.1.dylib
0x19a21f000 - 0x19a6f8fff com.apple.CoreFoundation (6.9) <982f755b-2044-397a-8823-57ddc4341cf3> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x19d48a000 - 0x19e399fff com.apple.AppKit (6.9) <ab4a163e-3a53-3fde-a88d-130759291adb> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ???
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: 0
thread_create: 0
thread_set_state: 0
VM Region Summary:
ReadOnly portion of Libraries: Total=1.4G resident=0K(0%) swapped_out_or_unallocated=1.4G(100%)
Writable regions: Total=21.7G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=21.7G(100%)
VIRTUAL REGION
REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 128K 1
Activity Tracing 256K 1
CG backing stores 1344K 4
CG image 320K 10
ColorSync 192K 8
CoreAnimation 144K 9
CoreGraphics 32K 2
CoreUI image data 592K 9
Foundation 16K 1
Kernel Alloc Once 32K 1
MALLOC 19.9G 1128
MALLOC guard page 192K 9
MALLOC_LARGE (reserved) 60.6M 1 reserved VM address space (unallocated)
MALLOC_MEDIUM (reserved) 1.0G 12 reserved VM address space (unallocated)
MALLOC_NANO (reserved) 256.0M 1 reserved VM address space (unallocated)
STACK GUARD 784K 49
Stack 65.5M 50
Stack Guard 16K 1
VM_ALLOCATE 39.7M 63
VM_ALLOCATE (reserved) 352.0M 2 reserved VM address space (unallocated)
__AUTH 718K 182
__AUTH_CONST 13.5M 348
__CTF 824 1
__DATA 25.8M 487
__DATA_CONST 26.2M 486
__DATA_DIRTY 796K 119
__FONT_DATA 2352 1
__LINKEDIT 921.6M 139
__OBJC_RO 66.4M 1
__OBJC_RW 2012K 1
__TEXT 559.4M 504
dyld private memory 656K 4
mapped file 350.4M 30
shared memory 912K 15
=========== ======= =======
TOTAL 23.6G 3680
TOTAL, minus reserved VM space 21.9G 3680
-----------
Full Report
-----------
{"app_name":"Blender","timestamp":"2023-12-04 12:45:49.00 -0700","app_version":"4.0.1","slice_uuid":"e6e8b13a-1909-3730-9e63-7882b4b103af","build_version":"4.0.1 2023-11-17","platform":1,"bundleID":"org.blenderfoundation.blender","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 13.6.2 (22G320)","roots_installed":0,"name":"Blender","incident_id":"9DBB44A7-1B0E-4670-95ED-F26F5678887E"}
{
"uptime" : 96000,
"procRole" : "Background",
"version" : 2,
"userID" : 28751,
"deployVersion" : 210,
"modelCode" : "Mac14,5",
"coalitionID" : 723,
"osVersion" : {
"train" : "macOS 13.6.2",
"build" : "22G320",
"releaseType" : "User"
},
"captureTime" : "2023-12-04 12:45:48.5281 -0700",
"incident" : "9DBB44A7-1B0E-4670-95ED-F26F5678887E",
"pid" : 94717,
"translated" : false,
"cpuType" : "ARM-64",
"roots_installed" : 0,
"bug_type" : "309",
"procLaunch" : "2023-12-04 12:41:08.9440 -0700",
"procStartAbsTime" : 2308307456557,
"procExitAbsTime" : 2315017308006,
"procName" : "Blender",
"procPath" : "\/Applications\/Blender.app\/Contents\/MacOS\/Blender",
"bundleInfo" : {"CFBundleShortVersionString":"4.0.1","CFBundleVersion":"4.0.1 2023-11-17","CFBundleIdentifier":"org.blenderfoundation.blender"},
"storeInfo" : {"deviceIdentifierForVendor":"D48508A5-0244-5E9F-A936-3A70762A948E","thirdParty":true},
"parentProc" : "zsh",
"parentPid" : 33990,
"coalitionName" : "com.apple.Terminal",
"crashReporterKey" : "F7404F57-7BF0-7108-6B17-6A85C29106A1",
"responsiblePid" : 857,
"responsibleProc" : "Terminal",
"codeSigningID" : "org.blenderfoundation.blender",
"codeSigningTeamID" : "68UA947AUU",
"codeSigningFlags" : 570491649,
"codeSigningValidationCategory" : 6,
"codeSigningTrustLevel" : 0,
"wakeTime" : 11721,
"sleepWakeUUID" : "1A32D710-3503-47E6-9262-DE5E885AEA98",
"sip" : "enabled",
"vmRegionInfo" : "0xffffffff7fffffe0 is not in any region. Bytes after previous region: 18446638517908930529 \n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-\/rwx SM=NUL ...(unallocated)\n---> \n UNUSED SPACE AT END",
"exception" : {"codes":"0x0000000000000001, 0xffffffff7fffffe0","rawCodes":[1,-2147483680],"type":"EXC_BAD_ACCESS","signal":"SIGSEGV","subtype":"KERN_INVALID_ADDRESS at 0xffffffff7fffffe0"},
"termination" : {"flags":0,"code":11,"namespace":"SIGNAL","indicator":"Segmentation fault: 11","byProc":"exc handler","byPid":94717},
"ktriageinfo" : "VM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\nVM - (arg = 0x0) pmap_enter retried due to resource shortage\n",
"vmregioninfo" : "0xffffffff7fffffe0 is not in any region. Bytes after previous region: 18446638517908930529 \n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n MALLOC_NANO (reserved) 600018000000-600020000000 [128.0M] rw-\/rwx SM=NUL ...(unallocated)\n---> \n UNUSED SPACE AT END",
"extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0},
"faultingThread" : 0,
"threads" : [{"triggered":true,"id":1780412,"threadState":{"x":[{"value":0},{"value":29527900192},{"value":18446744071562067936},{"value":18446744071562067936},{"value":18446744071562067968},{"value":32},{"value":0},{"value":0},{"value":5350999312},{"value":2},{"value":0},{"value":2},{"value":6064979844},{"value":23},{"value":6064963584},{"value":0},{"value":6880683584,"symbolLocation":0,"symbol":"_platform_memmove"},{"value":8486587528},{"value":0},{"value":105553152380200},{"value":31675383872},{"value":2},{"value":4503357312,"symbolLocation":32,"symbol":"DST"},{"value":4503357280,"symbolLocation":0,"symbol":"DST"},{"value":0},{"value":4503355392,"symbolLocation":8,"symbol":"blender::deg::SequencerComponentNode::typeinfo"},{"value":195},{"value":3},{"value":4503357936,"symbolLocation":656,"symbol":"DST"}],"flavor":"ARM_THREAD_STATE64","lr":{"value":4392588280},"cpsr":{"value":2684358656},"fp":{"value":6155348608},"sp":{"value":6155348576},"esr":{"value":2449473604,"description":"(Data Abort) byte write Translation fault"},"pc":{"value":6880684104,"matchesCrashFrame":1},"far":{"value":18446744071562067936}},"queue":"com.apple.main-thread","frames":[{"imageOffset":14408,"symbol":"_platform_memmove","symbolLocation":520,"imageIndex":138},{"imageOffset":81056760,"symbol":"blender::gpu::MTLStorageBuf::update(void const*)","symbolLocation":296,"imageIndex":0},{"imageOffset":10738532,"symbol":"blender::draw::Manager::end_sync()","symbolLocation":52,"imageIndex":0},{"imageOffset":10750888,"symbol":"DRW_draw_render_loop_ex","symbolLocation":936,"imageIndex":0},{"imageOffset":24533840,"symbol":"view3d_main_region_draw","symbolLocation":220,"imageIndex":0},{"imageOffset":14624124,"symbol":"ED_region_do_draw(bContext*, ARegion*)","symbolLocation":760,"imageIndex":0},{"imageOffset":9081536,"symbol":"wm_draw_update(bContext*)","symbolLocation":1612,"imageIndex":0},{"imageOffset":9065252,"symbol":"WM_main(bContext*)","symbolLocation":52,"imageIndex":0},{"imageOffset":1781120,"symbol":"main","symbolLocation":860,"imageIndex":0},{"imageOffset":24360,"symbol":"start","symbolLocation":2236,"imageIndex":139}]},{"id":1780424,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780425,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780426,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780427,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780428,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780429,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780430,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780431,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780432,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780433,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780434,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":18844,"symbol":"_dispatch_sema4_wait","symbolLocation":28,"imageIndex":141},{"imageOffset":20560,"symbol":"_dispatch_semaphore_wait_slow","symbolLocation":132,"imageIndex":141},{"imageOffset":28136,"symbol":"IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::threadLoop(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>)","symbolLocation":52,"imageIndex":17},{"imageOffset":28836,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, void (IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider::*)(std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>), IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolProvider*, std::__1::shared_ptr<IlmThread_3_1::(anonymous namespace)::DefaultThreadPoolData>>>(void*)","symbolLocation":92,"imageIndex":17},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780435,"name":"caulk.messenger.shared:17","frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":8228,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":212,"imageIndex":143},{"imageOffset":7896,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":36,"imageIndex":143},{"imageOffset":7112,"symbol":"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*)","symbolLocation":96,"imageIndex":143},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780474,"name":"com.apple.audio.IOThread.client","frames":[{"imageOffset":3892,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":78432,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":140},{"imageOffset":39832,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":140},{"imageOffset":4784,"symbol":"mach_msg","symbolLocation":24,"imageIndex":140},{"imageOffset":3077684,"symbol":"HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int)","symbolLocation":104,"imageIndex":144},{"imageOffset":1953060,"symbol":"HALC_ProxyIOContext::IOWorkLoop()","symbolLocation":3516,"imageIndex":144},{"imageOffset":1947788,"symbol":"invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int)","symbolLocation":116,"imageIndex":144},{"imageOffset":3401076,"symbol":"HALB_IOThread::Entry(void*)","symbolLocation":88,"imageIndex":144},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780504,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780505,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780506,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780507,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780508,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780509,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780510,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780511,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780512,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780513,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780514,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":77552,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":145},{"imageOffset":391428,"symbol":"OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()::operator()() const","symbolLocation":164,"imageIndex":7},{"imageOffset":391016,"symbol":"void* std::__1::__thread_proxy[abi:v15006]<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct>>, OpenImageIO_v2_4::thread_pool::Impl::set_thread(int)::'lambda'()>>(void*)","symbolLocation":52,"imageIndex":7},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780516,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780517,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780518,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780519,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780520,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780521,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780522,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780523,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780524,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780525,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780526,"frames":[{"imageOffset":18224,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":140},{"imageOffset":30068,"symbol":"_pthread_cond_wait","symbolLocation":1232,"imageIndex":142},{"imageOffset":1497392,"symbol":"blas_thread_server","symbolLocation":360,"imageIndex":92},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780533,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780534,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780535,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780536,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780537,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780538,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780539,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780540,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780541,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780542,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780543,"frames":[{"imageOffset":3760,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":73724,"symbol":"rml::internal::thread_monitor::commit_wait(rml::internal::thread_monitor::cookie&)","symbolLocation":64,"imageIndex":2},{"imageOffset":72628,"symbol":"tbb::internal::rml::private_worker::run()","symbolLocation":420,"imageIndex":2},{"imageOffset":72196,"symbol":"tbb::internal::rml::private_worker::thread_routine(void*)","symbolLocation":12,"imageIndex":2},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1780548,"name":"com.apple.NSEventThread","frames":[{"imageOffset":3892,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":140},{"imageOffset":78432,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":140},{"imageOffset":39832,"symbol":"mach_msg_overwrite","symbolLocation":604,"imageIndex":140},{"imageOffset":4784,"symbol":"mach_msg","symbolLocation":24,"imageIndex":140},{"imageOffset":522068,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":146},{"imageOffset":516148,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":146},{"imageOffset":513064,"symbol":"CFRunLoopRunSpecific","symbolLocation":612,"imageIndex":146},{"imageOffset":1458004,"symbol":"_NSEventThread","symbolLocation":172,"imageIndex":147},{"imageOffset":28584,"symbol":"_pthread_start","symbolLocation":148,"imageIndex":142},{"imageOffset":7584,"symbol":"thread_start","symbolLocation":8,"imageIndex":142}]},{"id":1784275,"frames":[{"imageOffset":7564,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":142}]}],
"usedImages" : [
{
"source" : "P",
"arch" : "arm64",
"base" : 4311531520,
"CFBundleShortVersionString" : "4.0.1",
"CFBundleIdentifier" : "org.blenderfoundation.blender",
"size" : 180158464,
"uuid" : "e6e8b13a-1909-3730-9e63-7882b4b103af",
"path" : "\/Applications\/Blender.app\/Contents\/MacOS\/Blender",
"name" : "Blender",
"CFBundleVersion" : "4.0.1 2023-11-17"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4561420288,
"size" : 409600,
"uuid" : "ab1fadc1-903c-3c36-8438-ce0fe19bed46",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libomp.dylib",
"name" : "libomp.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4561059840,
"size" : 131072,
"uuid" : "cb394e8c-9c52-37c6-9022-fd990fd35d7b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libtbb.dylib",
"name" : "libtbb.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4563091456,
"size" : 622592,
"uuid" : "4731deac-271c-3ffa-a784-1db25c099939",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libosdGPU.dylib",
"name" : "libosdGPU.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4564140032,
"size" : 573440,
"uuid" : "8271d479-dfd6-3eaa-bcc1-736d265872f9",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libosdCPU.dylib",
"name" : "libosdCPU.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4579803136,
"size" : 10354688,
"uuid" : "d86170d4-9c85-3e7e-b24a-a57248f6de2a",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libembree4.dylib",
"name" : "libembree4.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4594745344,
"size" : 6848512,
"uuid" : "9ddc4613-7bbf-37b5-a67f-e624e089cd4e",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libOpenImageIO.dylib",
"name" : "libOpenImageIO.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4564992000,
"size" : 507904,
"uuid" : "cb29c953-f7bb-3aef-a3fd-5849616d62a3",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libOpenImageIO_Util.dylib",
"name" : "libOpenImageIO_Util.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4572168192,
"size" : 3784704,
"uuid" : "681f7251-f3c3-3cf3-81d0-c52ad49a94a4",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libOpenColorIO.dylib",
"name" : "libOpenColorIO.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4562386944,
"size" : 163840,
"uuid" : "8dc70c62-1e81-3c55-a828-38772a0f8b8f",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_python310.dylib",
"name" : "libboost_python310.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4566155264,
"size" : 212992,
"uuid" : "636bb672-8a7a-3eb2-8971-379a45d7409d",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libMaterialXFormat.dylib",
"name" : "libMaterialXFormat.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4567416832,
"size" : 475136,
"uuid" : "ba31ab31-698f-3450-9126-1fa90e0f2acb",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libMaterialXCore.dylib",
"name" : "libMaterialXCore.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4647878656,
"size" : 22265856,
"uuid" : "59a48536-bd6a-308e-b142-547083bde8bc",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libusd_ms.dylib",
"name" : "libusd_ms.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4747526144,
"size" : 24051712,
"uuid" : "896f40b8-9c63-3c0e-ac5b-4f268176047c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libopenvdb.dylib",
"name" : "libopenvdb.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4569251840,
"size" : 425984,
"uuid" : "32e1b904-123b-3d56-ba7a-ad7c29eb8c55",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libIex.dylib",
"name" : "libIex.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4611702784,
"size" : 2670592,
"uuid" : "c87aa12f-eb66-3dcc-9d71-f4d427be7e2c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libOpenEXR.dylib",
"name" : "libOpenEXR.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4568301568,
"size" : 507904,
"uuid" : "bf418d11-173e-3fad-9f5d-ff0bcd4af8af",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libOpenEXRCore.dylib",
"name" : "libOpenEXRCore.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4560912384,
"size" : 32768,
"uuid" : "d4c9744b-1d84-397d-8274-9e24e1fb928e",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libIlmThread.dylib",
"name" : "libIlmThread.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4566532096,
"size" : 311296,
"uuid" : "9d93e231-1897-3dc8-bc24-fd335af5efb6",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libImath.dylib",
"name" : "libImath.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4560846848,
"size" : 16384,
"uuid" : "e016fca7-87ee-3d62-b75c-9edd1da5cb81",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_date_time.dylib",
"name" : "libboost_date_time.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4562714624,
"size" : 81920,
"uuid" : "78128f3e-0f02-3176-9305-6b0f7d991e06",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_filesystem.dylib",
"name" : "libboost_filesystem.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4570202112,
"size" : 245760,
"uuid" : "354a43e8-3246-33ba-bdee-ed39d0e6ac0b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_regex.dylib",
"name" : "libboost_regex.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4561321984,
"size" : 16384,
"uuid" : "d77553f9-42f6-3d7a-8634-612da23caaa9",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_system.dylib",
"name" : "libboost_system.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4562206720,
"size" : 49152,
"uuid" : "10f833aa-0210-37f9-82ab-5748ad4d22f4",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_thread.dylib",
"name" : "libboost_thread.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4614832128,
"size" : 819200,
"uuid" : "1a824ed6-22ea-38b4-a6d1-8ab528bcfc73",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_wave.dylib",
"name" : "libboost_wave.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4571250688,
"size" : 344064,
"uuid" : "77cbe9a2-df0b-3d43-af3c-9750fd7a12c8",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_locale.dylib",
"name" : "libboost_locale.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4562894848,
"size" : 32768,
"uuid" : "adcdda11-da89-33a2-8650-483e36d02f0b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_iostreams.dylib",
"name" : "libboost_iostreams.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4566908928,
"size" : 16384,
"uuid" : "8944fd7a-dfd8-3ad2-b8d6-6f42a91ae307",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_chrono.dylib",
"name" : "libboost_chrono.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4566990848,
"size" : 16384,
"uuid" : "22201547-32c7-393d-b0f8-e55c2b2c97c5",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_atomic.dylib",
"name" : "libboost_atomic.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4578197504,
"size" : 147456,
"uuid" : "7e0d9013-c728-3315-8d6a-53275bfe33d6",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libboost_serialization.dylib",
"name" : "libboost_serialization.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4578623488,
"size" : 425984,
"uuid" : "edd09303-4461-3d46-9995-a88a65fe659d",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libMaterialXRender.dylib",
"name" : "libMaterialXRender.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4579246080,
"size" : 245760,
"uuid" : "4fa3272e-ffb3-3f8f-9ce8-2d6f57a5188b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libMaterialXGenGlsl.dylib",
"name" : "libMaterialXGenGlsl.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4609359872,
"size" : 425984,
"uuid" : "c5c3a78e-bab3-3a09-81b8-90243b4ef835",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/lib\/libMaterialXGenShader.dylib",
"name" : "libMaterialXGenShader.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4643553280,
"CFBundleShortVersionString" : "1.14",
"CFBundleIdentifier" : "com.apple.audio.units.Components",
"size" : 1261568,
"uuid" : "c775db32-d8a6-3e08-97ee-42f05005c1b7",
"path" : "\/System\/Library\/Components\/CoreAudio.component\/Contents\/MacOS\/CoreAudio",
"name" : "CoreAudio",
"CFBundleVersion" : "1.14"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4639653888,
"size" : 49152,
"uuid" : "106e99a0-0b8d-34fb-ad61-91eca3d8285c",
"path" : "\/usr\/lib\/libobjc-trampolines.dylib",
"name" : "libobjc-trampolines.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 4812046336,
"CFBundleShortVersionString" : "3.0",
"CFBundleIdentifier" : "com.apple.security.csparser",
"size" : 131072,
"uuid" : "af79a0fa-e8a1-3134-bee8-c9567ed1e971",
"path" : "\/System\/Library\/Frameworks\/Security.framework\/Versions\/A\/PlugIns\/csparser.bundle\/Contents\/MacOS\/csparser",
"name" : "csparser",
"CFBundleVersion" : "60420.140.26"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4811816960,
"size" : 49152,
"uuid" : "4957c3e0-f132-3297-a059-ea3daa6d9942",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/math.cpython-310-darwin.so",
"name" : "math.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4811948032,
"size" : 16384,
"uuid" : "419ee335-6a90-35dc-9792-fea56e9cb70c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_opcode.cpython-310-darwin.so",
"name" : "_opcode.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4812472320,
"size" : 81920,
"uuid" : "02c4b64d-97dd-35cc-85e1-52172322240b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_datetime.cpython-310-darwin.so",
"name" : "_datetime.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6151077888,
"size" : 1097728,
"uuid" : "0daa5dea-8162-32dc-ac26-672cd456a349",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/unicodedata.cpython-310-darwin.so",
"name" : "unicodedata.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4812292096,
"size" : 16384,
"uuid" : "be92244f-86d4-3fa9-94b5-54055e2250cc",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_heapq.cpython-310-darwin.so",
"name" : "_heapq.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4812800000,
"size" : 65536,
"uuid" : "b77c5df6-6798-3b52-b185-4c3d835c5c44",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_socket.cpython-310-darwin.so",
"name" : "_socket.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4812374016,
"size" : 32768,
"uuid" : "2d0ac23a-e6f9-3c59-8357-65a9d4813a8d",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/select.cpython-310-darwin.so",
"name" : "select.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4812652544,
"size" : 49152,
"uuid" : "853e90bf-52cb-3b55-992c-6ffe81990d76",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/array.cpython-310-darwin.so",
"name" : "array.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831297536,
"size" : 16384,
"uuid" : "14c4db3d-9222-3ab1-8783-284949975f44",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/fcntl.cpython-310-darwin.so",
"name" : "fcntl.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831379456,
"size" : 16384,
"uuid" : "2cd94cfa-1fb4-3de6-9d8a-0050d7f29dac",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_posixsubprocess.cpython-310-darwin.so",
"name" : "_posixsubprocess.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10750902272,
"size" : 3801088,
"uuid" : "a0216b06-8112-39ce-aa60-91c7ba55ba24",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_ssl.cpython-310-darwin.so",
"name" : "_ssl.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831461376,
"size" : 32768,
"uuid" : "38978966-6c95-3783-a1a2-7bd5ba1e8cd2",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_struct.cpython-310-darwin.so",
"name" : "_struct.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831576064,
"size" : 32768,
"uuid" : "d4da6934-0d06-3e98-ba0c-9a101312c0bd",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/binascii.cpython-310-darwin.so",
"name" : "binascii.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831674368,
"size" : 16384,
"uuid" : "abd92f5e-398c-3e53-aa9e-13fd54eb2973",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_contextvars.cpython-310-darwin.so",
"name" : "_contextvars.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5099290624,
"size" : 49152,
"uuid" : "713124c3-93b5-36c5-915b-2aec0d39f6f7",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_asyncio.cpython-310-darwin.so",
"name" : "_asyncio.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5099421696,
"size" : 32768,
"uuid" : "7abcd9f8-be9e-3988-aec0-0bf47ee3ce6d",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_json.cpython-310-darwin.so",
"name" : "_json.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10755997696,
"size" : 2949120,
"uuid" : "6b2e4631-da68-32aa-a167-45384a3a31a0",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/core\/_multiarray_umath.cpython-310-darwin.so",
"name" : "_multiarray_umath.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5099716608,
"size" : 98304,
"uuid" : "3d42ce55-ce21-36ce-8432-2cb30af10798",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_pickle.cpython-310-darwin.so",
"name" : "_pickle.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5099913216,
"size" : 81920,
"uuid" : "7c1eb455-bbe8-33b5-90c4-35d628451d70",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/core\/_multiarray_tests.cpython-310-darwin.so",
"name" : "_multiarray_tests.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5349146624,
"size" : 147456,
"uuid" : "59aeb87b-2bc9-38d4-9454-7b0a0792ebc3",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_ctypes.cpython-310-darwin.so",
"name" : "_ctypes.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5349408768,
"size" : 98304,
"uuid" : "d8b00d95-5577-34ed-91b3-a5b26c903c5b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/linalg\/_umath_linalg.cpython-310-darwin.so",
"name" : "_umath_linalg.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5099520000,
"size" : 65536,
"uuid" : "92b91810-5d65-313f-9ca7-49bb5dd12f6c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/fft\/_pocketfft_internal.cpython-310-darwin.so",
"name" : "_pocketfft_internal.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6173032448,
"size" : 425984,
"uuid" : "72e5a6dc-0c7f-397f-b6d2-55149c6a6775",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/mtrand.cpython-310-darwin.so",
"name" : "mtrand.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5613486080,
"size" : 131072,
"uuid" : "56c4b70a-47b9-31c9-b0b6-92854af124e6",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/bit_generator.cpython-310-darwin.so",
"name" : "bit_generator.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6139068416,
"size" : 196608,
"uuid" : "41906d80-c8d1-39f6-b2af-e98c59368ebf",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_common.cpython-310-darwin.so",
"name" : "_common.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10764402688,
"size" : 3080192,
"uuid" : "0963246e-e9ca-3b1d-bb2b-8e69b91dd9a8",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_hashlib.cpython-310-darwin.so",
"name" : "_hashlib.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5100109824,
"size" : 32768,
"uuid" : "3a059868-82bc-3dc6-b99e-d9606547f3cb",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_blake2.cpython-310-darwin.so",
"name" : "_blake2.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4831756288,
"size" : 16384,
"uuid" : "df158113-da43-3e8d-8fa1-23df7f1a97a9",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_bisect.cpython-310-darwin.so",
"name" : "_bisect.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5348884480,
"size" : 16384,
"uuid" : "401f2088-7aa3-3d46-9c8a-495b7a0886a1",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_random.cpython-310-darwin.so",
"name" : "_random.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5348966400,
"size" : 16384,
"uuid" : "f7a98436-7b74-39e7-a99b-757387b6f1be",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_sha512.cpython-310-darwin.so",
"name" : "_sha512.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6152650752,
"size" : 278528,
"uuid" : "31b80dc6-66db-3ce1-ae47-f7ce5ff614ae",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_bounded_integers.cpython-310-darwin.so",
"name" : "_bounded_integers.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5613731840,
"size" : 65536,
"uuid" : "17f2b8a3-e346-31e6-b177-cb04daacd6a6",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_mt19937.cpython-310-darwin.so",
"name" : "_mt19937.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5613879296,
"size" : 65536,
"uuid" : "2284e618-fb90-37ce-a02e-d37860e8521c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_philox.cpython-310-darwin.so",
"name" : "_philox.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6152257536,
"size" : 65536,
"uuid" : "9205d7eb-a870-3994-b75e-847bb47f91e3",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_pcg64.cpython-310-darwin.so",
"name" : "_pcg64.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5349621760,
"size" : 32768,
"uuid" : "5392329a-a175-3ea0-b87a-40e7490151f1",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_sfc64.cpython-310-darwin.so",
"name" : "_sfc64.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10749837312,
"size" : 540672,
"uuid" : "c0153baa-2e7a-3a4f-8c98-dbba96beb65c",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/random\/_generator.cpython-310-darwin.so",
"name" : "_generator.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6154092544,
"size" : 114688,
"uuid" : "bc5bc4f6-8100-3a09-9bd5-5133f977538d",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_bz2.cpython-310-darwin.so",
"name" : "_bz2.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6173786112,
"size" : 81920,
"uuid" : "f9291176-ed9f-3f0a-a3c0-2e580f7780e4",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/zlib.cpython-310-darwin.so",
"name" : "zlib.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10749247488,
"size" : 212992,
"uuid" : "9d923253-f17d-37f2-a329-a65d1b7e30cd",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_lzma.cpython-310-darwin.so",
"name" : "_lzma.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5349048320,
"size" : 16384,
"uuid" : "0593d4e6-4a80-3703-ad73-59392775fe6b",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_scproxy.cpython-310-darwin.so",
"name" : "_scproxy.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10748952576,
"size" : 131072,
"uuid" : "b550a101-9d01-397f-ad9d-bdc5f6b5a1ee",
"path" : "\/Users\/USER\/*\/_cmsgpack.cpython-310-darwin.so",
"name" : "_cmsgpack.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 5349736448,
"size" : 16384,
"uuid" : "cfbc89bb-b5a6-36d0-94d4-b7bce4e52526",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/site-packages\/numpy\/linalg\/lapack_lite.cpython-310-darwin.so",
"name" : "lapack_lite.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10763632640,
"size" : 180224,
"uuid" : "265dcb8d-1d27-37cc-86c9-07aad45d9082",
"path" : "\/Users\/USER\/*\/_cutil.cpython-310-darwin.so",
"name" : "_cutil.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6150946816,
"size" : 65536,
"uuid" : "f0099789-8300-3216-9dab-0526180dc540",
"path" : "\/Users\/USER\/*\/_transformations.cpython-310-darwin.so",
"name" : "_transformations.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10763927552,
"size" : 180224,
"uuid" : "2df927ab-af74-30f5-8aa2-37d37566c067",
"path" : "\/Users\/USER\/*\/_augment.cpython-310-darwin.so",
"name" : "_augment.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10769924096,
"size" : 196608,
"uuid" : "a3ee7acc-42cd-3d38-b57e-f44c5bab11d5",
"path" : "\/Users\/USER\/*\/nsgrid.cpython-310-darwin.so",
"name" : "nsgrid.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10770579456,
"size" : 245760,
"uuid" : "a6812d4c-e74c-3e5d-ad82-fbcb7bdd6215",
"path" : "\/Users\/USER\/*\/c_distances.cpython-310-darwin.so",
"name" : "c_distances.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10749542400,
"size" : 81920,
"uuid" : "578d3a3f-aacc-3712-8ba6-56a4385639f2",
"path" : "\/Users\/USER\/*\/c_distances_openmp.cpython-310-darwin.so",
"name" : "c_distances_openmp.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10773479424,
"size" : 278528,
"uuid" : "b75012ab-696a-3ea4-bbad-d10cb7ac0e79",
"path" : "\/Users\/USER\/*\/libmdaxdr.cpython-310-darwin.so",
"name" : "libmdaxdr.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10762338304,
"size" : 131072,
"uuid" : "a00ce9cd-fc17-3dfe-b91d-f9a4e5a3fba4",
"path" : "\/Users\/USER\/*\/cython_util.cpython-310-darwin.so",
"name" : "cython_util.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10773905408,
"size" : 245760,
"uuid" : "c20c8fb7-d8b6-3d07-8364-80ee64ffb0b0",
"path" : "\/Users\/USER\/*\/libdcd.cpython-310-darwin.so",
"name" : "libdcd.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6152404992,
"size" : 49152,
"uuid" : "38eac972-64bc-37ee-8d51-f4b5a8de4ab5",
"path" : "\/Users\/USER\/*\/_ccallback_c.cpython-310-darwin.so",
"name" : "_ccallback_c.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10774921216,
"size" : 524288,
"uuid" : "724daf7b-1929-36b5-992f-239e9bbc1d00",
"path" : "\/Users\/USER\/*\/_ckdtree.cpython-310-darwin.so",
"name" : "_ckdtree.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10779623424,
"size" : 3506176,
"uuid" : "a11bd8e5-2002-399e-a2d6-27188b2466ae",
"path" : "\/Users\/USER\/*\/_sparsetools.cpython-310-darwin.so",
"name" : "_sparsetools.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10776641536,
"size" : 409600,
"uuid" : "7d8fc776-5a4f-3080-a687-7e3b28e40a10",
"path" : "\/Users\/USER\/*\/_csparsetools.cpython-310-darwin.so",
"name" : "_csparsetools.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10770235392,
"size" : 163840,
"uuid" : "fb563b39-4904-371b-9f72-4ef185e8315d",
"path" : "\/Users\/USER\/*\/_iterative.cpython-310-darwin.so",
"name" : "_iterative.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10806558720,
"size" : 21069824,
"uuid" : "7ec19e0c-d79b-3527-a672-0d1f29947537",
"path" : "\/Users\/USER\/*\/libopenblas.0.dylib",
"name" : "libopenblas.0.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10783653888,
"size" : 1376256,
"uuid" : "ae3c441b-de1b-3bb8-8c6e-1a2411185d0e",
"path" : "\/Users\/USER\/*\/libgfortran.5.dylib",
"name" : "libgfortran.5.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10774265856,
"size" : 262144,
"uuid" : "81355d03-a464-3826-b89b-106d33d94d39",
"path" : "\/Users\/USER\/*\/libquadmath.0.dylib",
"name" : "libquadmath.0.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 6152503296,
"size" : 65536,
"uuid" : "ad4f9635-aa1c-370d-a9a6-8889ebb4d94b",
"path" : "\/Users\/USER\/*\/libgcc_s.1.1.dylib",
"name" : "libgcc_s.1.1.dylib"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10790092800,
"size" : 327680,
"uuid" : "bc09ec83-4262-30af-854d-3e2a14886eb5",
"path" : "\/Users\/USER\/*\/_fblas.cpython-310-darwin.so",
"name" : "_fblas.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10792386560,
"size" : 1015808,
"uuid" : "c5634766-a74e-35ce-8adb-da2ca0dd2812",
"path" : "\/Users\/USER\/*\/_flapack.cpython-310-darwin.so",
"name" : "_flapack.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10790666240,
"size" : 344064,
"uuid" : "6b921222-a3b0-3a5a-9636-5b2bc681b2c0",
"path" : "\/Users\/USER\/*\/_cythonized_array_utils.cpython-310-darwin.so",
"name" : "_cythonized_array_utils.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10794106880,
"size" : 442368,
"uuid" : "aa4fbd05-db9c-3cfa-a675-291ec408a1e7",
"path" : "\/Users\/USER\/*\/cython_lapack.cpython-310-darwin.so",
"name" : "cython_lapack.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10773069824,
"size" : 147456,
"uuid" : "b0ded942-1247-37b9-bf1f-123e8ffbda19",
"path" : "\/Users\/USER\/*\/_solve_toeplitz.cpython-310-darwin.so",
"name" : "_solve_toeplitz.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10769612800,
"size" : 131072,
"uuid" : "f78270f9-c64d-3df8-b359-10f56c207d32",
"path" : "\/Users\/USER\/*\/_decomp_lu_cython.cpython-310-darwin.so",
"name" : "_decomp_lu_cython.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10773282816,
"size" : 131072,
"uuid" : "585c3f93-d639-383b-b61b-513828427eec",
"path" : "\/Users\/USER\/*\/_matfuncs_sqrtm_triu.cpython-310-darwin.so",
"name" : "_matfuncs_sqrtm_triu.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10794795008,
"size" : 262144,
"uuid" : "edc85e0d-647c-32ce-ab46-446abfe15283",
"path" : "\/Users\/USER\/*\/_matfuncs_expm.cpython-310-darwin.so",
"name" : "_matfuncs_expm.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10789519360,
"size" : 147456,
"uuid" : "d5263251-714e-3749-b658-8b0ba385bb71",
"path" : "\/Users\/USER\/*\/cython_blas.cpython-310-darwin.so",
"name" : "cython_blas.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10789765120,
"size" : 196608,
"uuid" : "e16414c5-8606-329a-b019-c611b9c4f20a",
"path" : "\/Users\/USER\/*\/_decomp_update.cpython-310-darwin.so",
"name" : "_decomp_update.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10749689856,
"size" : 49152,
"uuid" : "505f472c-6d68-3284-aa21-72552d09a611",
"path" : "\/Users\/USER\/*\/_flinalg.cpython-310-darwin.so",
"name" : "_flinalg.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10795483136,
"size" : 278528,
"uuid" : "2d652d8d-e892-3474-9c15-c1c9ddfdbacf",
"path" : "\/Users\/USER\/*\/_superlu.cpython-310-darwin.so",
"name" : "_superlu.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10796302336,
"size" : 344064,
"uuid" : "d34930a6-5fb3-3e2a-9609-dbde9bd3d68a",
"path" : "\/Users\/USER\/*\/_arpack.cpython-310-darwin.so",
"name" : "_arpack.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10796761088,
"size" : 311296,
"uuid" : "ca358fb6-ce7a-3d5b-97f8-7680a3042e79",
"path" : "\/Users\/USER\/*\/_shortest_path.cpython-310-darwin.so",
"name" : "_shortest_path.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10764206080,
"size" : 114688,
"uuid" : "79574cc3-4391-37a7-928b-2eaa6195d334",
"path" : "\/Users\/USER\/*\/_tools.cpython-310-darwin.so",
"name" : "_tools.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10797154304,
"size" : 344064,
"uuid" : "b0ad47cd-e6bd-3f61-9f6e-d4ad0f42a0a1",
"path" : "\/Users\/USER\/*\/_traversal.cpython-310-darwin.so",
"name" : "_traversal.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10774626304,
"size" : 114688,
"uuid" : "cf459a29-a880-36e8-92ec-f8720674c838",
"path" : "\/Users\/USER\/*\/_min_spanning_tree.cpython-310-darwin.so",
"name" : "_min_spanning_tree.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10795843584,
"size" : 196608,
"uuid" : "2f87c9df-1534-3b6f-930b-83ceb729ef9e",
"path" : "\/Users\/USER\/*\/_flow.cpython-310-darwin.so",
"name" : "_flow.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10797596672,
"size" : 196608,
"uuid" : "108dee20-469a-3f13-8565-3f9ebeaa410b",
"path" : "\/Users\/USER\/*\/_matching.cpython-310-darwin.so",
"name" : "_matching.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10795122688,
"size" : 163840,
"uuid" : "ecfd39c0-ac0e-34c6-a3ab-40a29602df23",
"path" : "\/Users\/USER\/*\/_reordering.cpython-310-darwin.so",
"name" : "_reordering.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10798809088,
"size" : 786432,
"uuid" : "6bcfa0fb-6096-31e8-9c66-037b63b04bcb",
"path" : "\/Users\/USER\/*\/_qhull.cpython-310-darwin.so",
"name" : "_qhull.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10750722048,
"size" : 32768,
"uuid" : "0091c133-b013-30e1-98ea-184db1e4135c",
"path" : "\/Users\/USER\/*\/messagestream.cpython-310-darwin.so",
"name" : "messagestream.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10792157184,
"size" : 114688,
"uuid" : "2bd1e08c-8958-3859-a35e-7474f1a5e78f",
"path" : "\/Users\/USER\/*\/_voronoi.cpython-310-darwin.so",
"name" : "_voronoi.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10769809408,
"size" : 65536,
"uuid" : "1a8904b5-653a-36f7-b59a-0e48be412ab2",
"path" : "\/Users\/USER\/*\/_distance_wrap.cpython-310-darwin.so",
"name" : "_distance_wrap.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10796122112,
"size" : 114688,
"uuid" : "b21592bc-479b-34a9-b62c-bd0d929dcf53",
"path" : "\/Users\/USER\/*\/_hausdorff.cpython-310-darwin.so",
"name" : "_hausdorff.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10801070080,
"size" : 1146880,
"uuid" : "519cec9d-7349-3b8e-836f-b38ccfd31091",
"path" : "\/Users\/USER\/*\/_ufuncs.cpython-310-darwin.so",
"name" : "_ufuncs.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10798252032,
"size" : 278528,
"uuid" : "e38c5413-da33-322a-8cd4-7841570179c4",
"path" : "\/Users\/USER\/*\/_ufuncs_cxx.cpython-310-darwin.so",
"name" : "_ufuncs_cxx.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10802855936,
"size" : 344064,
"uuid" : "986a8abd-e0f7-3590-8a48-a99375572ad8",
"path" : "\/Users\/USER\/*\/_specfun.cpython-310-darwin.so",
"name" : "_specfun.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 4811751424,
"size" : 16384,
"uuid" : "c5f0badd-f49e-3309-990d-9c0af9c43335",
"path" : "\/Users\/USER\/*\/_comb.cpython-310-darwin.so",
"name" : "_comb.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10779443200,
"size" : 49152,
"uuid" : "2481fbe2-1eae-33b1-a6bd-d6a1b14038b3",
"path" : "\/Users\/USER\/*\/_ellip_harm_2.cpython-310-darwin.so",
"name" : "_ellip_harm_2.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10803871744,
"size" : 442368,
"uuid" : "4d805032-8d7a-3b26-a50e-f01d0baf0ac3",
"path" : "\/Users\/USER\/*\/_distance_pybind.cpython-310-darwin.so",
"name" : "_distance_pybind.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10804461568,
"size" : 425984,
"uuid" : "5b36c42b-4086-3b86-9058-e6ede72fa1b1",
"path" : "\/Users\/USER\/*\/_rotation.cpython-310-darwin.so",
"name" : "_rotation.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10770497536,
"size" : 16384,
"uuid" : "2d5a7fe5-ad0a-3bfd-927d-73e3930fa0da",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_uuid.cpython-310-darwin.so",
"name" : "_uuid.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10800791552,
"size" : 147456,
"uuid" : "c881c452-a84d-32d7-9b7f-73ad6612d257",
"path" : "\/Users\/USER\/*\/timestep.cpython-310-darwin.so",
"name" : "timestep.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 11201576960,
"size" : 1654784,
"uuid" : "3ebb37da-563a-3c4f-a72d-e88308be3a94",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_sqlite3.cpython-310-darwin.so",
"name" : "_sqlite3.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10797875200,
"size" : 49152,
"uuid" : "584ca3f3-3063-3215-8c00-bc81b4bfb0d2",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_elementtree.cpython-310-darwin.so",
"name" : "_elementtree.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10803281920,
"size" : 163840,
"uuid" : "44d0dcd0-7010-39d1-8360-2cf13b17177a",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/pyexpat.cpython-310-darwin.so",
"name" : "pyexpat.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10774806528,
"size" : 32768,
"uuid" : "dd53079c-bb97-34de-b715-34473da190f6",
"path" : "\/Users\/USER\/*\/_mio_utils.cpython-310-darwin.so",
"name" : "_mio_utils.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10802429952,
"size" : 147456,
"uuid" : "c7ff71f6-189a-3e69-bb62-3465fda739b8",
"path" : "\/Users\/USER\/*\/_mio5_utils.cpython-310-darwin.so",
"name" : "_mio5_utils.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10798006272,
"size" : 65536,
"uuid" : "7f3c5c60-eb50-3e62-87ae-5e47b9b490f7",
"path" : "\/Users\/USER\/*\/_streams.cpython-310-darwin.so",
"name" : "_streams.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10795352064,
"size" : 16384,
"uuid" : "2995f06f-6c67-3069-9497-fd67e672e0eb",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/mmap.cpython-310-darwin.so",
"name" : "mmap.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64",
"base" : 10798120960,
"size" : 32768,
"uuid" : "d18304eb-9781-35f5-ac4f-5841e48ec1f5",
"path" : "\/Applications\/Blender.app\/Contents\/Resources\/4.0\/python\/lib\/python3.10\/lib-dynload\/_csv.cpython-310-darwin.so",
"name" : "_csv.cpython-310-darwin.so"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6880669696,
"size" : 28668,
"uuid" : "6d458354-3c39-3f35-a3bb-d01a78817b4a",
"path" : "\/usr\/lib\/system\/libsystem_platform.dylib",
"name" : "libsystem_platform.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6876962816,
"size" : 583048,
"uuid" : "49204446-242b-3d1e-9704-32f8ac99723e",
"path" : "\/usr\/lib\/dyld",
"name" : "dyld"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6880227328,
"size" : 237544,
"uuid" : "a57217d4-b72e-3092-a6e4-3d9c1885fe92",
"path" : "\/usr\/lib\/system\/libsystem_kernel.dylib",
"name" : "libsystem_kernel.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6878707712,
"size" : 294912,
"uuid" : "9897030f-75d3-374b-8787-322d3d72e096",
"path" : "\/usr\/lib\/system\/libdispatch.dylib",
"name" : "libdispatch.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6880464896,
"size" : 53248,
"uuid" : "1f30fb9a-bdf9-32db-a709-8417666a7e45",
"path" : "\/usr\/lib\/system\/libsystem_pthread.dylib",
"name" : "libsystem_pthread.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 7038013440,
"CFBundleShortVersionString" : "1.0",
"CFBundleIdentifier" : "com.apple.audio.caulk",
"size" : 167936,
"uuid" : "94eafeb1-517c-3d98-8d0d-9c350f0eb986",
"path" : "\/System\/Library\/PrivateFrameworks\/caulk.framework\/Versions\/A\/caulk",
"name" : "caulk"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6915084288,
"CFBundleShortVersionString" : "5.0",
"CFBundleIdentifier" : "com.apple.audio.CoreAudio",
"size" : 6897664,
"uuid" : "86c35c01-57f0-3e1a-851e-201b9e4f75f9",
"path" : "\/System\/Library\/Frameworks\/CoreAudio.framework\/Versions\/A\/CoreAudio",
"name" : "CoreAudio",
"CFBundleVersion" : "5.0"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6879535104,
"size" : 577528,
"uuid" : "3ee92404-8fc3-374b-a598-d5c9a8cd64b5",
"path" : "\/usr\/lib\/libc++.1.dylib",
"name" : "libc++.1.dylib"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6880882688,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.CoreFoundation",
"size" : 5087232,
"uuid" : "982f755b-2044-397a-8823-57ddc4341cf3",
"path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation",
"name" : "CoreFoundation",
"CFBundleVersion" : "1979.102"
},
{
"source" : "P",
"arch" : "arm64e",
"base" : 6933749760,
"CFBundleShortVersionString" : "6.9",
"CFBundleIdentifier" : "com.apple.AppKit",
"size" : 15794176,
"uuid" : "ab4a163e-3a53-3fde-a88d-130759291adb",
"path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit",
"name" : "AppKit",
"CFBundleVersion" : "2299.70.136"
},
{
"size" : 0,
"source" : "A",
"base" : 0,
"uuid" : "00000000-0000-0000-0000-000000000000"
}
],
"sharedCache" : {
"base" : 6876299264,
"size" : 3553509376,
"uuid" : "31767334-8d15-3d4b-a148-fda1947d6a2b"
},
"vmSummary" : "ReadOnly portion of Libraries: Total=1.4G resident=0K(0%) swapped_out_or_unallocated=1.4G(100%)\nWritable regions: Total=21.7G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=21.7G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG backing stores 1344K 4 \nCG image 320K 10 \nColorSync 192K 8 \nCoreAnimation 144K 9 \nCoreGraphics 32K 2 \nCoreUI image data 592K 9 \nFoundation 16K 1 \nKernel Alloc Once 32K 1 \nMALLOC 19.9G 1128 \nMALLOC guard page 192K 9 \nMALLOC_LARGE (reserved) 60.6M 1 reserved VM address space (unallocated)\nMALLOC_MEDIUM (reserved) 1.0G 12 reserved VM address space (unallocated)\nMALLOC_NANO (reserved) 256.0M 1 reserved VM address space (unallocated)\nSTACK GUARD 784K 49 \nStack 65.5M 50 \nStack Guard 16K 1 \nVM_ALLOCATE 39.7M 63 \nVM_ALLOCATE (reserved) 352.0M 2 reserved VM address space (unallocated)\n__AUTH 718K 182 \n__AUTH_CONST 13.5M 348 \n__CTF 824 1 \n__DATA 25.8M 487 \n__DATA_CONST 26.2M 486 \n__DATA_DIRTY 796K 119 \n__FONT_DATA 2352 1 \n__LINKEDIT 921.6M 139 \n__OBJC_RO 66.4M 1 \n__OBJC_RW 2012K 1 \n__TEXT 559.4M 504 \ndyld private memory 656K 4 \nmapped file 350.4M 30 \nshared memory 912K 15 \n=========== ======= ======= \nTOTAL 23.6G 3680 \nTOTAL, minus reserved VM space 21.9G 3680 \n",
"legacyInfo" : {
"threadTriggered" : {
"queue" : "com.apple.main-thread"
}
},
"logWritingSignature" : "c1997d31a4b95c8fdac87eb80e846bab6a4ba5e3",
"trialInfo" : {
"rollouts" : [
{
"rolloutId" : "6391cacc75b0720ff1f8c695",
"factorPackIds" : {
"COREOS_ICD" : "63957f508061fa721c8edc4a"
},
"deploymentId" : 240000007
},
{
"rolloutId" : "62fe74515312cd4599bd3c80",
"factorPackIds" : {
"MYRIAD_BOOSTS" : "62fe74805312cd4599bd3c81"
},
"deploymentId" : 240000006
}
],
"experiments" : [
]
}
}
Model: Mac14,5, BootROM 10151.41.12, proc 12:8:4 processors, 32 GB, SMC
Graphics: Apple M2 Max, Apple M2 Max, Built-In
Display: DELL P3421W, 3440 x 1440 (UWQHD - Ultra-Wide Quad HD), Main, MirrorOff, Online
Memory Module: LPDDR5, Hynix
AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4388), wl0: Jun 11 2023 05:20:59 version 23.20.95.0.40.50.92 FWID 01-ec505a98
Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports
Network Service: Ethernet Adapter, Ethernet, en7
PCI Card: ethernet, Ethernet Controller, Thunderbolt@3,0,0
USB Device: USB31Bus
USB Device: USB3.0 Hub
USB Device: TS4 USB3.2 Gen2 HUB
USB Device: TS4 USB3.2 Gen2 HUB
USB Device: TS4 USB3.2 Gen2 HUB
USB Device: TS4 USB2.0 Hub
USB Device: TPS DMC Family
USB Device: TS4 USB2.0 HUB
USB Device: composite_device
USB Device: TS4 USB2.0 HUB
USB Device: Dell MS116 USB Optical Mouse
USB Device: TS4 USB2.0 HUB
USB Device: Advantage2 Keyboard
USB Device: USB31Bus
USB Device: USB 10/100/1000 LAN
USB Device: USB31Bus
USB Device: SCR3500 C Contact Reader
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Bus: MacBook Pro, Apple Inc.
Thunderbolt Device: TS4, CalDigit, Inc., 1, 39.1
Shorter log from Blender proper
Switching to fully guarded memory allocator.
Blender 4.0.1
Build: 2023-11-17 00:31:48 Darwin release
argv[0] = /Applications/Blender.app/Contents/MacOS/Blender
argv[1] = --debug
argv[2] = --debug-cycles
Read prefs: "/Users/treddy/Library/Application Support/Blender/4.0/config/userpref.blend"
Info: Imported '/Users/treddy/Desktop/LDRD_DR_host_virus_slide_decks/Annual_Review_2023/Task_1_MD/render_movie_alchembed/synthetic_repro_brady/synthetic_repro.gro' as NewTrajectory with 100 frames from '/Users/treddy/Desktop/LDRD_DR_host_virus_slide_decks/Annual_Review_2023/Task_1_MD/render_movie_alchembed/synthetic_repro_brady/synthetic_repro.xtc'.
Writing: /var/folders/3g/r3rf41qx58b5j2hbkdpzw3cc000w2g/T/blender.crash.txt
Okay I should have tried it earlier, but I was able to reproduce the crash by choosing a different style on import.
Given the large size of the system, the default style Preset
ends up producing the crash. Looking at logs, MN / Blender successfully imports the universe into the scene and sets everything up, but crashes when attempting to build the geometry for the style.
If you import and choose the default style to the Spheres
(in the import panel) then it should import successfully.
This particular crash isn't really a 'bug', but rather Blender trying to build too much geometry to the point where it runs out of memory and crashes. There isn't a way to guard against that using Geometry Nodes.
For a very large system such as this, the non-EEVEE spheres style uses Point Cloud rendering and is only visible in the Cycles rendering engine. It is a slight limitation, but it means that Cycles can handled hundreds of millions of atoms.
For this it is just a matter of choosing the appropriate style for the size of the system (this needs to be emphasized by me more in the documentation). Previously the default style was spheres (to guard against exactly this kind of crash when import very large systems) and I think I will change the default back to spheres.
Ah, very cool, I adjusted the title of the issue to reflect a "doc" instead of "bug" status.
I tried reproducing the multi-frame render memory leak after switching to spheres, and I don't see it, so that's promising re: my original problem, maybe a little better in 4.0.1
than 3.6.x
for that issue then. I'll have to try the real system next of course, but that's a good sign.
@tylerjereddy good to know it's working, and that the memory leak issue may have resolved itself. Keep my updated!