Giter Site home page Giter Site logo

yatli / fvim Goto Github PK

View Code? Open in Web Editor NEW
1.3K 13.0 28.0 35.69 MB

Cross platform Neovim front-end UI, built with F# + Avalonia

License: MIT License

F# 96.27% PowerShell 0.72% Shell 1.22% Vim Script 1.79%
neovim nvim vim editor fsharp gui ui text-editor neovim-guis dotnet

fvim's Introduction

FVim Build Status

Cross platform Neovim front-end UI, built with F# + Avalonia.

Screenshot

Installation

Download the latest release package for your system, extract and run FVim!

  • For Windows 7 / Vista / 8.1 / Server 2008 R2 / Server 2012 R2, use the win7-x64 package.
  • For Windows 10, use the win-x64 package -- this version has faster startup.
  • For macOS, it's packaged as an app bundle -- unzip and drag it to your applications folder.
  • For Linux:
    • Debian based distributions: dpkg -i fvim_package_name.deb
    • Arch Linux: Install via AUR
    • RPM-based distributions: rpm -ivh fvim_package_name.rpm
    • Fedora: dnf install fvim_package_name.rpm
    • Compile from Source (having dotnet-sdk-6.0.x installed):
          git clone https://github.com/yatli/fvim && cd fvim && dotnet publish -f net6.0 -c Release -r linux-x64 --self-contained
      

Features

  • Theming done the (Neo)Vim way
    • Cursor color/blink
    • Background image/composition
    • Custom UI elements are themed with colorscheme settings
    • And more!
  • Font handling
    • Proper font rendering -- respects font style, baseline, ligatures etc.
    • Built-in support for Nerd font -- no need to patch your fonts!
    • East Asia wide glyph display with font fallback options
    • Fine-grained font tweaking knobs for personal font rendering
    • Emojis!
  • GUI framework
    • HiDPI support -- try dragging it across two screens with different DPIs ;)
    • High performance rendering, low latency (60FPS on 4K display with reasonable font size!)
    • GPU acceleration
    • Multi-grid support -- try Ctrl-w ge to detach a window into a separate OS window!
    • Input method support built from scratch
    • Rich information scrollbar (currently read-only)
    • Extend with UI Server Protocol -- UI widgets as NeoVim plugins
  • Remoting
    • Use a Windows FVim frontend with a WSL neovim: fvim --wsl
    • Use custom neovim binary: fvim --nvim ~/bin/nvim.appimage
    • Use the front end with a remote neovim: fvim --ssh user@host
    • Connect to a remote NeoVim backend: fvim --connect localhost:9527
    • tmux-like session server: fvim --fvr attach --ssh user@host
    • As a terminal emulator: fvim --terminal

Try these bindings (note, fvim-specific settings only work in ginit.vim, not init.vim!):

if exists('g:fvim_loaded')
    " good old 'set guifont' compatibility with HiDPI hints...
    if g:fvim_os == 'windows' || g:fvim_render_scale > 1.0
      set guifont=Iosevka\ Slab:h14
    else
      set guifont=Iosevka\ Slab:h28
    endif
      
    " Ctrl-ScrollWheel for zooming in/out
    nnoremap <silent> <C-ScrollWheelUp> :set guifont=+<CR>
    nnoremap <silent> <C-ScrollWheelDown> :set guifont=-<CR>
    nnoremap <A-CR> :FVimToggleFullScreen<CR>
endif

Some fancy cursor effects:

if exists('g:fvim_loaded')
    FVimCursorSmoothMove v:true
    FVimCursorSmoothBlink v:true
endif

fluent_cursor

Detaching a window into an external OS window with Ctrl-w ge: ext_win Detach as many and span them over your monitors!

Custom popup menu entry icons (see below for how to configure): image

Building from source

We're now targeting net6.0 so make sure to install the latest preview SDK from the .NET site. We're actively tracking the head of Avalonia, and fetch the nightly packages from myget (see NuGet.config).

Then, simply:

git clone https://github.com/yatli/fvim
cd fvim
dotnet build -c Release
dotnet run -c Release

FVim-specific commands

The following new commands are available:

" Toggle between normal and fullscreen
FVimToggleFullScreen

" Cursor tweaks
FVimCursorSmoothMove v:true
FVimCursorSmoothBlink v:true

" Background composition
FVimBackgroundComposition 'acrylic'   " 'none', 'transparent', 'blur' or 'acrylic'
FVimBackgroundOpacity 0.85            " value between 0 and 1, default bg opacity.
FVimBackgroundAltOpacity 0.85         " value between 0 and 1, non-default bg opacity.
FVimBackgroundImage 'C:/foobar.png'   " background image
FVimBackgroundImageVAlign 'center'    " vertial position, 'top', 'center' or 'bottom'
FVimBackgroundImageHAlign 'center'    " horizontal position, 'left', 'center' or 'right'
FVimBackgroundImageStretch 'fill'     " 'none', 'fill', 'uniform', 'uniformfill'
FVimBackgroundImageOpacity 0.85       " value between 0 and 1, bg image opacity

" Title bar tweaks
FVimCustomTitleBar v:true             " themed with colorscheme

" Debug UI overlay
FVimDrawFPS v:true

" Font tweaks
FVimFontAntialias v:true
FVimFontAutohint v:true
FVimFontHintLevel 'full'
FVimFontLigature v:true
FVimFontLineHeight '+1.0' " can be 'default', '14.0', '-1.0' etc.
FVimFontSubpixel v:true
FVimFontNoBuiltinSymbols v:true " Disable built-in Nerd font symbols

" Try to snap the fonts to the pixels, reduces blur
" in some situations (e.g. 100% DPI).
FVimFontAutoSnap v:true

" Font weight tuning, possible valuaes are 100..900
FVimFontNormalWeight 400
FVimFontBoldWeight 700

" Font debugging -- draw bounds around each glyph
FVimFontDrawBounds v:true

" UI options (all default to v:false)
FVimUIPopupMenu v:true      " external popup menu
FVimUIWildMenu v:false      " external wildmenu -- work in progress

" Keyboard mapping options
FVimKeyDisableShiftSpace v:true " disable unsupported sequence <S-Space>
FVimKeyAutoIme v:true           " Automatic input method engagement in Insert mode
FVimKeyAltGr v:true             " Recognize AltGr. Side effect is that <C-A-Key> is then impossible

" Default options (workspace-agnostic)
FVimDefaultWindowWidth 1600     " Default window size in a new workspace
FVimDefaultWindowHeight 900

" Detach from a remote session without killing the server
" If this command is executed on a standalone instance,
" the embedded process will be terminated anyway.
FVimDetach

" =========== BREAKING CHANGES -- the following commands are disabled ============
" FVimUIMultiGrid v:true     -- per-window grid system -- done and enabled by default
" FVimUITabLine v:false      -- external tabline -- not implemented
" FVimUICmdLine v:false      -- external cmdline -- not implemented
" FVimUIMessages v:false     -- external messages -- not implemented
" FVimUITermColors v:false   -- not implemented
" FVimUIHlState v:false      -- not implemented

Startup options

Usage: FVim [FVim-args] [NeoVim-args]

FVim-args:

    =========================== Client options ===================================

    --ssh user@host             Start NeoVim remotely over ssh
    --wsl                       Start NeoVim in WSL
    --nvim path-to-program      Use an alternative nvim program

    --nvr target                Connect to a remote NeoVim backend. The target
                                can be an IP endpoint (127.0.0.1:9527), or a
                                Unix socket address (/tmp/path/to/socket), or a
                                Windows named pipe (PipeName).

    --setup                     Registers FVim as a text editor, and updates
                                file association and icons. Requires UAC
                                elevation on Windows.
    --uninstall                 Unregisters FVim as a text editor, and removes
                                file association and icons. Requires UAC
                                elevation on Windows.

    =========================== FVim Remoting ====================================
                                
    --daemon                    Start a FVR multiplexer server.
                                Can be used with --nvim for alternative program.

    --pipe name                 Override the named pipe address of the daemon.
                                When this option is not given, defaults to
                                '/tmp/fvr-main'

    --fvr id [FILES...]         Connects to a FVR server.
    --fvr a[ttach] [FILES...]    - id: an integer session id to connect
    --fvr n[ew] [args...]        - attach: attach to the first available session 
                                 - new: create a new session with args passed to
                                   NeoVim.
                                Can be used with --ssh or --wsl for connecting a
                                remote server. If neither is specified, connects
                                to the local server.
                                Can be used with --pipe to override the server 
                                address.

    =========================== Debug options ====================================

    --trace-to-stdout           Trace to stdout.
    --trace-to-file             Trace to a file.
    --trace-patterns            Filter trace output by a list of keyword strings

    =========================== Terminal emulator ================================

    --terminal                  Start as a terminal emulator.
    --terminal-cmd              Command to run instead of the default shell.


The FVim arguments will be consumed and filtered before the rest are passed to NeoVim.

Custom PUM icons

Category PUM text FVim NERD equivalent
Text t Symbol
Method : Symbol
Function f Symbol
Constructor c Symbol
Field . Symbol
Variable v Symbol
Class C Symbol
Interface I Symbol
Module M Symbol
Property p Symbol
Unit U Symbol
Value l Symbol
Enum E Symbol
Keyword k Symbol
Snippet s Symbol
Color K Symbol
File F Symbol
Reference r Symbol
Folder d Symbol
EnumMember m Symbol
Constant 0 Symbol
Struct S Symbol
Event e Symbol
Operator o Symbol
TypeParameter T Symbol T

So instead of populating your symbol dictionary with the NERD-specific characters, use textual characters. FVim will pick them up and display graphical icons stored in Assets/intellisense instead.

Goals

  • Keep up with the latest NeoVim features
  • Ergonomics improvements via GUI/native OS integration
  • Drive the flexible and accessible UI extension method "UI Server Protocol"
    • The idea is to establish a standard protocol for UI extensions, so that the nice GUI additions are not limited to one specific front-end. Think of a front end as a UI server handling UI Server Protocol requests issued from front-end-agnostic plugins. It's like Language Server Protocol, but for UI.

Non-Goals

  • Electron ecosystem integration :p
  • No walled garden. Everything should be accessible from the NeoVim core, which means:
    • No project explorers -- use a NeoVim plugin
    • No custom tab lines / document wells -- use a NeoVim plugin
    • No side-by-side markdown viewer, unless it's a NeoVim plugin, implemented via the UI-Protocol extensions.

Fellow Front-Ends (to name a few)

fvim's People

Contributors

cro avatar dependabot[bot] avatar fornever avatar jjohnson338 avatar kalvinpearce avatar luxus avatar meluskyc avatar thautwarm avatar tssm avatar v-yadli avatar willehrendreich avatar yatli avatar z-shang avatar

Stargazers

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

Watchers

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

fvim's Issues

Incorrect text rendering

Screenshot_8
I'm having issues with text rendering. Build is latest, 0.1.130, downloaded archive, on Windows 10 with latest updates. All configuration is default with both neovim and fvim. Do I need to do some prerequisites or additional configuration?

Apple OS X crash 10.14.5

Trying to run FVim, but it's crashing on my system!

Here's the trace:

Process: FVim [1292]
Path: /Users/USER/Downloads/*/FVim
Identifier: FVim
Version: 0
Code Type: X86-64 (Native)
Parent Process: bash [1286]
Responsible: FVim [1292]
User ID: 501

Date/Time: 2019-08-20 22:02:11.915 -0400
OS Version: Mac OS X 10.14.5 (18F132)
Report Version: 12
Anonymous UUID: A0D226FA-C691-DB73-CC6D-EE57116EC811

Sleep/Wake UUID: C27CB349-28BF-408B-8996-115B08FB528A

Time Awake Since Boot: 19000 seconds
Time Since Wake: 360 seconds

System Integrity Protection: enabled

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

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

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff7115d2c6 __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff71218bf1 pthread_kill + 284
2 libsystem_c.dylib 0x00007fff710c76a6 abort + 127
3 libcoreclr.dylib 0x0000000100edac59 PROCAbort + 25
4 libcoreclr.dylib 0x0000000100edaba2 PROCEndProcess(void*, unsigned int, int) + 226
5 libcoreclr.dylib 0x00000001011a6981 UnwindManagedExceptionPass1(PAL_SEHException&, _CONTEXT*) + 833
6 libcoreclr.dylib 0x00000001011a6a15 DispatchManagedException(PAL_SEHException&, bool) + 133
7 libcoreclr.dylib 0x000000010110f4ee IL_Throw(Object*) + 750
8 ??? 0x0000000110d82f8d 0 + 4577570701
9 ??? 0x0000000110d80dac 0 + 4577562028
10 ??? 0x0000000110d7f33f 0 + 4577555263
11 ??? 0x0000000110d7e9a6 0 + 4577552806
12 ??? 0x0000000110d7da55 0 + 4577548885
13 ??? 0x0000000110d7c1f8 0 + 4577542648
14 ??? 0x0000000110d65662 0 + 4577449570
15 ??? 0x000000010fd24d83 0 + 4560407939
16 libcoreclr.dylib 0x000000010123dd97 CallDescrWorkerInternal + 124
17 libcoreclr.dylib 0x000000010109a349 MethodDescCallSite::CallTargetWorker(unsigned long const*, unsigned long*, int) + 1657
18 libcoreclr.dylib 0x0000000100f6b7c4 RunMain(MethodDesc*, short, int*, PtrArray**) + 756
19 libcoreclr.dylib 0x0000000100f6bb18 Assembly::ExecuteMainMethod(PtrArray**, int) + 408
20 libcoreclr.dylib 0x0000000100faa838 CorHost2::ExecuteAssembly(unsigned int, char16_t const*, int, char16_t const**, unsigned int*) + 504
21 libcoreclr.dylib 0x0000000100ee5262 coreclr_execute_assembly + 226
22 libhostpolicy.dylib 0x0000000100e529d8 0x100e42000 + 68056
23 libhostpolicy.dylib 0x0000000100e537e8 0x100e42000 + 71656
24 libhostfxr.dylib 0x0000000100e12933 0x100deb000 + 162099
25 libhostfxr.dylib 0x0000000100e11d02 0x100deb000 + 158978
26 libhostfxr.dylib 0x0000000100e0dd4a 0x100deb000 + 142666
27 FVim 0x0000000100dd1b6f 0x100dc6000 + 47983
28 FVim 0x0000000100dd1faf 0x100dc6000 + 49071
29 libdyld.dylib 0x00007fff710223d5 start + 1

Thread 1:
0 libsystem_kernel.dylib 0x00007fff7115722a mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7115776c mach_msg + 60
2 libcoreclr.dylib 0x0000000100ee1d28 MachMessage::Receive(unsigned int) + 72
3 libcoreclr.dylib 0x0000000100ee0c7e SEHExceptionThread(void*) + 94
4 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 2:
0 libsystem_kernel.dylib 0x00007fff7115f36e poll + 10
1 libcoreclr.dylib 0x0000000100ed34ae CorUnix::CPalSynchronizationManager::ThreadPrepareForShutdown() + 30
2 libcoreclr.dylib 0x0000000100ed50a5 CorUnix::CPalSynchronizationManager::WorkerThread(void*) + 949
3 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
4 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff711581ee __open + 10
1 libcoreclr.dylib 0x0000000100f5475f TwoWayPipe::WaitForConnection() + 31
2 libcoreclr.dylib 0x0000000100f4c357 DbgTransportSession::TransportWorker() + 167
3 libcoreclr.dylib 0x0000000100f4adb9 DbgTransportSession::TransportWorkerStatic(void*) + 9
4 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
5 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
6 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
7 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31db CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5 libcoreclr.dylib 0x0000000100ed7b32 WaitForMultipleObjectsEx + 82
6 libcoreclr.dylib 0x0000000100f49348 DebuggerRCThread::MainLoop() + 248
7 libcoreclr.dylib 0x0000000100f491ec DebuggerRCThread::ThreadProc() + 284
8 libcoreclr.dylib 0x0000000100f48f03 DebuggerRCThread::ThreadProcStatic(void*) + 131
9 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
10 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
11 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
12 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5 libcoreclr.dylib 0x0000000100ed7a6d WaitForSingleObjectEx + 77
6 libcoreclr.dylib 0x000000010117bc09 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7 libcoreclr.dylib 0x00000001010e671f FinalizerThread::WaitForFinalizerEvent(CLREvent*) + 31
8 libcoreclr.dylib 0x00000001010e6882 FinalizerThread::FinalizerThreadWorker(void*) + 98
9 libcoreclr.dylib 0x000000010105dc93 ManagedThreadBase_DispatchOuter(ManagedThreadCallState*) + 323
10 libcoreclr.dylib 0x000000010105e2e0 ManagedThreadBase::FinalizerBase(void ()(void)) + 32
11 libcoreclr.dylib 0x00000001010e6b78 FinalizerThread::FinalizerThreadStart(void*) + 504
12 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
13 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
14 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
15 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 6:
0 libsystem_kernel.dylib 0x00007fff7115b1ea __accept + 10
1 libcoreclr.dylib 0x0000000100f544be IpcStream::DiagnosticsIpc::Accept(void ()(char const, unsigned int)) const + 62
2 libcoreclr.dylib 0x00000001010c6530 DiagnosticsServerThread(void*) + 288
3 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
4 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
5 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
6 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 7:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7f3d SleepEx + 141
5 libcoreclr.dylib 0x00000001010831f2 ThreadpoolMgr::TimerThreadFire() + 146
6 libcoreclr.dylib 0x00000001010830c5 ThreadpoolMgr::TimerThreadStart(void*) + 181
7 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
8 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 8:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5 libcoreclr.dylib 0x0000000100ed7a18 PAL_WaitForSingleObjectPrioritized + 72
6 libcoreclr.dylib 0x000000010117c020 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7 libcoreclr.dylib 0x00000001010805fe ThreadpoolMgr::WorkerThreadStart(void*) + 974
8 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
9 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
11 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7f3d SleepEx + 141
5 libcoreclr.dylib 0x00000001010ef99f __SwitchToThread(unsigned int, unsigned int) + 15
6 libcoreclr.dylib 0x000000010108288c ThreadpoolMgr::GateThreadStart(void*) + 188
7 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
8 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
9 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
10 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 10:
0 libsystem_pthread.dylib 0x00007fff712153f0 start_wqthread + 0

Thread 11:
0 libsystem_pthread.dylib 0x00007fff712153f0 start_wqthread + 0

Thread 12:
0 libsystem_pthread.dylib 0x00007fff712153f0 start_wqthread + 0

Thread 13:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5 libcoreclr.dylib 0x0000000100ed7a18 PAL_WaitForSingleObjectPrioritized + 72
6 libcoreclr.dylib 0x000000010117c020 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7 libcoreclr.dylib 0x00000001010805fe ThreadpoolMgr::WorkerThreadStart(void*) + 974
8 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
9 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
11 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 14:
0 libsystem_kernel.dylib 0x00007fff7115a86a __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7121956e _pthread_cond_wait + 722
2 libcoreclr.dylib 0x0000000100ed31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3 libcoreclr.dylib 0x0000000100ed2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4 libcoreclr.dylib 0x0000000100ed7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5 libcoreclr.dylib 0x0000000100ed7a18 PAL_WaitForSingleObjectPrioritized + 72
6 libcoreclr.dylib 0x000000010117c020 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7 libcoreclr.dylib 0x00000001010805fe ThreadpoolMgr::WorkerThreadStart(void*) + 974
8 libcoreclr.dylib 0x0000000100ede5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
9 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
10 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
11 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 15:
0 libsystem_kernel.dylib 0x00007fff71158ef2 read + 10
1 System.Native.dylib 0x00000001025bb74f 0x1025b3000 + 34639
2 libsystem_pthread.dylib 0x00007fff712162eb _pthread_body + 126
3 libsystem_pthread.dylib 0x00007fff71219249 _pthread_start + 66
4 libsystem_pthread.dylib 0x00007fff7121540d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x000000010acfd5c0 rcx: 0x00007ffeeee375d8 rdx: 0x0000000000000000
rdi: 0x0000000000000307 rsi: 0x0000000000000006 rbp: 0x00007ffeeee37610 rsp: 0x00007ffeeee375d8
r8: 0x0000000000030e99 r9: 0xffffffff00000000 r10: 0x0000000000000000 r11: 0x0000000000000206
r12: 0x0000000000000307 r13: 0x00007ffeeee37c40 r14: 0x0000000000000006 r15: 0x000000000000002d
rip: 0x00007fff7115d2c6 rfl: 0x0000000000000206 cr2: 0x00007fffa7988188

Logical CPU: 0
Error Code: 0x02000148
Trap Number: 133

Binary Images:
0x100dc6000 - 0x100dd4ff3 +FVim (0) <40B73755-5FA7-3CB2-9E8C-2408ED8AC880> /Users/USER/Downloads//FVim
0x100deb000 - 0x100e39ffb +libhostfxr.dylib (0) <8085DAE7-969E-32A1-B562-D0D9492071D1> /Users/USER/Downloads/
/libhostfxr.dylib
0x100e42000 - 0x100e84ff3 +libhostpolicy.dylib (0) <0454C56E-6C3B-343B-804B-E8635C69532F> /Users/USER/Downloads//libhostpolicy.dylib
0x100e97000 - 0x1013c1fff +libcoreclr.dylib (0) <64414AE4-48A7-3B31-AFB4-8FBA0F9AFF3C> /Users/USER/Downloads/
/libcoreclr.dylib
0x101ab4000 - 0x101cd6ff7 +libclrjit.dylib (0) <908BE89F-5E64-3BAE-AD60-BAB3BB0DD6D0> /Users/USER/Downloads//libclrjit.dylib
0x1025b3000 - 0x1025bcff7 +System.Native.dylib (0) <2D14D17C-F3B8-3571-8593-5C1CCF99A758> /Users/USER/Downloads/
/System.Native.dylib
0x102631000 - 0x102639fff +System.Globalization.Native.dylib (0) /Users/USER/Downloads//System.Globalization.Native.dylib
0x1045ac000 - 0x1045b2ff7 +System.Security.Cryptography.Native.Apple.dylib (0) <89FFF799-2BE8-3E2B-8C0E-A06CC1EAD121> /Users/USER/Downloads/
/System.Security.Cryptography.Native.Apple.dylib
0x104e00000 - 0x104e0ffff +libAvaloniaNative.dylib (0) <0DA1E865-794A-3BE7-B2BF-5D9FF72C3FF2> /Users/USER/Downloads//libAvaloniaNative.dylib
0x106516000 - 0x106ba3fcf +libSkiaSharp.dylib (0) <4B09ECE2-678A-3E0D-BB86-FB4AA9A70196> /Users/USER/Downloads/
/libSkiaSharp.dylib
0x10ac5b000 - 0x10acc56ef dyld (655.1.1) /usr/lib/dyld
0x7fff3ea24000 - 0x7fff3f7f8fff com.apple.driver.AppleIntelSKLGraphicsGLDriver (12.9.22 - 12.0.9) <7D3321E3-E3E5-3AAE-B49C-9F8C676B1D15> /System/Library/Extensions/AppleIntelSKLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelSKLGraphicsGLDriver
0x7fff4152f000 - 0x7fff4152ffff com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff41547000 - 0x7fff41be0fef com.apple.vImage (8.1 - ???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff41be1000 - 0x7fff41e5aff3 libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff41e5b000 - 0x7fff41ecdffb libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff41ece000 - 0x7fff42277ff3 libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff42278000 - 0x7fff4228dfeb libLinearAlgebra.dylib (1243.200.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff4228e000 - 0x7fff42293ff3 libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff42294000 - 0x7fff42310ff3 libSparse.dylib (79.200.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff42311000 - 0x7fff42324fe3 libSparseBLAS.dylib (1243.200.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff42325000 - 0x7fff4250cff7 libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff4250d000 - 0x7fff425c0ff7 libvMisc.dylib (671.250.4) <73637194-497A-39F9-90F5-004DA772AC69> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff425c1000 - 0x7fff425c1fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff42763000 - 0x7fff43518ff3 com.apple.AppKit (6.9 - 1671.50.111) <933155DC-6404-3646-B6AE-087D34F611BE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff4356a000 - 0x7fff4356afff com.apple.ApplicationServices (50.1 - 50.1) <4A6ACC13-2623-36B8-A196-2300980803CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff4356b000 - 0x7fff435d6fff com.apple.ApplicationServices.ATS (377 - 453.11.2.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff4366f000 - 0x7fff43786fff libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff43787000 - 0x7fff437c9fff libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff438ba000 - 0x7fff438beff3 com.apple.ColorSyncLegacy (4.13.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff43959000 - 0x7fff439abff7 com.apple.HIServices (1.22 - 628) <26A8B7C0-41CC-3DB4-99D7-BD922866DC77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff439ac000 - 0x7fff439bbfff com.apple.LangAnalysis (1.7.0 - 1.7.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff439bc000 - 0x7fff43a05ff7 com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff43a06000 - 0x7fff43a3fff7 com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff43a40000 - 0x7fff43a4cfff com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <80FA7439-EC77-3CEC-B5D1-5EFE9E503E11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff43a4d000 - 0x7fff43cc4ff7 com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff43cc6000 - 0x7fff43cc6fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <121176B6-7ABE-3AFB-A252-CCED694D98D4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff4401e000 - 0x7fff443bffff com.apple.CFNetwork (978.0.7 - 978.0.7) <9FDEFE50-BE1B-386E-8B3C-AEF251069E52> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff443d9000 - 0x7fff446cfff7 com.apple.HIToolbox (2.1.1 - 918.5) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff446da000 - 0x7fff4476fff3 com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff447ad000 - 0x7fff447b3ff7 com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff448d5000 - 0x7fff448d5fff com.apple.Cocoa (6.11 - 23) <9378783B-65FE-3E78-A7D5-0D11EE9117AE> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff448e3000 - 0x7fff449afff7 com.apple.ColorSync (4.13.0 - 3340.7) <74B373AB-42C7-330D-A577-1C43BFA6024F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff44b3b000 - 0x7fff44bc1fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff44c25000 - 0x7fff44c4fffb com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff44c50000 - 0x7fff44fd4fe3 com.apple.CoreData (120 - 866.5) <37F35F2E-FE57-3E3F-A1E5-AD274A8C1FDE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff44fd5000 - 0x7fff450bcff7 com.apple.CoreDisplay (101.3 - 109.19) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff450bd000 - 0x7fff45501fff com.apple.CoreFoundation (6.9 - 1575.12) <64C38BF2-1869-33C8-B1B6-DCA9C824C0E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff45503000 - 0x7fff45b92fe7 com.apple.CoreGraphics (2.0 - 1260.2) <23436C9A-7D62-3E9F-867A-798C93B52080> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff45b94000 - 0x7fff45eb4fff com.apple.CoreImage (14.4.0 - 750.0.140) <96FA4D1B-AC88-305C-8F4D-D7D44657B733> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff46312000 - 0x7fff46312fff com.apple.CoreServices (945 - 945) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff46313000 - 0x7fff4638fff7 com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff46390000 - 0x7fff46667fff com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) <52F5484E-94B1-37B7-B1AC-E210DF5721AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff46668000 - 0x7fff466b0ff7 com.apple.DictionaryServices (1.2 - 284.16.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff466b1000 - 0x7fff466b9ffb com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff466ba000 - 0x7fff4686cfff com.apple.LaunchServices (945 - 945) <05FA145B-75AA-3AE6-BB82-F156B29F4FF1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff4686d000 - 0x7fff4690bff7 com.apple.Metadata (10.7.0 - 1191.57) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff4690c000 - 0x7fff46956ff7 com.apple.CoreServices.OSServices (945 - 945) <119C5548-59C3-3F94-B23F-8AF02CA10EAA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff46957000 - 0x7fff469beff7 com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff469bf000 - 0x7fff469e0ff3 com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff46ceb000 - 0x7fff46e4dff3 com.apple.CoreText (352.0 - 584.26.3.2) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff46e4e000 - 0x7fff46e8dfff com.apple.CoreVideo (1.8 - 0.0) <1AD23C58-E68E-329B-A1FA-6BF7DD577687> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff46e8e000 - 0x7fff46f1dfff com.apple.framework.CoreWLAN (13.0 - 1375.2) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff47174000 - 0x7fff47179ffb com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff4733f000 - 0x7fff476ecfff com.apple.Foundation (6.9 - 1575.12) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff4775b000 - 0x7fff4778affb com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff4788a000 - 0x7fff47994fff com.apple.Bluetooth (6.0.12 - 6.0.12f1) <58A607F0-A818-3535-A7BD-858D5BB0A807> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff479f6000 - 0x7fff47a85fff com.apple.framework.IOKit (2.0.2 - 1483.260.4) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff47a87000 - 0x7fff47a96ffb com.apple.IOSurface (255.5.4 - 255.5.4) <83F58E47-0D06-3E78-9D19-D38D3205464B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff47aea000 - 0x7fff47c75fef com.apple.ImageIO.framework (3.3.0 - 1850.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff47c76000 - 0x7fff47c7affb libGIF.dylib (1850.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff47c7b000 - 0x7fff47d57fef libJP2.dylib (1850.2) <7FAC16D8-1144-30A1-BABC-008423C7A851> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff47d58000 - 0x7fff47d7dfeb libJPEG.dylib (1850.2) <78401F6E-345B-3179-A82A-01F813F15D95> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff48040000 - 0x7fff48066feb libPng.dylib (1850.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff48067000 - 0x7fff48069ffb libRadiance.dylib (1850.2) <92529333-0935-341B-B271-69C235FEF6B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff4806a000 - 0x7fff480b7fe7 libTIFF.dylib (1850.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff4922e000 - 0x7fff49247fff com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff49c63000 - 0x7fff49d0bff7 com.apple.Metal (161.9.16 - 161.9.16) /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff49d27000 - 0x7fff49d46ff7 com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff49d47000 - 0x7fff49dc3fe7 com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <5A78F2DC-9D2B-37BA-B21F-ECFFCC6F7720> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff49dc4000 - 0x7fff49debfff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <096DB3E6-7DDF-3B47-857A-46A203642ACF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff49dec000 - 0x7fff49f17ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff49f18000 - 0x7fff49f32fff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
0x7fff49f33000 - 0x7fff49f34ff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <515A92B3-A23B-3AC2-8D1B-85B248595B76> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff4ad2b000 - 0x7fff4ad37ff7 com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff4d7cc000 - 0x7fff4d7d4fe3 libcldcpuengine.dylib (2.11) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff4d7d5000 - 0x7fff4d82cff7 com.apple.opencl (2.15.3 - 2.15.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff4d82d000 - 0x7fff4d848ff7 com.apple.CFOpenDirectory (10.14 - 207.200.4) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff4d849000 - 0x7fff4d854ffb com.apple.OpenDirectory (10.14 - 207.200.4) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff4e1a4000 - 0x7fff4e1a6fff libCVMSPluginSupport.dylib (17.7.2) <247121BB-626C-318E-B24E-3D436E752DF7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff4e1a7000 - 0x7fff4e1acff3 libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff4e1ad000 - 0x7fff4e1b1fff libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff4e1b2000 - 0x7fff4e1baff7 libGFXShared.dylib (17.7.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff4e1bb000 - 0x7fff4e1c6fff libGL.dylib (17.7.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff4e1c7000 - 0x7fff4e201fe7 libGLImage.dylib (17.7.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff4e202000 - 0x7fff4e374ff7 libGLProgrammability.dylib (17.7.2) <4866D792-5676-3F2F-877E-B9751D4E3F76> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff4e375000 - 0x7fff4e3b3fff libGLU.dylib (17.7.2) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff4ed50000 - 0x7fff4ed5fffb com.apple.opengl (17.7.2 - 17.7.2) <8EFFA6F9-ABE8-3131-9D3F-37E9796DDF34> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff4ed60000 - 0x7fff4eef7ff7 GLEngine (17.7.2) <874C8157-78AF-32A8-8BD1-85FDBCEF9E2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff4eef8000 - 0x7fff4ef21ff3 GLRendererFloat (17.7.2) <81263D77-B1BE-3F43-934C-1D7DB42F31FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff4fb62000 - 0x7fff4fdb8fff com.apple.QuartzCore (1.11 - 699.27.4.1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff505ed000 - 0x7fff508ecfff com.apple.security (7.0 - 58286.260.20) <59B4100E-5A31-3EF4-954A-2A69341995F3> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff508ed000 - 0x7fff50979fff com.apple.securityfoundation (6.0 - 55185.260.1) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff509ab000 - 0x7fff509affff com.apple.xpc.ServiceManagement (1.0 - 1) <4AD0F8EE-884C-3FA7-85D9-27F201BC3C64> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff50d47000 - 0x7fff50db4fff com.apple.SystemConfiguration (1.17 - 1.17) <1562078D-3251-31B2-B9C6-2667C567F883> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff54033000 - 0x7fff540d8feb com.apple.APFS (1.0 - 1) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff54aea000 - 0x7fff54aebff7 com.apple.AggregateDictionary (1.0 - 1) /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
0x7fff550e9000 - 0x7fff55115ff7 com.apple.framework.Apple80211 (13.0 - 1380.2) <3850E3A9-E00A-374E-87EA-AB01E503E769> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff5523d000 - 0x7fff5524cfc7 com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff55348000 - 0x7fff55353fff com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff55394000 - 0x7fff553ddff3 com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff55631000 - 0x7fff55653fff com.apple.applesauce (1.0 - ???) /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff557b2000 - 0x7fff557c6ffb com.apple.AssertionServices (1.0 - 1) <11FC4241-6069-3B3A-9BCE-9B68F3A4D2AB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
0x7fff55b95000 - 0x7fff55c81ff7 com.apple.AuthKit (1.0 - 1) <34496FD5-4BAB-3DF3-BF7F-70F38C66848D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff55e43000 - 0x7fff55e4bfff com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff55e4c000 - 0x7fff55ee1fff com.apple.backup.framework (1.10.5 - ???) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff55ee2000 - 0x7fff55f4fff3 com.apple.BaseBoard (360.28 - 360.28) /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
0x7fff57bb9000 - 0x7fff57bc2ffb com.apple.CommonAuth (4.0 - 2.0) <81C987FD-69EB-344B-94D9-B9D93624D257> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff5889a000 - 0x7fff588abff7 com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff58e54000 - 0x7fff58ebaff7 com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff59167000 - 0x7fff5916fff7 com.apple.CorePhoneNumbers (1.0 - 1) <7A826DA2-4725-39D8-AF27-6F034DC53C4E> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff592eb000 - 0x7fff5931cff3 com.apple.CoreServicesInternal (358 - 358) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff596e3000 - 0x7fff59767fff com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff597f7000 - 0x7fff59922ff7 com.apple.coreui (2.1 - 499.10) <105F61F3-D0AE-332B-A485-8615187BB409> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff59923000 - 0x7fff59ac1fff com.apple.CoreUtils (5.8 - 580.19) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff59b15000 - 0x7fff59b78ff7 com.apple.framework.CoreWiFi (13.0 - 1375.2) <77E078A7-A34F-333B-B50F-8829537D6E9D> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff59b79000 - 0x7fff59b8aff7 com.apple.CrashReporterSupport (10.13 - 938.25) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff59c1a000 - 0x7fff59c29fff com.apple.framework.DFRFoundation (1.0 - 211.1) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff59c2a000 - 0x7fff59c2efff com.apple.DSExternalDisplay (3.1 - 380) <645C719D-05D4-3CD7-84D7-4C5218859E0C> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff59caf000 - 0x7fff59d24ff3 com.apple.datadetectorscore (7.0 - 590.24) <72F0CBF1-D3E9-36C5-B877-F42E1EC59A0E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff59d70000 - 0x7fff59dadff7 com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff59dae000 - 0x7fff59ee9ff7 com.apple.desktopservices (1.13.5 - ???) <4AF2E011-2CB0-3588-83CB-882ADDA78CAD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff5ae26000 - 0x7fff5b241fff com.apple.vision.FaceCore (3.3.4 - 3.3.4) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff6018a000 - 0x7fff60195ff7 libGPUSupportMercury.dylib (17.7.2) <3D6CEEFC-4A13-3841-A958-2077BD0A51AC> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff60196000 - 0x7fff6019bfff com.apple.GPUWrangler (3.40.16 - 3.40.16) /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
0x7fff60fa6000 - 0x7fff60fb5fff com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff61105000 - 0x7fff61179ffb com.apple.Heimdal (4.0 - 2.0) <5E8F6B79-960D-3030-B889-D29A4015D205> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff62468000 - 0x7fff6246fffb com.apple.IOAccelerator (404.9 - 404.9) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff62473000 - 0x7fff6248bfff com.apple.IOPresentment (1.0 - 42.6) <55CB91EF-90F1-3D0A-A59E-2F75CD2EB4AE> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff62833000 - 0x7fff62860ff7 com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff62af4000 - 0x7fff62b06ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <5AAC527E-D197-39B2-A6C9-E0D0FB9CA9B9> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff62b21000 - 0x7fff62bfcff7 com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff62bfd000 - 0x7fff62c39ff7 com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff62c40000 - 0x7fff62c45fff com.apple.LinguisticData (1.0 - 238.25) <61910887-D5CE-3567-9A5F-6DFEC942EC1F> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff6393a000 - 0x7fff63962ff7 com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
0x7fff63963000 - 0x7fff639f0ff7 com.apple.gpusw.MetalTools (1.0 - 1) /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff63b9d000 - 0x7fff63bb8ffb com.apple.MobileKeyBag (2.0 - 1.0) <4678FECE-538B-381C-80F2-27AA4805F160> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff63c41000 - 0x7fff63c6bffb com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <3BF81F33-89A8-3A2D-84B3-B343020B6D98> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff63ea7000 - 0x7fff63eb1fff com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff64712000 - 0x7fff64763ff3 com.apple.OTSVG (1.0 - ???) <3976F8CC-1CFB-3E09-9009-FE985550565B> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
0x7fff658e8000 - 0x7fff658f7ff7 com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff67787000 - 0x7fff677a5ff7 com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff6793d000 - 0x7fff6798dfff com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
0x7fff67adc000 - 0x7fff67afefff com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff69303000 - 0x7fff69421fff com.apple.Sharing (1288.43 - 1288.43) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff6a232000 - 0x7fff6a4e0ffb com.apple.SkyLight (1.600.0 - 340.26) /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff6ac82000 - 0x7fff6ac8efff com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff6b3df000 - 0x7fff6b46afc7 com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff6b952000 - 0x7fff6b95effb com.apple.TCC (1.0 - 1) <968ECAE1-FBB9-3478-BDCE-85E54B6C422D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff6bbc4000 - 0x7fff6bc8cff3 com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff6bd42000 - 0x7fff6bd43fff com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff6bd49000 - 0x7fff6beffff7 com.apple.UIFoundation (1.0 - 551) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff6d42b000 - 0x7fff6d42efff com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
0x7fff6d82f000 - 0x7fff6d831ffb com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff6dafb000 - 0x7fff6db2ffff libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
0x7fff6db32000 - 0x7fff6db3cff7 libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
0x7fff6dbca000 - 0x7fff6dbcbffb libDiagnosticMessagesClient.dylib (107) /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff6dc02000 - 0x7fff6de59ff3 libFosl_dynamic.dylib (18.3.4) <45E50221-1A39-3AB3-8267-C1E4E39ECF83> /usr/lib/libFosl_dynamic.dylib
0x7fff6deaa000 - 0x7fff6dec8fff libMobileGestalt.dylib (645.260.6) <0232958E-1EF2-3627-B8FF-09C6522594C7> /usr/lib/libMobileGestalt.dylib
0x7fff6dec9000 - 0x7fff6dec9fff libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff6e009000 - 0x7fff6e00affb libSystem.B.dylib (1252.250.1) <1A13E822-B59C-3A36-A2E4-9968149714F9> /usr/lib/libSystem.B.dylib
0x7fff6e086000 - 0x7fff6e087fff libThaiTokenizer.dylib (2.15.1) /usr/lib/libThaiTokenizer.dylib
0x7fff6e099000 - 0x7fff6e0afffb libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
0x7fff6e0b0000 - 0x7fff6e0d9ffb libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
0x7fff6e0da000 - 0x7fff6e159fff libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
0x7fff6e15d000 - 0x7fff6e15dff3 libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
0x7fff6e22d000 - 0x7fff6e23dffb libbsm.0.dylib (39.200.18) /usr/lib/libbsm.0.dylib
0x7fff6e23e000 - 0x7fff6e24bfff libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
0x7fff6e24c000 - 0x7fff6e29fff7 libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
0x7fff6e2a0000 - 0x7fff6e2b5ff7 libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
0x7fff6e2b6000 - 0x7fff6e2b6ff3 libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
0x7fff6e2b7000 - 0x7fff6e2c7ffb libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
0x7fff6e2c8000 - 0x7fff6e2e0ffb libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
0x7fff6e555000 - 0x7fff6e56bfff libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
0x7fff6e56c000 - 0x7fff6e56dff3 libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
0x7fff6e70b000 - 0x7fff6e803ff7 libcrypto.35.dylib (22.260.1) <03FBCE39-6B59-314E-A18C-CF045D132C4A> /usr/lib/libcrypto.35.dylib
0x7fff6ea19000 - 0x7fff6ea6fff7 libcups.2.dylib (462.10) <2AC7B8C3-0D25-3E0F-A34A-94658A06FF94> /usr/lib/libcups.2.dylib
0x7fff6eba3000 - 0x7fff6eba3fff libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
0x7fff6ebd5000 - 0x7fff6ebdaff7 libgermantok.dylib (17.15.2) /usr/lib/libgermantok.dylib
0x7fff6ebdb000 - 0x7fff6ebe0ff7 libheimdal-asn1.dylib (520.260.1) /usr/lib/libheimdal-asn1.dylib
0x7fff6ec0b000 - 0x7fff6ecfbfff libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
0x7fff6ecfc000 - 0x7fff6ef5dfff libicucore.A.dylib (62135.0.1) <2B292561-798A-381C-AA41-90EE6549C7CF> /usr/lib/libicucore.A.dylib
0x7fff6efaa000 - 0x7fff6efabfff liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
0x7fff6efac000 - 0x7fff6efc4ff3 liblzma.5.dylib (10.200.3) /usr/lib/liblzma.5.dylib
0x7fff6efdc000 - 0x7fff6f080ff7 libmecab.1.0.0.dylib (779.24.1) /usr/lib/libmecab.1.0.0.dylib
0x7fff6f081000 - 0x7fff6f285fff libmecabra.dylib (779.24.1) /usr/lib/libmecabra.dylib
0x7fff6f45d000 - 0x7fff6f7aeff7 libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
0x7fff6f840000 - 0x7fff6ffc5fdf libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
0x7fff6ffd7000 - 0x7fff6ffdbffb libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
0x7fff6ffde000 - 0x7fff70013fff libpcap.A.dylib (79.250.1) /usr/lib/libpcap.A.dylib
0x7fff7012c000 - 0x7fff70144ffb libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
0x7fff70197000 - 0x7fff70374fe7 libsqlite3.dylib (274.25) <55CE34C4-00C0-3844-B7ED-80FA7F0AF03F> /usr/lib/libsqlite3.dylib
0x7fff7058d000 - 0x7fff70590ff7 libutil.dylib (51.200.4) /usr/lib/libutil.dylib
0x7fff70591000 - 0x7fff7059efff libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
0x7fff705a3000 - 0x7fff70685ff3 libxml2.2.dylib (32.8) <54F896CF-6D83-300B-9CD9-1636BE5375A4> /usr/lib/libxml2.2.dylib
0x7fff70686000 - 0x7fff706aeff3 libxslt.1.dylib (16.1) <31F7018B-D8F2-36ED-A13B-1E5A16DFAAA1> /usr/lib/libxslt.1.dylib
0x7fff706af000 - 0x7fff706c1ff7 libz.1.dylib (70.200.4) /usr/lib/libz.1.dylib
0x7fff70ea5000 - 0x7fff70ea9ff3 libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
0x7fff70eaa000 - 0x7fff70eb4ff3 libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
0x7fff70eb5000 - 0x7fff70ebcff7 libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
0x7fff70ebd000 - 0x7fff70ec6ff7 libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
0x7fff70ec7000 - 0x7fff70f4bfc3 libcorecrypto.dylib (602.260.2) /usr/lib/system/libcorecrypto.dylib
0x7fff70fd2000 - 0x7fff7100bff7 libdispatch.dylib (1008.250.7) <26DF5B1E-A388-38EF-B73B-AF0E93FB02DB> /usr/lib/system/libdispatch.dylib
0x7fff7100c000 - 0x7fff71038ff7 libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
0x7fff71039000 - 0x7fff71039ffb libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
0x7fff7103a000 - 0x7fff71046ff3 libkxld.dylib (4903.261.4) <71CF1ECD-AC4E-3FDD-BEDF-14933D843EEE> /usr/lib/system/libkxld.dylib
0x7fff71047000 - 0x7fff71047ff7 liblaunch.dylib (1336.261.2) /usr/lib/system/liblaunch.dylib
0x7fff71048000 - 0x7fff7104dfff libmacho.dylib (927.0.2) <3C5C9024-45FD-38C2-B01A-07A322966063> /usr/lib/system/libmacho.dylib
0x7fff7104e000 - 0x7fff71050ffb libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
0x7fff71051000 - 0x7fff71052ff7 libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
0x7fff71053000 - 0x7fff7106aff3 libsystem_asl.dylib (356.200.4) /usr/lib/system/libsystem_asl.dylib
0x7fff7106b000 - 0x7fff7106bff7 libsystem_blocks.dylib (73) /usr/lib/system/libsystem_blocks.dylib
0x7fff7106c000 - 0x7fff710f3fff libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
0x7fff710f4000 - 0x7fff710f7ffb libsystem_configuration.dylib (963.260.1) /usr/lib/system/libsystem_configuration.dylib
0x7fff710f8000 - 0x7fff710fbff7 libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
0x7fff710fc000 - 0x7fff71102fff libsystem_darwin.dylib (1272.250.1) /usr/lib/system/libsystem_darwin.dylib
0x7fff71103000 - 0x7fff71109ff7 libsystem_dnssd.dylib (878.260.1) <64B79B01-B1B0-3C7E-87A1-023B71843F1F> /usr/lib/system/libsystem_dnssd.dylib
0x7fff7110a000 - 0x7fff71155ffb libsystem_info.dylib (517.200.9) /usr/lib/system/libsystem_info.dylib
0x7fff71156000 - 0x7fff7117eff7 libsystem_kernel.dylib (4903.261.4) <7B0F52C4-4CC9-3282-8457-C18C6FE1B99E> /usr/lib/system/libsystem_kernel.dylib
0x7fff7117f000 - 0x7fff711caff7 libsystem_m.dylib (3158.200.7) /usr/lib/system/libsystem_m.dylib
0x7fff711cb000 - 0x7fff711f5fff libsystem_malloc.dylib (166.261.1) <4D1CEF38-DE32-3ECF-9F70-0ADDD5C8775F> /usr/lib/system/libsystem_malloc.dylib
0x7fff711f6000 - 0x7fff71200ff7 libsystem_networkextension.dylib (767.250.2) /usr/lib/system/libsystem_networkextension.dylib
0x7fff71201000 - 0x7fff71208fff libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
0x7fff71209000 - 0x7fff71212fef libsystem_platform.dylib (177.250.1) <16949870-9152-3B0D-9EF0-40FAF84B0F1E> /usr/lib/system/libsystem_platform.dylib
0x7fff71213000 - 0x7fff7121dff7 libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
0x7fff7121e000 - 0x7fff71221ff7 libsystem_sandbox.dylib (851.260.2) <9CACC5F5-3859-3A1F-BCC6-96DDD4A556A8> /usr/lib/system/libsystem_sandbox.dylib
0x7fff71222000 - 0x7fff71224ff3 libsystem_secinit.dylib (30.260.2) <88F3CE61-5FAD-3CDA-AA13-B5B18B3EBD26> /usr/lib/system/libsystem_secinit.dylib
0x7fff71225000 - 0x7fff7122cff3 libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
0x7fff7122d000 - 0x7fff71242fff libsystem_trace.dylib (906.260.1) <100013AE-0443-3CF0-AC17-5D934608B60B> /usr/lib/system/libsystem_trace.dylib
0x7fff71244000 - 0x7fff71249ffb libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
0x7fff7124a000 - 0x7fff71279fff libxpc.dylib (1336.261.2) <9A0FFA79-082F-3293-BF49-63976B073B74> /usr/lib/system/libxpc.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 11022
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=401.8M resident=0K(0%) swapped_out_or_unallocated=401.8M(100%)
Writable regions: Total=81.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=81.5M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 256K 1
CoreServices 140K 1
CoreUI image file 332K 3
Dispatch continuations 8192K 1
Kernel Alloc Once 8K 1
MALLOC 43.9M 35
MALLOC guard page 16K 4
STACK GUARD 56.1M 16
Stack 15.1M 16
VM_ALLOCATE 2.1G 135
VM_ALLOCATE (reserved) 64K 1 reserved VM address space (unallocated)
__DATA 26.1M 241
__FONT_DATA 4K 1
__GLSLBUILTINS 5176K 1
__LINKEDIT 224.7M 12
__TEXT 177.1M 245
__UNICODE 564K 1
mapped file 68.8M 94
shared memory 684K 8
=========== ======= =======
TOTAL 2.8G 817
TOTAL, minus reserved VM space 2.8G 817

Model: MacBookPro13,1, BootROM 233.0.0.0.0, 2 processors, Intel Core i5, 2 GHz, 8 GB, SMC 2.36f97
Graphics: kHW_IntelIrisGraphics540Item, Intel Iris Graphics 540, spdisplays_builtin
Memory Module: BANK 0/DIMM0, 4 GB, LPDDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424A544D4C41522D4E5544
Memory Module: BANK 1/DIMM0, 4 GB, LPDDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424A544D4C41522D4E5544
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x159), Broadcom BCM43xx 1.0 (7.77.61.2 AirPortDriverBrcmNIC-1305.8)
Bluetooth: Version 6.0.12f1, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.0 Bus
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.1

Set line-height

Hello,

Is there a way to configure the line-height used by Fvim? Ideally I would like to increase it a bit...

Add Powerline Extra Symbols

With my lightline config:

let g:lightline.separator = { 'left': "\ue0b8", 'right': "\ue0ba" }
let g:lightline.subseparator = { 'left': "\ue0b9", 'right': "\ue0b9" }

You can see some symbols don't show as expected.
Screenshot from 2019-05-18 12 00 59

neovim rejects UI attachment with unrecognized options

First of all: Nice to see a neovim UI using a functional language (I am into Clojure :-) ) --- and a UI that doesn't use electron...

On Windows Version 10.0.17134 Build 17134 I get a blank screen when starting FVim
grafik

Neovim is 0.3.4 and init.vim is blank (for testing)

How to use?

Hey!
Where can I find instructions?
How can I run it?
What should I install?
Etc.

Issue in the documentation regarding distribution

You state in the documentation, that dpkg ... .deb is the way to install fvim on Linux. This will not work on over 60 percent of all cases, since there are other distributions out there, next to .deb based ones.

Issues with keymaps on macOS

Steps to reproduce:

  1. Insert mode
  2. type “backtick” (`) char, equals = char, tilda ~ char or plus + char

Expected:

backtick, equals, tilda, or plus is written

Actual:

“none” is written for backtick and equals
nothing is written for tilda and plus

image

NOTE:

on my keyboard layout (standard en-US), tilda is accessed via SHIFT+` and plus is accessed via SHIFT++

Colemak layout

Hello,

I've set my US keyboard to use a Colemak layout in macOS. I'm noticing that fvim still inputs characters as if I was on the default layout.

I saw that in the readme you mentioned that the input method support is still a work in progress.

So this means that for now Colemak is not yet supported or is there a way to activate support for it?

And thanks for this great software, I was testing it briefly and the text rendering looks great! I'm looking forward using fvim more in the future!

Running multiple instances, launching from command line (macOS)

Hello,

So far I was just launching the app by double-clicking the FVim.app that came with the dmg release. I was wondering if I could have several fvim processes with different projects (root workspace folders) in them?

Is there way to launch multiple instances of fvim and/or launch it from the command line? The launch options from readme give me some hint that it's possible.

Crash on macOS 10.14.5 (18F203)

here is the detail:

Process:               FVim [7819]
Path:                  /Applications/FVim.app/Contents/MacOS/FVim
Identifier:            com.fvim.www
Version:               0.01 (0)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           FVim [7819]
User ID:               501

Date/Time:             2019-08-05 10:59:59.258 +0800
OS Version:            Mac OS X 10.14.5 (18F203)
Report Version:        12
Bridge OS Version:     3.5 (16P5200)
Anonymous UUID:        5D843199-A3D2-11A5-24B4-9197390B37E1

Sleep/Wake UUID:       8970378D-8B12-4F89-8337-E548DFABF5FB

Time Awake Since Boot: 270000 seconds
Time Since Wake:       4000 seconds

System Integrity Protection: enabled

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

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

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff5fa9d2c6 __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff5fb58bf1 pthread_kill + 284
2   libsystem_c.dylib             	0x00007fff5fa076a6 abort + 127
3   libcoreclr.dylib              	0x00000001013dac59 PROCAbort + 25
4   libcoreclr.dylib              	0x00000001013daba2 PROCEndProcess(void*, unsigned int, int) + 226
5   libcoreclr.dylib              	0x00000001016a6981 UnwindManagedExceptionPass1(PAL_SEHException&, _CONTEXT*) + 833
6   libcoreclr.dylib              	0x00000001016a6a15 DispatchManagedException(PAL_SEHException&, bool) + 133
7   libcoreclr.dylib              	0x000000010160f4ee IL_Throw(Object*) + 750
8   ???                           	0x0000000108dd40cd 0 + 4443685069
9   ???                           	0x0000000108dd112c 0 + 4443672876
10  ???                           	0x0000000108dcf88f 0 + 4443666575
11  ???                           	0x0000000108dced96 0 + 4443663766
12  ???                           	0x0000000108dcdf01 0 + 4443660033
13  ???                           	0x0000000108dcc6f8 0 + 4443653880
14  ???                           	0x0000000108db46b5 0 + 4443555509
15  ???                           	0x0000000108234d8d 0 + 4431498637
16  libcoreclr.dylib              	0x000000010173dd97 CallDescrWorkerInternal + 124
17  libcoreclr.dylib              	0x000000010159a349 MethodDescCallSite::CallTargetWorker(unsigned long const*, unsigned long*, int) + 1657
18  libcoreclr.dylib              	0x000000010146b7c4 RunMain(MethodDesc*, short, int*, PtrArray**) + 756
19  libcoreclr.dylib              	0x000000010146bb18 Assembly::ExecuteMainMethod(PtrArray**, int) + 408
20  libcoreclr.dylib              	0x00000001014aa838 CorHost2::ExecuteAssembly(unsigned int, char16_t const*, int, char16_t const**, unsigned int*) + 504
21  libcoreclr.dylib              	0x00000001013e5262 coreclr_execute_assembly + 226
22  libhostpolicy.dylib           	0x00000001013529d8 0x101342000 + 68056
23  libhostpolicy.dylib           	0x00000001013537e8 0x101342000 + 71656
24  libhostfxr.dylib              	0x0000000101312933 0x1012eb000 + 162099
25  libhostfxr.dylib              	0x0000000101311d02 0x1012eb000 + 158978
26  libhostfxr.dylib              	0x000000010130dd4a 0x1012eb000 + 142666
27  FVim                          	0x00000001012c2b6f 0x1012b7000 + 47983
28  FVim                          	0x00000001012c2faf 0x1012b7000 + 49071
29  libdyld.dylib                 	0x00007fff5f9623d5 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff5fa9722a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff5fa9776c mach_msg + 60
2   libcoreclr.dylib              	0x00000001013e1d28 MachMessage::Receive(unsigned int) + 72
3   libcoreclr.dylib              	0x00000001013e0c7e SEHExceptionThread(void*) + 94
4   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 2:
0   libsystem_kernel.dylib        	0x00007fff5fa9f36e poll + 10
1   libcoreclr.dylib              	0x00000001013d34ae CorUnix::CPalSynchronizationManager::ThreadPrepareForShutdown() + 30
2   libcoreclr.dylib              	0x00000001013d50a5 CorUnix::CPalSynchronizationManager::WorkerThread(void*) + 949
3   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
4   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 3:
0   libsystem_kernel.dylib        	0x00007fff5fa981ee __open + 10
1   libcoreclr.dylib              	0x000000010145475f TwoWayPipe::WaitForConnection() + 31
2   libcoreclr.dylib              	0x000000010144c357 DbgTransportSession::TransportWorker() + 167
3   libcoreclr.dylib              	0x000000010144adb9 DbgTransportSession::TransportWorkerStatic(void*) + 9
4   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
5   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
6   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
7   libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31db CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 347
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5   libcoreclr.dylib              	0x00000001013d7b32 WaitForMultipleObjectsEx + 82
6   libcoreclr.dylib              	0x0000000101449348 DebuggerRCThread::MainLoop() + 248
7   libcoreclr.dylib              	0x00000001014491ec DebuggerRCThread::ThreadProc() + 284
8   libcoreclr.dylib              	0x0000000101448f03 DebuggerRCThread::ThreadProcStatic(void*) + 131
9   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
10  libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
11  libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
12  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 5:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5   libcoreclr.dylib              	0x00000001013d7a6d WaitForSingleObjectEx + 77
6   libcoreclr.dylib              	0x000000010167bc09 CLREventBase::WaitEx(unsigned int, WaitMode, PendingSync*) + 201
7   libcoreclr.dylib              	0x00000001015e671f FinalizerThread::WaitForFinalizerEvent(CLREvent*) + 31
8   libcoreclr.dylib              	0x00000001015e6882 FinalizerThread::FinalizerThreadWorker(void*) + 98
9   libcoreclr.dylib              	0x000000010155dc93 ManagedThreadBase_DispatchOuter(ManagedThreadCallState*) + 323
10  libcoreclr.dylib              	0x000000010155e2e0 ManagedThreadBase::FinalizerBase(void (*)(void*)) + 32
11  libcoreclr.dylib              	0x00000001015e6b78 FinalizerThread::FinalizerThreadStart(void*) + 504
12  libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
13  libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
14  libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
15  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fff5fa9b1ea __accept + 10
1   libcoreclr.dylib              	0x00000001014544be IpcStream::DiagnosticsIpc::Accept(void (*)(char const*, unsigned int)) const + 62
2   libcoreclr.dylib              	0x00000001015c6530 DiagnosticsServerThread(void*) + 288
3   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
4   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 7:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7f3d SleepEx + 141
5   libcoreclr.dylib              	0x00000001015831f2 ThreadpoolMgr::TimerThreadFire() + 146
6   libcoreclr.dylib              	0x00000001015830c5 ThreadpoolMgr::TimerThreadStart(void*) + 181
7   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
8   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
9   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
10  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 8:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5   libcoreclr.dylib              	0x00000001013d7a18 PAL_WaitForSingleObjectPrioritized + 72
6   libcoreclr.dylib              	0x000000010167c020 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7   libcoreclr.dylib              	0x00000001015805fe ThreadpoolMgr::WorkerThreadStart(void*) + 974
8   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
9   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
10  libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
11  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 9:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7f3d SleepEx + 141
5   libcoreclr.dylib              	0x00000001015ef99f __SwitchToThread(unsigned int, unsigned int) + 15
6   libcoreclr.dylib              	0x000000010158288c ThreadpoolMgr::GateThreadStart(void*) + 188
7   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
8   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
9   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
10  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 10:
0   libsystem_pthread.dylib       	0x00007fff5fb553f0 start_wqthread + 0

Thread 11:
0   libsystem_pthread.dylib       	0x00007fff5fb553f0 start_wqthread + 0

Thread 12:
0   libsystem_pthread.dylib       	0x00007fff5fb553f0 start_wqthread + 0

Thread 13:
0   libsystem_pthread.dylib       	0x00007fff5fb553f0 start_wqthread + 0

Thread 14:
0   libsystem_kernel.dylib        	0x00007fff5fa9a86a __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff5fb5956e _pthread_cond_wait + 722
2   libcoreclr.dylib              	0x00000001013d31be CorUnix::CPalSynchronizationManager::ThreadNativeWait(CorUnix::_ThreadNativeWaitData*, unsigned int, CorUnix::ThreadWakeupReason*, unsigned int*) + 318
3   libcoreclr.dylib              	0x00000001013d2e70 CorUnix::CPalSynchronizationManager::BlockThread(CorUnix::CPalThread*, unsigned int, bool, bool, CorUnix::ThreadWakeupReason*, unsigned int*) + 464
4   libcoreclr.dylib              	0x00000001013d7828 CorUnix::InternalWaitForMultipleObjectsEx(CorUnix::CPalThread*, unsigned int, void* const*, int, unsigned int, int, int) + 1976
5   libcoreclr.dylib              	0x00000001013d7a18 PAL_WaitForSingleObjectPrioritized + 72
6   libcoreclr.dylib              	0x000000010167c020 CLRLifoSemaphore::WaitForSignal(unsigned int) + 32
7   libcoreclr.dylib              	0x00000001015805fe ThreadpoolMgr::WorkerThreadStart(void*) + 974
8   libcoreclr.dylib              	0x00000001013de5a4 CorUnix::CPalThread::ThreadEntry(void*) + 436
9   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
10  libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
11  libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 15:
0   libsystem_kernel.dylib        	0x00007fff5fa98ef2 read + 10
1   System.Native.dylib           	0x0000000102e5074f 0x102e48000 + 34639
2   libsystem_pthread.dylib       	0x00007fff5fb562eb _pthread_body + 126
3   libsystem_pthread.dylib       	0x00007fff5fb59249 _pthread_start + 66
4   libsystem_pthread.dylib       	0x00007fff5fb5540d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000102f855c0  rcx: 0x00007ffeee946678  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x00007ffeee9466b0  rsp: 0x00007ffeee946678
   r8: 0x0000000000bb1606   r9: 0xffffffff00000000  r10: 0x0000000000000000  r11: 0x0000000000000206
  r12: 0x0000000000000307  r13: 0x00007ffeee946ce0  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x00007fff5fa9d2c6  rfl: 0x0000000000000206  cr2: 0x00007fff962c1188
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133


Binary Images:
       0x1012b7000 -        0x1012c5ff3 +FVim (0) <40B73755-5FA7-3CB2-9E8C-2408ED8AC880> /Applications/FVim.app/Contents/MacOS/FVim
       0x1012eb000 -        0x101339ffb +libhostfxr.dylib (0) <8085DAE7-969E-32A1-B562-D0D9492071D1> /Applications/FVim.app/Contents/MacOS/libhostfxr.dylib
       0x101342000 -        0x101384ff3 +libhostpolicy.dylib (0) <0454C56E-6C3B-343B-804B-E8635C69532F> /Applications/FVim.app/Contents/MacOS/libhostpolicy.dylib
       0x101397000 -        0x1018c1fff +libcoreclr.dylib (0) <64414AE4-48A7-3B31-AFB4-8FBA0F9AFF3C> /Applications/FVim.app/Contents/MacOS/libcoreclr.dylib
       0x101f73000 -        0x102195ff7 +libclrjit.dylib (0) <908BE89F-5E64-3BAE-AD60-BAB3BB0DD6D0> /Applications/FVim.app/Contents/MacOS/libclrjit.dylib
       0x102a60000 -        0x102a68fff +System.Globalization.Native.dylib (0) <DE7C7267-2A99-3625-A02F-86F86246CE92> /Applications/FVim.app/Contents/MacOS/System.Globalization.Native.dylib
       0x102e48000 -        0x102e51ff7 +System.Native.dylib (0) <2D14D17C-F3B8-3571-8593-5C1CCF99A758> /Applications/FVim.app/Contents/MacOS/System.Native.dylib
       0x102ee3000 -        0x102f4d6ef  dyld (655.1.1) <CE635DB2-D47E-3C05-A0A3-6BD982E7E750> /usr/lib/dyld
       0x104f93000 -        0x104f99ff7 +System.Security.Cryptography.Native.Apple.dylib (0) <89FFF799-2BE8-3E2B-8C0E-A06CC1EAD121> /Applications/FVim.app/Contents/MacOS/System.Security.Cryptography.Native.Apple.dylib
       0x104fb2000 -        0x104fc1fff +libAvaloniaNative.dylib (0) <0DA1E865-794A-3BE7-B2BF-5D9FF72C3FF2> /Applications/FVim.app/Contents/MacOS/libAvaloniaNative.dylib
       0x10512b000 -        0x1051f3fff  com.apple.AMDRadeonX4000GLDriver (2.9.26 - 2.0.9) <374F374F-D27E-3A02-A4B9-E074674BC0F9> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/AMDRadeonX4000GLDriver
       0x105397000 -        0x105a24fcf +libSkiaSharp.dylib (0) <4B09ECE2-678A-3E0D-BB86-FB4AA9A70196> /Applications/FVim.app/Contents/MacOS/libSkiaSharp.dylib
    0x7fff281cd000 -     0x7fff281dcff7  libSimplifiedChineseConverter.dylib (73) <D4C5FA9B-B6B9-35F0-8060-DFDA02BD9B06> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x7fff28670000 -     0x7fff29007ff3  ATIRadeonX4000SCLib.dylib (2.9.26) <489CDFF1-EB11-3923-85B0-8D14E469DB5F> /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle/Contents/MacOS/ATIRadeonX4000SCLib.dylib
    0x7fff2c253000 -     0x7fff2d027fff  com.apple.driver.AppleIntelKBLGraphicsGLDriver (12.9.22 - 12.0.9) <1DDBAFAC-64A7-3674-AD5B-AD85FB147171> /System/Library/Extensions/AppleIntelKBLGraphicsGLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsGLDriver
    0x7fff2fe65000 -     0x7fff2fe65fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <762942CB-CFC9-3A0C-9645-A56523A06426> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff2fe7d000 -     0x7fff30516fef  com.apple.vImage (8.1 - ???) <EFFD9A9C-5563-3762-91CA-9F50FDB7A547> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff30517000 -     0x7fff30790ff3  libBLAS.dylib (1243.200.4) <417CA0FC-B6CB-3FB3-ACBC-8914E3F62D20> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff30791000 -     0x7fff30803ffb  libBNNS.dylib (38.250.1) <538D12A2-9B9D-3E22-9896-F90F6E69C06E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff30804000 -     0x7fff30badff3  libLAPACK.dylib (1243.200.4) <92175DF4-863A-3780-909A-A3E5C410F2E9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff30bae000 -     0x7fff30bc3feb  libLinearAlgebra.dylib (1243.200.4) <CB671EE6-DEA1-391C-9B2B-AA09A46B4D7A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff30bc4000 -     0x7fff30bc9ff3  libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff30bca000 -     0x7fff30c46ff3  libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff30c47000 -     0x7fff30c5afe3  libSparseBLAS.dylib (1243.200.4) <E9243341-DB77-37C1-97C5-3DFA00DD70FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff30c5b000 -     0x7fff30e42ff7  libvDSP.dylib (671.250.4) <7B110627-A9C1-3FB7-A077-0C7741BA25D8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff30e43000 -     0x7fff30ef6ff7  libvMisc.dylib (671.250.4) <73637194-497A-39F9-90F5-004DA772AC69> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff30ef7000 -     0x7fff30ef7fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <74288115-EF61-30B6-843F-0593B31D4929> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff31099000 -     0x7fff31e4eff3  com.apple.AppKit (6.9 - 1671.50.111) <933155DC-6404-3646-B6AE-087D34F611BE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff31ea0000 -     0x7fff31ea0fff  com.apple.ApplicationServices (50.1 - 50.1) <4A6ACC13-2623-36B8-A196-2300980803CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff31ea1000 -     0x7fff31f0cfff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff31fa5000 -     0x7fff320bcfff  libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff320bd000 -     0x7fff320fffff  libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff321f0000 -     0x7fff321f4ff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <B53D557C-071F-3ED9-826A-847DEB465F62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff3228f000 -     0x7fff322e1ff7  com.apple.HIServices (1.22 - 628) <26A8B7C0-41CC-3DB4-99D7-BD922866DC77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff322e2000 -     0x7fff322f1fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff322f2000 -     0x7fff3233bff7  com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff3233c000 -     0x7fff32375ff7  com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff32376000 -     0x7fff32382fff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <80FA7439-EC77-3CEC-B5D1-5EFE9E503E11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff32383000 -     0x7fff325faff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <EB71583C-58C9-3CF8-92F9-2D57B24BBD4F> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff325fc000 -     0x7fff325fcfff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <121176B6-7ABE-3AFB-A252-CCED694D98D4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff32954000 -     0x7fff32cf5fff  com.apple.CFNetwork (978.0.7 - 978.0.7) <9FDEFE50-BE1B-386E-8B3C-AEF251069E52> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff32d0f000 -     0x7fff33005ff7  com.apple.HIToolbox (2.1.1 - 918.5) <F7DA4F20-123B-30FB-9C27-5AB1746DEF63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff33010000 -     0x7fff330a5ff3  com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff330e3000 -     0x7fff330e9ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff3320b000 -     0x7fff3320bfff  com.apple.Cocoa (6.11 - 23) <9378783B-65FE-3E78-A7D5-0D11EE9117AE> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff33219000 -     0x7fff332e5ff7  com.apple.ColorSync (4.13.0 - 3340.7) <74B373AB-42C7-330D-A577-1C43BFA6024F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff33471000 -     0x7fff334f7fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff3355b000 -     0x7fff33585ffb  com.apple.CoreBluetooth (1.0 - 1) <F08FE8C0-DD18-37E0-B707-3EF704A73FD6> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff33586000 -     0x7fff3390afe3  com.apple.CoreData (120 - 866.5) <37F35F2E-FE57-3E3F-A1E5-AD274A8C1FDE> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff3390b000 -     0x7fff339f2ff7  com.apple.CoreDisplay (101.3 - 109.19) <B00A19C2-4A6A-388C-8AD6-33A42D10D7F0> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff339f3000 -     0x7fff33e37fff  com.apple.CoreFoundation (6.9 - 1575.12) <64C38BF2-1869-33C8-B1B6-DCA9C824C0E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff33e39000 -     0x7fff344c8fe7  com.apple.CoreGraphics (2.0 - 1260.2) <23436C9A-7D62-3E9F-867A-798C93B52080> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff344ca000 -     0x7fff347eafff  com.apple.CoreImage (14.4.0 - 750.0.140) <96FA4D1B-AC88-305C-8F4D-D7D44657B733> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff34c48000 -     0x7fff34c48fff  com.apple.CoreServices (945 - 945) <E937BA69-19D5-3A30-B31E-8A6B94E9D9A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff34c49000 -     0x7fff34cc5ff7  com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff34cc6000 -     0x7fff34f9dfff  com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) <52F5484E-94B1-37B7-B1AC-E210DF5721AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff34f9e000 -     0x7fff34fe6ff7  com.apple.DictionaryServices (1.2 - 284.16.4) <C3D15FD1-759B-3815-8128-42D8220BC459> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff34fe7000 -     0x7fff34fefffb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff34ff0000 -     0x7fff351a2fff  com.apple.LaunchServices (945 - 945) <05FA145B-75AA-3AE6-BB82-F156B29F4FF1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff351a3000 -     0x7fff35241ff7  com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff35242000 -     0x7fff3528cff7  com.apple.CoreServices.OSServices (945 - 945) <119C5548-59C3-3F94-B23F-8AF02CA10EAA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff3528d000 -     0x7fff352f4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff352f5000 -     0x7fff35316ff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff35621000 -     0x7fff35783ff3  com.apple.CoreText (352.0 - 584.26.3.2) <A99FD623-7F6E-3C77-8241-E98F664EC039> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff35784000 -     0x7fff357c3fff  com.apple.CoreVideo (1.8 - 0.0) <1AD23C58-E68E-329B-A1FA-6BF7DD577687> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff357c4000 -     0x7fff35853fff  com.apple.framework.CoreWLAN (13.0 - 1375.2) <F2EA31D8-53BF-32E8-B537-64B4F2BF4B6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff35aaa000 -     0x7fff35aafffb  com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff35c75000 -     0x7fff36022fff  com.apple.Foundation (6.9 - 1575.12) <AD258ED7-64AE-367C-AE5F-48D45089D9F2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff36091000 -     0x7fff360c0ffb  com.apple.GSS (4.0 - 2.0) <E41430E5-713B-3E53-BF7E-A3991A881B62> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff361c0000 -     0x7fff362cafff  com.apple.Bluetooth (6.0.12 - 6.0.12f1) <58A607F0-A818-3535-A7BD-858D5BB0A807> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff3632c000 -     0x7fff363bbfff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) <CCA92450-8808-37EC-B68E-2C2846B086CE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff363bd000 -     0x7fff363ccffb  com.apple.IOSurface (255.5.4 - 255.5.4) <83F58E47-0D06-3E78-9D19-D38D3205464B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff36420000 -     0x7fff365abfef  com.apple.ImageIO.framework (3.3.0 - 1850.2) <E1CC52A4-1074-3997-849B-42EF20EE1ADC> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff365ac000 -     0x7fff365b0ffb  libGIF.dylib (1850.2) <FB52622F-2A7D-36D0-B821-35DB2BAF9EE8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff365b1000 -     0x7fff3668dfef  libJP2.dylib (1850.2) <7FAC16D8-1144-30A1-BABC-008423C7A851> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff3668e000 -     0x7fff366b3feb  libJPEG.dylib (1850.2) <78401F6E-345B-3179-A82A-01F813F15D95> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff36976000 -     0x7fff3699cfeb  libPng.dylib (1850.2) <FF3ABAE1-43F0-3A76-A284-398397693D46> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff3699d000 -     0x7fff3699fffb  libRadiance.dylib (1850.2) <92529333-0935-341B-B271-69C235FEF6B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff369a0000 -     0x7fff369edfe7  libTIFF.dylib (1850.2) <FFC74F3B-16F9-38FE-9D3F-D8DC6DEDB9E9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff37b64000 -     0x7fff37b7dfff  com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff38599000 -     0x7fff38641ff7  com.apple.Metal (161.9.16 - 161.9.16) <A93AA7FC-B72A-3CBF-9932-81DDDFA1DFCD> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff3865d000 -     0x7fff3867cff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <EE85B6D5-5C12-3CE8-8C33-54A203EDC76E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff3867d000 -     0x7fff386f9fe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <5A78F2DC-9D2B-37BA-B21F-ECFFCC6F7720> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff386fa000 -     0x7fff38721fff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <096DB3E6-7DDF-3B47-857A-46A203642ACF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff38722000 -     0x7fff3884dff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <D2128338-F1E8-3BEE-A729-AC13A524DD78> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff3884e000 -     0x7fff38868fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <ADA5A93C-F79E-3931-840D-48C6B6B305EA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff38869000 -     0x7fff3886aff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <515A92B3-A23B-3AC2-8D1B-85B248595B76> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff39661000 -     0x7fff3966dff7  com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff3c102000 -     0x7fff3c10afe3  libcldcpuengine.dylib (2.11) <AAE49359-EB53-3FD4-ADBF-C60498BD0B34> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff3c10b000 -     0x7fff3c162ff7  com.apple.opencl (2.15.3 - 2.15.3) <AA9CE8F7-DB7C-35A5-A019-2207D1BBFF38> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff3c163000 -     0x7fff3c17eff7  com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff3c17f000 -     0x7fff3c18affb  com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff3cada000 -     0x7fff3cadcfff  libCVMSPluginSupport.dylib (17.7.2) <247121BB-626C-318E-B24E-3D436E752DF7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff3cadd000 -     0x7fff3cae2ff3  libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff3cae3000 -     0x7fff3cae7fff  libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff3cae8000 -     0x7fff3caf0ff7  libGFXShared.dylib (17.7.2) <B75A6E93-E5BE-32A8-8D46-00D8E909DFD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff3caf1000 -     0x7fff3cafcfff  libGL.dylib (17.7.2) <E88FF023-7E15-3E95-88FD-6C415550F769> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff3cafd000 -     0x7fff3cb37fe7  libGLImage.dylib (17.7.2) <B4C140F3-AF8C-30C8-A03E-B16A20BB05A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff3cb38000 -     0x7fff3ccaaff7  libGLProgrammability.dylib (17.7.2) <4866D792-5676-3F2F-877E-B9751D4E3F76> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff3ccab000 -     0x7fff3cce9fff  libGLU.dylib (17.7.2) <EA69FA36-3F20-337C-A6B3-EC49DC2F12F5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff3d686000 -     0x7fff3d695ffb  com.apple.opengl (17.7.2 - 17.7.2) <8EFFA6F9-ABE8-3131-9D3F-37E9796DDF34> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff3d696000 -     0x7fff3d82dff7  GLEngine (17.7.2) <874C8157-78AF-32A8-8BD1-85FDBCEF9E2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x7fff3d82e000 -     0x7fff3d857ff3  GLRendererFloat (17.7.2) <81263D77-B1BE-3F43-934C-1D7DB42F31FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
    0x7fff3e498000 -     0x7fff3e6eefff  com.apple.QuartzCore (1.11 - 699.27.4.1) <BB3BBD58-84DF-3849-B4ED-5FF8DA4015B8> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff3ef23000 -     0x7fff3f222fff  com.apple.security (7.0 - 58286.260.20) <59B4100E-5A31-3EF4-954A-2A69341995F3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff3f223000 -     0x7fff3f2affff  com.apple.securityfoundation (6.0 - 55185.260.1) <DB8EB672-5D3A-3082-A62E-4D75C81D94A4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff3f2e1000 -     0x7fff3f2e5fff  com.apple.xpc.ServiceManagement (1.0 - 1) <4AD0F8EE-884C-3FA7-85D9-27F201BC3C64> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff3f67d000 -     0x7fff3f6eafff  com.apple.SystemConfiguration (1.17 - 1.17) <1562078D-3251-31B2-B9C6-2667C567F883> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff42969000 -     0x7fff42a0efeb  com.apple.APFS (1.0 - 1) <C001DCC2-32BE-327A-AE03-281885BD93BF> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff43420000 -     0x7fff43421ff7  com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff43a1f000 -     0x7fff43a4bff7  com.apple.framework.Apple80211 (13.0 - 1380.2) <3850E3A9-E00A-374E-87EA-AB01E503E769> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff43b73000 -     0x7fff43b82fc7  com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff43c7e000 -     0x7fff43c89fff  com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff43cca000 -     0x7fff43d13ff3  com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff43f67000 -     0x7fff43f89fff  com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff440e8000 -     0x7fff440fcffb  com.apple.AssertionServices (1.0 - 1) <11FC4241-6069-3B3A-9BCE-9B68F3A4D2AB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff444cb000 -     0x7fff445b7ff7  com.apple.AuthKit (1.0 - 1) <34496FD5-4BAB-3DF3-BF7F-70F38C66848D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff44779000 -     0x7fff44781fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff44782000 -     0x7fff44817fff  com.apple.backup.framework (1.10.5 - ???) <BAFC1D7F-9D75-3C45-AAD4-569D13E445C5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff44818000 -     0x7fff44885ff3  com.apple.BaseBoard (360.28 - 360.28) <DBE27FB4-3FFD-3E9A-846C-F6E7D797286A> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff464ef000 -     0x7fff464f8ffb  com.apple.CommonAuth (4.0 - 2.0) <81C987FD-69EB-344B-94D9-B9D93624D257> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff471d0000 -     0x7fff471e1ff7  com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff4778a000 -     0x7fff477f0ff7  com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff47a9d000 -     0x7fff47aa5ff7  com.apple.CorePhoneNumbers (1.0 - 1) <7A826DA2-4725-39D8-AF27-6F034DC53C4E> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff47c21000 -     0x7fff47c52ff3  com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff48019000 -     0x7fff4809dfff  com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff4812d000 -     0x7fff48258ff7  com.apple.coreui (2.1 - 499.10) <105F61F3-D0AE-332B-A485-8615187BB409> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff48259000 -     0x7fff483f7fff  com.apple.CoreUtils (5.8 - 580.19) <CF9C5677-4946-3328-8CE3-C70F2E8599D8> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff4844b000 -     0x7fff484aeff7  com.apple.framework.CoreWiFi (13.0 - 1375.2) <77E078A7-A34F-333B-B50F-8829537D6E9D> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff484af000 -     0x7fff484c0ff7  com.apple.CrashReporterSupport (10.13 - 938.25) <C7665EC7-9389-3717-B152-A59D7872C63C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff48550000 -     0x7fff4855ffff  com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff48560000 -     0x7fff48564fff  com.apple.DSExternalDisplay (3.1 - 380) <645C719D-05D4-3CD7-84D7-4C5218859E0C> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff485e5000 -     0x7fff4865aff3  com.apple.datadetectorscore (7.0 - 590.24) <72F0CBF1-D3E9-36C5-B877-F42E1EC59A0E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff486a6000 -     0x7fff486e3ff7  com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff486e4000 -     0x7fff4881fff7  com.apple.desktopservices (1.13.5 - ???) <4AF2E011-2CB0-3588-83CB-882ADDA78CAD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff4975c000 -     0x7fff49b77fff  com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff4eac0000 -     0x7fff4eacbff7  libGPUSupportMercury.dylib (17.7.2) <3D6CEEFC-4A13-3841-A958-2077BD0A51AC> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff4eacc000 -     0x7fff4ead1fff  com.apple.GPUWrangler (3.40.16 - 3.40.16) <B9D4F2DD-5D11-32FF-B5BE-29E137458728> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff4f8dc000 -     0x7fff4f8ebfff  com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff4fa3b000 -     0x7fff4faafffb  com.apple.Heimdal (4.0 - 2.0) <5E8F6B79-960D-3030-B889-D29A4015D205> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff50d9e000 -     0x7fff50da5ffb  com.apple.IOAccelerator (404.9 - 404.9) <F9C604B3-3DF7-3EE7-8A44-7877FAF2E6A4> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff50da9000 -     0x7fff50dc1fff  com.apple.IOPresentment (1.0 - 42.6) <55CB91EF-90F1-3D0A-A59E-2F75CD2EB4AE> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff51169000 -     0x7fff51196ff7  com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5142a000 -     0x7fff5143cff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <5AAC527E-D197-39B2-A6C9-E0D0FB9CA9B9> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff51457000 -     0x7fff51532ff7  com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff51533000 -     0x7fff5156fff7  com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff51576000 -     0x7fff5157bfff  com.apple.LinguisticData (1.0 - 238.25) <61910887-D5CE-3567-9A5F-6DFEC942EC1F> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff52270000 -     0x7fff52298ff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff52299000 -     0x7fff52326ff7  com.apple.gpusw.MetalTools (1.0 - 1) <DBC4718E-F588-382D-A415-405D0028804D> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff524dd000 -     0x7fff524f8ffb  com.apple.MobileKeyBag (2.0 - 1.0) <4678FECE-538B-381C-80F2-27AA4805F160> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff52581000 -     0x7fff525abffb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <3BF81F33-89A8-3A2D-84B3-B343020B6D98> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff527e7000 -     0x7fff527f1fff  com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff53052000 -     0x7fff530a3ff3  com.apple.OTSVG (1.0 - ???) <3976F8CC-1CFB-3E09-9009-FE985550565B> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff54228000 -     0x7fff54237ff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff560c7000 -     0x7fff560e5ff7  com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5627d000 -     0x7fff562cdfff  com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff5641c000 -     0x7fff5643efff  com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff57c43000 -     0x7fff57d61fff  com.apple.Sharing (1288.43 - 1288.43) <B9AB8C05-F2F2-371F-A9AF-1D139E2CE54C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff58b72000 -     0x7fff58e20ffb  com.apple.SkyLight (1.600.0 - 340.26) <CD2A7069-6CEA-3737-9E9D-7AE2FED912AB> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff595c2000 -     0x7fff595cefff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff59d1f000 -     0x7fff59daafc7  com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff5a292000 -     0x7fff5a29effb  com.apple.TCC (1.0 - 1) <968ECAE1-FBB9-3478-BDCE-85E54B6C422D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff5a504000 -     0x7fff5a5ccff3  com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff5a682000 -     0x7fff5a683fff  com.apple.TrustEvaluationAgent (2.0 - 31.200.1) <15DF9C73-54E4-3C41-BCF4-378338C55FB4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff5a689000 -     0x7fff5a83fff7  com.apple.UIFoundation (1.0 - 551) <E9D17DAD-230D-390A-B117-3D100C5AF5F2> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff5bd6b000 -     0x7fff5bd6efff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff5c16f000 -     0x7fff5c171ffb  com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff5c43b000 -     0x7fff5c46ffff  libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
    0x7fff5c472000 -     0x7fff5c47cff7  libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
    0x7fff5c50a000 -     0x7fff5c50bffb  libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff5c542000 -     0x7fff5c799ff3  libFosl_dynamic.dylib (18.3.4) <45E50221-1A39-3AB3-8267-C1E4E39ECF83> /usr/lib/libFosl_dynamic.dylib
    0x7fff5c7ea000 -     0x7fff5c808fff  libMobileGestalt.dylib (645.260.6) <0232958E-1EF2-3627-B8FF-09C6522594C7> /usr/lib/libMobileGestalt.dylib
    0x7fff5c809000 -     0x7fff5c809fff  libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff5c949000 -     0x7fff5c94affb  libSystem.B.dylib (1252.250.1) <1A13E822-B59C-3A36-A2E4-9968149714F9> /usr/lib/libSystem.B.dylib
    0x7fff5c9c6000 -     0x7fff5c9c7fff  libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
    0x7fff5c9d9000 -     0x7fff5c9efffb  libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
    0x7fff5c9f0000 -     0x7fff5ca19ffb  libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
    0x7fff5ca1a000 -     0x7fff5ca99fff  libate.dylib (1.13.8) <92B44EDB-369D-3EE8-AEC5-61F8B9313DBF> /usr/lib/libate.dylib
    0x7fff5ca9d000 -     0x7fff5ca9dff3  libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
    0x7fff5cb6d000 -     0x7fff5cb7dffb  libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
    0x7fff5cb7e000 -     0x7fff5cb8bfff  libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
    0x7fff5cb8c000 -     0x7fff5cbdfff7  libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
    0x7fff5cbe0000 -     0x7fff5cbf5ff7  libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
    0x7fff5cbf6000 -     0x7fff5cbf6ff3  libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
    0x7fff5cbf7000 -     0x7fff5cc07ffb  libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
    0x7fff5cc08000 -     0x7fff5cc20ffb  libcompression.dylib (52.250.2) <7F4BB18C-1FB4-3825-8D8B-6E6B168774C6> /usr/lib/libcompression.dylib
    0x7fff5ce95000 -     0x7fff5ceabfff  libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
    0x7fff5ceac000 -     0x7fff5ceadff3  libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff5d04b000 -     0x7fff5d143ff7  libcrypto.35.dylib (22.260.1) <03FBCE39-6B59-314E-A18C-CF045D132C4A> /usr/lib/libcrypto.35.dylib
    0x7fff5d359000 -     0x7fff5d3afff7  libcups.2.dylib (462.10) <2AC7B8C3-0D25-3E0F-A34A-94658A06FF94> /usr/lib/libcups.2.dylib
    0x7fff5d4e3000 -     0x7fff5d4e3fff  libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
    0x7fff5d515000 -     0x7fff5d51aff7  libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
    0x7fff5d51b000 -     0x7fff5d520ff7  libheimdal-asn1.dylib (520.260.1) <DC44D1D1-D3DF-38B3-AFC3-1D50B92BE401> /usr/lib/libheimdal-asn1.dylib
    0x7fff5d54b000 -     0x7fff5d63bfff  libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
    0x7fff5d63c000 -     0x7fff5d89dfff  libicucore.A.dylib (62135.0.1) <2B292561-798A-381C-AA41-90EE6549C7CF> /usr/lib/libicucore.A.dylib
    0x7fff5d8ea000 -     0x7fff5d8ebfff  liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
    0x7fff5d8ec000 -     0x7fff5d904ff3  liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
    0x7fff5d91c000 -     0x7fff5d9c0ff7  libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
    0x7fff5d9c1000 -     0x7fff5dbc5fff  libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
    0x7fff5dd9d000 -     0x7fff5e0eeff7  libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
    0x7fff5e180000 -     0x7fff5e905fdf  libobjc.A.dylib (756.2) <7C312627-43CB-3234-9324-4DEA92D59F50> /usr/lib/libobjc.A.dylib
    0x7fff5e917000 -     0x7fff5e91bffb  libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
    0x7fff5e91e000 -     0x7fff5e953fff  libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
    0x7fff5ea6c000 -     0x7fff5ea84ffb  libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
    0x7fff5ead7000 -     0x7fff5ecb4fe7  libsqlite3.dylib (274.25) <55CE34C4-00C0-3844-B7ED-80FA7F0AF03F> /usr/lib/libsqlite3.dylib
    0x7fff5eecd000 -     0x7fff5eed0ff7  libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
    0x7fff5eed1000 -     0x7fff5eedefff  libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
    0x7fff5eee3000 -     0x7fff5efc5ff3  libxml2.2.dylib (32.8) <54F896CF-6D83-300B-9CD9-1636BE5375A4> /usr/lib/libxml2.2.dylib
    0x7fff5efc6000 -     0x7fff5efeeff3  libxslt.1.dylib (16.1) <31F7018B-D8F2-36ED-A13B-1E5A16DFAAA1> /usr/lib/libxslt.1.dylib
    0x7fff5efef000 -     0x7fff5f001ff7  libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
    0x7fff5f7e5000 -     0x7fff5f7e9ff3  libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
    0x7fff5f7ea000 -     0x7fff5f7f4ff3  libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff5f7f5000 -     0x7fff5f7fcff7  libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
    0x7fff5f7fd000 -     0x7fff5f806ff7  libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
    0x7fff5f807000 -     0x7fff5f88bfc3  libcorecrypto.dylib (602.260.2) <BED0F385-D8A2-334A-BD7B-0673B5DABBC5> /usr/lib/system/libcorecrypto.dylib
    0x7fff5f912000 -     0x7fff5f94bff7  libdispatch.dylib (1008.250.7) <26DF5B1E-A388-38EF-B73B-AF0E93FB02DB> /usr/lib/system/libdispatch.dylib
    0x7fff5f94c000 -     0x7fff5f978ff7  libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
    0x7fff5f979000 -     0x7fff5f979ffb  libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
    0x7fff5f97a000 -     0x7fff5f986ff3  libkxld.dylib (4903.261.4) <71CF1ECD-AC4E-3FDD-BEDF-14933D843EEE> /usr/lib/system/libkxld.dylib
    0x7fff5f987000 -     0x7fff5f987ff7  liblaunch.dylib (1336.261.2) <BD5CDB35-2BB4-349A-8D14-78E387563F89> /usr/lib/system/liblaunch.dylib
    0x7fff5f988000 -     0x7fff5f98dfff  libmacho.dylib (927.0.2) <3C5C9024-45FD-38C2-B01A-07A322966063> /usr/lib/system/libmacho.dylib
    0x7fff5f98e000 -     0x7fff5f990ffb  libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
    0x7fff5f991000 -     0x7fff5f992ff7  libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
    0x7fff5f993000 -     0x7fff5f9aaff3  libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
    0x7fff5f9ab000 -     0x7fff5f9abff7  libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
    0x7fff5f9ac000 -     0x7fff5fa33fff  libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
    0x7fff5fa34000 -     0x7fff5fa37ffb  libsystem_configuration.dylib (963.260.1) <C7D2BA09-8D5B-3393-8D84-304D76C55DEF> /usr/lib/system/libsystem_configuration.dylib
    0x7fff5fa38000 -     0x7fff5fa3bff7  libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff5fa3c000 -     0x7fff5fa42fff  libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
    0x7fff5fa43000 -     0x7fff5fa49ff7  libsystem_dnssd.dylib (878.260.1) <64B79B01-B1B0-3C7E-87A1-023B71843F1F> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff5fa4a000 -     0x7fff5fa95ffb  libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
    0x7fff5fa96000 -     0x7fff5fabeff7  libsystem_kernel.dylib (4903.261.4) <7B0F52C4-4CC9-3282-8457-C18C6FE1B99E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff5fabf000 -     0x7fff5fb0aff7  libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
    0x7fff5fb0b000 -     0x7fff5fb35fff  libsystem_malloc.dylib (166.261.1) <4D1CEF38-DE32-3ECF-9F70-0ADDD5C8775F> /usr/lib/system/libsystem_malloc.dylib
    0x7fff5fb36000 -     0x7fff5fb40ff7  libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff5fb41000 -     0x7fff5fb48fff  libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
    0x7fff5fb49000 -     0x7fff5fb52fef  libsystem_platform.dylib (177.250.1) <16949870-9152-3B0D-9EF0-40FAF84B0F1E> /usr/lib/system/libsystem_platform.dylib
    0x7fff5fb53000 -     0x7fff5fb5dff7  libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff5fb5e000 -     0x7fff5fb61ff7  libsystem_sandbox.dylib (851.260.2) <9CACC5F5-3859-3A1F-BCC6-96DDD4A556A8> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff5fb62000 -     0x7fff5fb64ff3  libsystem_secinit.dylib (30.260.2) <88F3CE61-5FAD-3CDA-AA13-B5B18B3EBD26> /usr/lib/system/libsystem_secinit.dylib
    0x7fff5fb65000 -     0x7fff5fb6cff3  libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff5fb6d000 -     0x7fff5fb82fff  libsystem_trace.dylib (906.260.1) <100013AE-0443-3CF0-AC17-5D934608B60B> /usr/lib/system/libsystem_trace.dylib
    0x7fff5fb84000 -     0x7fff5fb89ffb  libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
    0x7fff5fb8a000 -     0x7fff5fbb9fff  libxpc.dylib (1336.261.2) <9A0FFA79-082F-3293-BF49-63976B073B74> /usr/lib/system/libxpc.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 6650093
    thread_create: 0
    thread_set_state: 10171

VM Region Summary:
ReadOnly portion of Libraries: Total=412.5M resident=0K(0%) swapped_out_or_unallocated=412.5M(100%)
Writable regions: Total=657.5M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=657.5M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
CoreUI image file                  332K        3 
Kernel Alloc Once                    8K        1 
MALLOC                           243.9M       30 
MALLOC guard page                   16K        4 
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
STACK GUARD                       56.1M       16 
Stack                             15.1M       16 
VM_ALLOCATE                        2.3G      136 
VM_ALLOCATE (reserved)              64K        1         reserved VM address space (unallocated)
__DATA                            64.7M      252 
__FONT_DATA                          4K        1 
__GLSLBUILTINS                    5176K        1 
__LINKEDIT                       224.9M       13 
__TEXT                           187.5M      248 
__UNICODE                          564K        1 
mapped file                       76.6M       94 
shared memory                      736K       10 
===========                     =======  ======= 
TOTAL                              3.5G      829 
TOTAL, minus reserved VM space     3.1G      829 

Model: MacBookPro15,1, BootROM 220.260.171.0.0 (iBridge: 16.16.5200.0.0,0), 6 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 
Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
Graphics: kHW_AMDRadeonPro555XItem, Radeon Pro 555X, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1
Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2400 MHz, Micron, 8ATF1G64HZ-2G6E1
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Mar 28 2019 19:17:52 version 9.137.9.0.32.6.34 FWID 01-36f56c94
Bluetooth: Version 6.0.12f1, 3 services, 27 devices, 1 incoming serial ports
Network Service: iPhone 9, Ethernet, en16
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: Generic Billboard Device
USB Device: iPhone
USB Device: USB2.0 Hub
USB Device: AirPod Case
USB Device: USB-HID Keyboard
USB Device: USB3.0 Hub
USB Device: iBridge Bus
USB Device: iBridge DFR brightness
USB Device: iBridge Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: iBridge ALS
USB Device: iBridge FaceTime HD Camera (Built-in)
USB Device: iBridge
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.1
Thunderbolt Bus: MacBook Pro, Apple Inc., 41.1

Keyboard layouts are ignored (all platforms)

fvim 0.2 and also previous version do not handle my standard German keyboard layout correctly.
For example a ":" is not on "SHIFT-." but on "SHIFT-ü"

AFAIR this also happened to me in previous builds of fvim.

Windows 1809 build 17763.615 settings:

  • Region: Germany
  • Regional format: German (Germany)
  • Windows display language: English (United States)

Let me know what else you need.
Thanks in advance!

version 0.2

Version 0.1 has been my daily driver for a while, and when everything stabilize down, we can check-point, and move to the next wave of features.

Tracking:

Powerline not fluid

Hi! First of all thanks for this app!

Description

I'm running the lastest release (0.2) and my powerline symbols does show up but not as fuild as it is on nvim-qt or terminal. The problem seems to be that the colors are not being applied to the powerline extension, I suspect of that because, if I change the colorscheme on a running instance the editor changes its colors but the powerline does not, remaining on the previous colorscheme until restart with the new colorscheme set on init.vim

Screenshots

Annotation 2019-07-21 144337

Annotation 2019-07-21 144345

Annotation 2019-07-21 144311

Annotation 2019-07-21 145203

As comparison here is on Nvim-qt:

Annotation 2019-07-21 145035

And it does happen with other themes even third party: (Nord for instance)

Annotation 2019-07-21 145559

Configurations:

  • ginit.vim
if exists('g:fvim_loaded')
    " Ctrl-ScrollWheel for zooming in/out
    set guifont=Iosevka:h16
    nnoremap <silent> <C-ScrollWheelUp> :set guifont=+<CR>
    nnoremap <silent> <C-ScrollWheelDown> :set guifont=-<CR>
    nnoremap <A-CR> :call rpcnotify(1, 'ToggleFullScreen', 1)<CR>
endif

" Disable currently ugly popup menu that doenst receive customisation
GuiPopupmenu 0
" Disable gui tabline, use vim's plugin one
GuiTabline 0
call GuiWindowMaximized(1)

  • airline
let g:airline#extensions#coc#enabled = 1
let g:airline#extensions#tabline#fnamemod = ':r.:e'
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#left_sep = ' '
let g:airline#extensions#tabline#left_alt_sep = '|'
let g:airline#extensions#tabline#formatter = 'unique_tail'
let g:airline_powerline_fonts = 1
"

Versions

  • OS: Windows 10 1903
  • Neovim:
NVIM v0.3.8
Build type: RelWithDebInfo
LuaJIT 2.0.5
Compilation: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/cl.exe /DWIN32 /D_WINDOWS /W3 /MD /Zi /O2 /Ob1 /DNDEBUG -DMIN_LOG_LEVEL=3 /W3 -D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -DWIN32 -D_WIN32_WINNT=0x0600 -DINCLUDE_GENERATED_DECLARATIONS -DNVIM_MSGPACK_HAS_FLOAT32 -DNVIM_UNIBI_HAS_VAR_FROM -IC:/projects/neovim/build/config -IC:/projects/neovim/src -IC:/projects/neovim/.deps/usr/include -IC:/projects/neovim/build/src/nvim/auto -IC:/projects/neovim/build/include
Compiled by appveyor@APPVYR-WIN

Features: -acl +iconv -jemalloc +tui 
See ":help feature-compile"

   system vimrc file: "$VIM\sysinit.vim"
  fall-back for $VIM: "C:/Program Files/nvim/share/nvim"

Run :checkhealth for more info
  • FVim: 0.2

Powerline symbols in airline plugin

image

Aversom app, thank you!
But there is an issue on Windows 10 1903. Powerline symbols are visible, but showing not correct, as is shown in the screenshot.

random crashes

Started in recent days.
Made a basic crash reporter and let's see if I can get the fish by luck.

experiment blit with gpu

the previous effort gives the result that blit is not as efficient as redrawing the text on CPU.
however, given that we've moved to accelerated graphics, things may have changed.
especially now that we are enabling ligature features, drawing text becomes slower sometimes.
we may want to keep better track of the drawn artifacts so that we can reuse them.

now I see why the text editors end up with span-like interface. :)

shift key not working correctly in linux

Version: v0.2-56-gfd39a12
Environment: X11 (gnome 3, Archlinux, install via debtap)
cannot input ~!@#$%^&*()_{}|:"<>? (both normal mode and insert mode)
but the + and alphabet keys are working

Recommend Projects

  • React photo React

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

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

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

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

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

Recommend Topics

  • javascript

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

  • web

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

  • server

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

  • Machine learning

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

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

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

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.