Coder Social home page Coder Social logo

flash-chat-ios11's Introduction

Flash-Chat

Learn to make iOS Apps with The App Brewery ๐Ÿ“ฑ | Project Stub | (Swift 4.0/Xcode 9) - Flash Chat App

Beginner: Download the starter project files as .zip and extract the files to your desktop.

Pro: Git clone to your Xcode projects folder.

Podfile Configuration

post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
        end
    end
end

Finished App

Finished App

Copyright ยฉ The App Brewery

flash-chat-ios11's People

Contributors

angelabauer 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

Watchers

 avatar  avatar  avatar  avatar  avatar

flash-chat-ios11's Issues

App crashes when tableview loads (instantly after Login)

The app crashes instantly after logging on (as the table view loads).

"Thread 1: Fatal error: Unexpectedly found nil while unwrapping an Optional value"

The above is displayed against the following line of code let text = snapshotValue["MessageBody"]! inside func retrieveMessages()

Full content of ChangeViewController.swift file pasted below

//
// ViewController.swift
// Flash Chat
//
// Created by Angela Yu on 29/08/2015.
// Copyright (c) 2015 London App Brewery. All rights reserved.
//

import UIKit
import Firebase

class ChatViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate {

// Declare instance variables here
var messageArray : [Message] = [Message]()


// We've pre-linked the IBOutlets
@IBOutlet var heightConstraint: NSLayoutConstraint!
@IBOutlet var sendButton: UIButton!
@IBOutlet var messageTextfield: UITextField!
@IBOutlet var messageTableView: UITableView!



override func viewDidLoad() {
    super.viewDidLoad()

    //TODO: Set yourself as the delegate and datasource here:
    messageTableView.delegate = self
    messageTableView.dataSource = self
    
    //TODO: Set yourself as the delegate of the text field here:
    messageTextfield.delegate = self
    
    //TODO: Set the tapGesture here:
    let tapGesture = UITapGestureRecognizer(target: self, action: #selector(tableViewTapped))
    messageTableView.addGestureRecognizer(tapGesture)
    
    //TODO: Register your MessageCell.xib file here:
    messageTableView.register(UINib(nibName: "MessageCell", bundle: nil), forCellReuseIdentifier: "customMessageCell")
    
    configureTableView()
    retrieveMessages()

    
}

///////////////////////////////////////////

//MARK: - TableView DataSource Methods



//TODO: Declare cellForRowAtIndexPath here:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "customMessageCell", for: indexPath) as! CustomMessageCell
    
    cell.messageBody.text = messageArray[indexPath.row].messageBody
    cell.senderUsername.text = messageArray[indexPath.row].sender
    cell.avatarImageView.image = UIImage(named: "egg")
    
    return cell
}

//TODO: Declare numberOfRowsInSection here:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return messageArray.count
}

//TODO: Declare tableViewTapped here:
@objc func tableViewTapped() {
    messageTextfield.endEditing(true)
}

//TODO: Declare configureTableView here:
func configureTableView() {
    messageTableView.rowHeight = UITableViewAutomaticDimension
    messageTableView.estimatedRowHeight = 120.0
}

///////////////////////////////////////////

//MARK:- TextField Delegate Methods




//TODO: Declare textFieldDidBeginEditing here:
func textFieldDidBeginEditing(_ textField: UITextField) {
    
    UIView.animate(withDuration: 0.5) {
        self.heightConstraint.constant = 321
        self.view.layoutIfNeeded()
    }
}


//TODO: Declare textFieldDidEndEditing here:
func textFieldDidEndEditing(_ textField: UITextField) {
    
    UIView.animate(withDuration: 0.5) {
        self.heightConstraint.constant = 50
        self.view.layoutIfNeeded()
    }
}


///////////////////////////////////////////


//MARK: - Send & Recieve from Firebase





@IBAction func sendPressed(_ sender: AnyObject) {
    
    
    //TODO: Send the message to Firebase and save it in our database
    messageTextfield.endEditing(true)
    messageTextfield.isEnabled = false
    sendButton.isEnabled = false
    
    let messagesDB = FIRDatabase.database().reference().child("Messages")
    
    let messageDictionary: NSDictionary = ["Sender": FIRAuth.auth()?.currentUser?.email as String!, "MessageBody": messageTextfield.text!]
    
    messagesDB.childByAutoId().setValue(messageDictionary) { (error, ref) in
        if error != nil {
            print(error!)
        }
        else {
            print("Message saved successfully")
            
            self.messageTextfield.isEnabled = true
            self.sendButton.isEnabled = true
            self.messageTextfield.text = ""
        }
    }
    
}

//TODO: Create the retrieveMessages method here:
func retrieveMessages() {
    let messageDB = FIRDatabase.database().reference().child("Messages")
    messageDB.observe(.childAdded, with: { (snapshot) in
        
        let snapshotValue = snapshot.value as! Dictionary<String, String>
        
        let text = snapshotValue["MessageBody"]!
        let sender = snapshotValue["Sender"]!
        
        let message = Message()
        message.messageBody = text
        message.sender = sender

        self.messageArray.append(message)

        self.configureTableView()
        self.messageTableView.reloadData()
        
    })
}





@IBAction func logOutPressed(_ sender: AnyObject) {
    
    //TODO: Log out the user and send them back to WelcomeViewController
    do {
        try FIRAuth.auth()?.signOut()
    }
    catch {
        print("Error. There was a problem logging out")
    }
    guard (navigationController?.popToRootViewController(animated: true)) != nil
        else {
            print("No view controller to pop")
            return
    }
    
}

}

Xcode 9 crashes on opening storyboard

Hi Angela,

I downloaded the skeleton project and Xcode 9 crashes systematically on opening the storyboard in the Interface Builder. Any idea?

My crash log is below. Thanks for your help.

Process: Xcode [3340]
Path: /Applications/Xcode.app/Contents/MacOS/Xcode
Identifier: com.apple.dt.Xcode
Version: 9.0.1 (13249)
Build Info: IDEFrameworks-13249000000000000~2
App Item ID: 497799835
App External ID: 823984564
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Xcode [3340]
User ID: 501

Date/Time: 2017-11-09 08:49:14.347 +0100
OS Version: Mac OS X 10.13 (17A405)
Report Version: 12
Anonymous UUID: 11E5A5C2-BCF0-8BD2-BEA0-3F265AA0D87F

Time Awake Since Boot: 2400 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:
ProductBuildVersion: 9A1004
ASSERTION FAILURE in /Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-13249/IDEKit/Application/IDEDocumentController.m:2223
Details: There can only be one document registered with a given URL. newDocument:<IBStoryboardDocument: 0x7fbb8299fa00>( 0 -[IDEEditorDocument init] (in IDEKit)
1 -[IBDocument init] (in IDEInterfaceBuilderKit)
2 -[NSDocument initForURL:withContentsOfURL:ofType:error:] (in AppKit)
3 -[IDEEditorDocument initForURL:withContentsOfURL:ofType:error:] (in IDEKit)
4 -[IBDocument initForURL:withContentsOfURL:ofType:error:] (in IDEInterfaceBuilderKit)
5 +[IDEDocumentController _newEditorDocumentWithClass:forURL:withContentsOfURL:ofType:extension:error:] (in IDEKit)
6 +[IDEDocumentController _retainedEditorDocumentForURL:type:error:] (in IDEKit)
7 +[IDEDocumentController retainedEditorDocumentForNavigableItem:forUseWithWorkspaceDocument:error:] (in IDEKit)
8 -[IDEUtilityArea computeSelectedDocumentsForNavigables:] (in IDEKit)
9 -[IDEUtilityArea _rebuildStackWithNavigableItems:] (in IDEKit)
10 -[IDEUtilityArea _rebuildCategoriesAndStack] (in IDEKit)
11 -[DVTDelayedInvocation runBlock:] (in DVTFoundation)
12 __NSFirePerformWithOrder (in Foundation)
13 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION (in CoreFoundation)
14 __CFRunLoopDoObservers (in CoreFoundation)
15 __CFRunLoopRun (in CoreFoundation)
16 CFRunLoopRunSpecific (in CoreFoundation)
17 RunCurrentEventLoopInMode (in HIToolbox)
18 ReceiveNextEventCommon (in HIToolbox)
19 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
20 _DPSNextEvent (in AppKit)
21 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit)
22 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
23 -[NSApplication run] (in AppKit)
24 NSApplicationMain (in AppKit)
25 start (in libdyld.dylib)
), existingDocument:<IBStoryboardDocument: 0x7fbb793f7a00>( 0 -[IDEEditorDocument init] (in IDEKit)
1 -[IBDocument init] (in IDEInterfaceBuilderKit)
2 -[NSDocument initForURL:withContentsOfURL:ofType:error:] (in AppKit)
3 -[IDEEditorDocument initForURL:withContentsOfURL:ofType:error:] (in IDEKit)
4 -[IBDocument initForURL:withContentsOfURL:ofType:error:] (in IDEInterfaceBuilderKit)
5 +[IDEDocumentController _newEditorDocumentWithClass:forURL:withContentsOfURL:ofType:extension:error:] (in IDEKit)
6 -[IDEEditorContext _newEditorDocumentWithClass:forURL:withContentsOfURL:ofType:extension:error:] (in IDEKit)
7 -[IDEEditorContext _openNavigableItem:withContentsOfURL:documentExtension:shouldInstallEditorBlock:] (in IDEKit)
8 -[IDEEditorContext _openNavigableItem:withContentsOfURL:shouldInstallEditorBlock:] (in IDEKit)
9 -[IDEEditorContext _notifyDelegateAndOpenNavigableItem:withContentsURL:documentExtensionIdentifier:locationToSelect:annotationRepresentedObject:stateDictionary:annotationWantsIndicatorAnimation:exploreAnnotationRepresentedObject:highlightSelection:alwaysReplaceExistingNavigableItem:skipSubDocumentNavigationUnlessEditorIsReplaced:] (in IDEKit)
10 -[IDEEditorContext _notifyDelegateAndOpenEditorOpenSpecifier:updateHistory:] (in IDEKit)
11 -[IDEEditorContext openEditorOpenSpecifier:updateHistory:] (in IDEKit)
12 -[IDEEditorContext openEditorOpenSpecifier:] (in IDEKit)
13 -[IDEEditorModeViewController openEditorOpenSpecifier:editorContext:] (in IDEKit)
14 -[IDEEditorArea _openEditorOpenSpecifier:editorContext:takeFocus:] (in IDEKit)
15 __108+[IDEEditorCoordinator _doOpenEditorOpenSpecifier:forWorkspaceTabController:editorContext:target:takeFocus:]_block_invoke_2 (in IDEKit)
16 __108+[IDEEditorCoordinator _doOpenEditorOpenSpecifier:forWorkspaceTabController:editorContext:target:takeFocus:]_block_invoke (in IDEKit)
17 +[IDEEditorCoordinator _doOpenWithWorkspaceTabController:editorContext:target:allowFallback:documentURL:usingBlock:] (in IDEKit)
18 +[IDEEditorCoordinator _doOpenEditorOpenSpecifier:forWorkspaceTabController:editorContext:target:takeFocus:] (in IDEKit)
19 -[_IDEOpenRequest _primitiveRunIfNecessary] (in IDEKit)
20 -[_IDEOpenRequest _runIfNecessary] (in IDEKit)
21 __NSFireDelayedPerform (in Foundation)
22 CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION (in CoreFoundation)
23 __CFRunLoopDoTimer (in CoreFoundation)
24 __CFRunLoopDoTimers (in CoreFoundation)
25 __CFRunLoopRun (in CoreFoundation)
26 CFRunLoopRunSpecific (in CoreFoundation)
27 RunCurrentEventLoopInMode (in HIToolbox)
28 ReceiveNextEventCommon (in HIToolbox)
29 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
30 _DPSNextEvent (in AppKit)
31 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit)
32 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
33 -[NSColorPanel _loadColorPickers] (in AppKit)
34 -[NSColorPanel _colorPanelDidLoad] (in AppKit)
35 -[NSColorPanel initWithContentRect:styleMask:backing:defer:] (in AppKit)
36 -[NSColorPanel init] (in AppKit)
37 +[NSColorPanel sharedColorPanel] (in AppKit)
38 -[IBTargetRuntime installColorListIfNeeded] (in IDEInterfaceBuilderKit)
39 -[IBCocoaTouchTargetRuntime installColorListIfNeeded] (in IDEInterfaceBuilderCocoaTouchIntegration)
40 -[IBCocoaTouchTargetRuntime installColorListIfNeeded] (in IDEInterfaceBuilderCocoaTouchIntegration)
41 -[IBDocument setTargetRuntime:] (in IDEInterfaceBuilderKit)
42 -[IBDocument decodeContentsOfURL:ofType:decodingStyle:error:] (in IDEInterfaceBuilderKit)
43 -[IBDocument readFromURL:ofType:error:] (in IDEInterfaceBuilderKit)
44 -[NSDocument _initForURL:withContentsOfURL:ofType:error:] (in AppKit)
45 -[NSDocument initForURL:withContentsOfURL:ofType:error:] (in AppKit)
46 -[IDEEditorDocument initForURL:withContentsOfURL:ofType:error:] (in IDEKit)
47 -[IBDocument initForURL:withContentsOfURL:ofType:error:] (in IDEInterfaceBuilderKit)
48 +[IDEDocumentController _newEditorDocumentWithClass:forURL:withContentsOfURL:ofType:extension:error:] (in IDEKit)
49 +[IDEDocumentController _retainedEditorDocumentForURL:type:error:] (in IDEKit)
50 +[IDEDocumentController retainedEditorDocumentForNavigableItem:forUseWithWorkspaceDocument:error:] (in IDEKit)
51 -[IDEUtilityArea computeSelectedDocumentsForNavigables:] (in IDEKit)
52 -[IDEUtilityArea _rebuildStackWithNavigableItems:] (in IDEKit)
53 -[IDEUtilityArea _rebuildCategoriesAndStack] (in IDEKit)
54 -[DVTDelayedInvocation runBlock:] (in DVTFoundation)
55 __NSFirePerformWithOrder (in Foundation)
56 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION (in CoreFoundation)
57 __CFRunLoopDoObservers (in CoreFoundation)
58 __CFRunLoopRun (in CoreFoundation)
59 CFRunLoopRunSpecific (in CoreFoundation)
60 RunCurrentEventLoopInMode (in HIToolbox)
61 ReceiveNextEventCommon (in HIToolbox)
62 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
63 _DPSNextEvent (in AppKit)
64 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit)
65 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
66 -[NSApplication run] (in AppKit)
67 NSApplicationMain (in AppKit)
68 start (in libdyld.dylib)
)
Object: <IDEDocumentController: 0x7fbb78f01330>
Method: -addDocument:
Thread: <NSThread: 0x7fbb78d19120>{number = 1, name = main}
Hints:

Backtrace:
0 -[IDEAssertionHandler handleFailureInMethod:object:fileName:lineNumber:assertionSignature:messageFormat:arguments:] (in IDEKit)
1 _DVTAssertionHandler (in DVTFoundation)
2 _DVTAssertionFailureHandler (in DVTFoundation)
3 -[IDEDocumentController addDocument:] (in IDEKit)
4 +[IDEDocumentController retainEditorDocument:] (in IDEKit)
5 +[IDEDocumentController _retainedEditorDocumentForURL:type:error:] (in IDEKit)
6 +[IDEDocumentController retainedEditorDocumentForNavigableItem:forUseWithWorkspaceDocument:error:] (in IDEKit)
7 -[IDEUtilityArea computeSelectedDocumentsForNavigables:] (in IDEKit)
8 -[IDEUtilityArea _rebuildStackWithNavigableItems:] (in IDEKit)
9 -[IDEUtilityArea _rebuildCategoriesAndStack] (in IDEKit)
10 -[DVTDelayedInvocation runBlock:] (in DVTFoundation)
11 __NSFirePerformWithOrder (in Foundation)
12 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION (in CoreFoundation)
13 __CFRunLoopDoObservers (in CoreFoundation)
14 __CFRunLoopRun (in CoreFoundation)
15 CFRunLoopRunSpecific (in CoreFoundation)
16 RunCurrentEventLoopInMode (in HIToolbox)
17 ReceiveNextEventCommon (in HIToolbox)
18 _BlockUntilNextEventMatchingListInModeWithFilter (in HIToolbox)
19 _DPSNextEvent (in AppKit)
20 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] (in AppKit)
21 -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] (in DVTKit)
22 -[NSApplication run] (in AppKit)
23 NSApplicationMain (in AppKit)
24 start (in libdyld.dylib)

abort() called

Application Specific Signatures:
((void *)0) == existingDocument

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff7f0dbfce __pthread_kill + 10
1 libsystem_pthread.dylib 0x00007fff7f219150 pthread_kill + 333
2 libsystem_c.dylib 0x00007fff7f03832a abort + 127
3 com.apple.dt.IDEKit 0x00000001104e8bf3 +[IDEAssertionHandler _handleAssertionWithLogString:assertionSignature:assertionReason:extraBacktrace:] + 1370
4 com.apple.dt.IDEKit 0x00000001104e92cf -[IDEAssertionHandler handleFailureInMethod:object:fileName:lineNumber:assertionSignature:messageFormat:arguments:] + 1261
5 com.apple.dt.DVTFoundation 0x000000010e988cf7 _DVTAssertionHandler + 374
6 com.apple.dt.DVTFoundation 0x000000010e988fcd _DVTAssertionFailureHandler + 371
7 com.apple.dt.IDEKit 0x000000011082a974 -[IDEDocumentController addDocument:] + 1088
8 com.apple.dt.IDEKit 0x0000000110817c16 +[IDEDocumentController retainEditorDocument:] + 746
9 com.apple.dt.IDEKit 0x0000000110819695 +[IDEDocumentController _retainedEditorDocumentForURL:type:error:] + 521
10 com.apple.dt.IDEKit 0x0000000110819d3c +[IDEDocumentController retainedEditorDocumentForNavigableItem:forUseWithWorkspaceDocument:error:] + 438
11 com.apple.dt.IDEKit 0x00000001105ac236 -[IDEUtilityArea computeSelectedDocumentsForNavigables:] + 375
12 com.apple.dt.IDEKit 0x00000001105add82 -[IDEUtilityArea _rebuildStackWithNavigableItems:] + 1553
13 com.apple.dt.IDEKit 0x00000001105af18d -[IDEUtilityArea _rebuildCategoriesAndStack] + 842
14 com.apple.dt.DVTFoundation 0x000000010e7454fe -[DVTDelayedInvocation runBlock:] + 382
15 com.apple.Foundation 0x00007fff59b7acf7 __NSFirePerformWithOrder + 360
16 com.apple.CoreFoundation 0x00007fff57a430c7 CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION + 23
17 com.apple.CoreFoundation 0x00007fff57a42fef __CFRunLoopDoObservers + 527
18 com.apple.CoreFoundation 0x00007fff57a255a8 __CFRunLoopRun + 1240
19 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
20 com.apple.HIToolbox 0x00007fff56d44866 RunCurrentEventLoopInMode + 286
21 com.apple.HIToolbox 0x00007fff56d444df ReceiveNextEventCommon + 366
22 com.apple.HIToolbox 0x00007fff56d44354 _BlockUntilNextEventMatchingListInModeWithFilter + 64
23 com.apple.AppKit 0x00007fff550419f7 _DPSNextEvent + 2085
24 com.apple.AppKit 0x00007fff557d6d98 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044
25 com.apple.dt.DVTKit 0x000000010f18fa1e -[DVTApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 390
26 com.apple.AppKit 0x00007fff55036805 -[NSApplication run] + 764
27 com.apple.AppKit 0x00007fff550059a6 NSApplicationMain + 804
28 libdyld.dylib 0x00007fff7ef8c145 start + 1

Thread 1:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21626f _pthread_wqthread + 1552
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 2:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21626f _pthread_wqthread + 1552
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 3:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21606a _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 4:
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff57a26475 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff57a257c7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
5 com.apple.Foundation 0x00007fff59ad13f6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.apple.DTDeviceKitBase 0x00000001206ec498 +[DTDKRemoteDeviceConnection startServiceBrowsers] + 217
7 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
8 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 5:
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff57a26475 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff57a257c7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
5 com.apple.Foundation 0x00007fff59ad13f6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.apple.DTDeviceKitBase 0x00000001206fa942 -[DTDKRemoteDeviceDataListener listenerThreadImplementation] + 1524
7 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
8 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
9 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
10 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 6:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff7f0dc142 __select + 10
1 com.apple.CoreFoundation 0x00007fff57a604db __CFSocketManager + 635
2 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
3 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
4 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 7:
0 libsystem_kernel.dylib 0x00007fff7f0dbe7e __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7f217662 _pthread_cond_wait + 732
2 libc++.1.dylib 0x00007fff7cfcbcb0 std::__1::condition_variable::wait(std::__1::unique_lockstd::__1::mutex&) + 18
3 com.apple.JavaScriptCore 0x00007fff5b4daac6 void std::__1::condition_variable_any::wait<std::__1::unique_lockbmalloc::Mutex >(std::__1::unique_lockbmalloc::Mutex&) + 86
4 com.apple.JavaScriptCore 0x00007fff5b4da9fb bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>::threadRunLoop() + 139
5 com.apple.JavaScriptCore 0x00007fff5b4dad28 void
std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_deletestd::__1::__thread_struct >, void ()(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>), bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::)()>> >(void) + 40
6 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
7 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
8 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 8:: com.apple.NSURLConnectionLoader
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff57a26475 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff57a257c7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
5 com.apple.CFNetwork 0x00007fff5699e432 +[NSURLConnection(Loader) _resourceLoadLoop:] + 357
6 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
7 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
8 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
9 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 9:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21606a _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 10:
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.spotlight.index 0x00007fff79bdc117 _handleExceptions + 111
3 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
4 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
5 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 11:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21626f _pthread_wqthread + 1552
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 12:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff57a26475 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff57a257c7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
5 com.apple.AppKit 0x00007fff5517f1f1 _NSEventThread + 184
6 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
7 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
8 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 13:: DYMobileDeviceManager
0 libsystem_kernel.dylib 0x00007fff7f0d2e76 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff7f0d2390 mach_msg + 60
2 com.apple.CoreFoundation 0x00007fff57a26475 __CFRunLoopServiceMachPort + 341
3 com.apple.CoreFoundation 0x00007fff57a257c7 __CFRunLoopRun + 1783
4 com.apple.CoreFoundation 0x00007fff57a24e43 CFRunLoopRunSpecific + 483
5 com.apple.Foundation 0x00007fff59ad13f6 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6 com.apple.Foundation 0x00007fff59ad12ce -[NSRunLoop(NSRunLoop) run] + 76
7 com.apple.GPUToolsMobileFoundation 0x0000000126c6228a -[DYMobileDeviceManager _deviceNotificationThread:] + 134
8 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
9 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
10 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
11 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 14:
0 libsystem_kernel.dylib 0x00007fff7f0dbe7e __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7f217662 _pthread_cond_wait + 732
2 com.apple.Xcode.DevToolsCore 0x0000000120141d45 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 596
3 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
4 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 15:
0 libsystem_kernel.dylib 0x00007fff7f0dbe7e __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7f217662 _pthread_cond_wait + 732
2 com.apple.Xcode.DevToolsCore 0x0000000120141d45 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 596
3 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
4 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 16:
0 libsystem_kernel.dylib 0x00007fff7f0dbe7e __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff7f217662 _pthread_cond_wait + 732
2 com.apple.Xcode.DevToolsCore 0x0000000120141d45 -[XCBlockQueue _processBlocksInThreadSlotNumber:] + 596
3 com.apple.Foundation 0x00007fff59adf6d8 NSThread__start + 1197
4 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
5 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
6 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 17:
0 libsystem_kernel.dylib 0x00007fff7f0dc6da __workq_kernreturn + 10
1 libsystem_pthread.dylib 0x00007fff7f21606a _pthread_wqthread + 1035
2 libsystem_pthread.dylib 0x00007fff7f215c4d start_wqthread + 13

Thread 18:
0 libsystem_kernel.dylib 0x00007fff7f0dc1d2 __semwait_signal + 10
1 libsystem_c.dylib 0x00007fff7f057774 nanosleep + 199
2 com.apple.CoreSymbolicationDT 0x0000000111ee1c05 cleaner_thread_main(void*) + 41
3 libsystem_pthread.dylib 0x00007fff7f2166c1 _pthread_body + 340
4 libsystem_pthread.dylib 0x00007fff7f21656d _pthread_start + 377
5 libsystem_pthread.dylib 0x00007fff7f215c5d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fffb8656340 rcx: 0x00007ffee14f1628 rdx: 0x0000000000000000
rdi: 0x0000000000000307 rsi: 0x0000000000000006 rbp: 0x00007ffee14f1660 rsp: 0x00007ffee14f1628
r8: 0x00007fffb20e9390 r9: 0x0000000110c27899 r10: 0x0000000000000000 r11: 0x0000000000000206
r12: 0x0000000000000307 r13: 0x0000000000000000 r14: 0x0000000000000006 r15: 0x000000000000002d
rip: 0x00007fff7f0dbfce rfl: 0x0000000000000206 cr2: 0x00007fffb8634148

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

Binary Images:
0x10e70c000 - 0x10e70dff7 com.apple.dt.Xcode (9.0.1 - 13249) <0B78F78F-0E0D-3465-BDC1-445B3B217506> /Applications/Xcode.app/Contents/MacOS/Xcode
0x10e713000 - 0x10ecc7ff7 com.apple.dt.DVTFoundation (9.0.1 - 13233) <042E8304-1AFA-3B28-B5CD-9A775EE9144B> /Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/DVTFoundation
0x10ef2f000 - 0x10ef3dfff +libswiftAVFoundation.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftAVFoundation.dylib
0x10ef48000 - 0x10ef4fff7 +libswiftCoreAudio.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftCoreAudio.dylib
0x10ef5c000 - 0x10ef5fff7 +libswiftCoreFoundation.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftCoreFoundation.dylib
0x10ef64000 - 0x10ef74ff7 +libswiftCoreGraphics.dylib (4.0 - 900.0.65.2) <80FC4D05-3C6B-367C-A7A7-E4CA5B0DAE19> /Applications/Xcode.app/Contents/Frameworks/libswiftCoreGraphics.dylib
0x10ef8d000 - 0x10ef92ffe +libswiftCoreImage.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftCoreImage.dylib
0x10ef97000 - 0x10efa1fff +libswiftCoreMedia.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftCoreMedia.dylib
0x10efa9000 - 0x10efaffff +libswiftDarwin.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftDarwin.dylib
0x10efbc000 - 0x10efd7ff7 +libswiftDispatch.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftDispatch.dylib
0x10f008000 - 0x10f00bff7 +libswiftIOKit.dylib (4.0 - 900.0.65.2) <0A6A0CCE-A8EA-3BA3-95BA-5B5AFD940902> /Applications/Xcode.app/Contents/Frameworks/libswiftIOKit.dylib
0x10f011000 - 0x10f019fff +libswiftMetal.dylib (4.0 - 900.0.65.2) <29940CA5-B761-366A-B24E-8452AFD85CD6> /Applications/Xcode.app/Contents/Frameworks/libswiftMetal.dylib
0x10f022000 - 0x10f028fff +libswiftObjectiveC.dylib (4.0 - 900.0.65.2) <03BA872C-82DC-3C81-964D-A3B13B0ED8A2> /Applications/Xcode.app/Contents/Frameworks/libswiftObjectiveC.dylib
0x10f032000 - 0x10f039fff +libswiftQuartzCore.dylib (4.0 - 900.0.65.2) <6A2756C3-014F-375B-80BE-7A83B9885BC6> /Applications/Xcode.app/Contents/Frameworks/libswiftQuartzCore.dylib
0x10f03f000 - 0x10f042fff +libswiftXPC.dylib (4.0 - 900.0.65.2) <71AE07A5-2D46-3846-9CA2-243E5019E571> /Applications/Xcode.app/Contents/Frameworks/libswiftXPC.dylib
0x10f048000 - 0x10f052ff7 +libswiftCoreData.dylib (4.0 - 900.0.65.2) <566D7BE5-195F-3257-9BED-90B87596E810> /Applications/Xcode.app/Contents/Frameworks/libswiftCoreData.dylib
0x10f061000 - 0x10f068fff com.apple.kperfdataDT (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/kperfdataDT.framework/Versions/A/kperfdataDT
0x10f070000 - 0x10f075ff7 +libswiftos.dylib (4.0 - 900.0.65.2) <10876F6C-3290-3B78-BB19-D79621E32631> /Applications/Xcode.app/Contents/Frameworks/libswiftos.dylib
0x10f07c000 - 0x10f07effb com.apple.dt.DVTDeveloperModeHelper (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeveloperModeHelper.framework/Versions/A/DVTDeveloperModeHelper
0x10f08d000 - 0x10f0d798f dyld (519.2.1) <002B0442-3D59-3159-BA10-1C0A77859C6A> /usr/lib/dyld
0x10f12b000 - 0x10f4a8fff com.apple.dt.DVTKit (9.0.1 - 13233) <1EB53091-8454-331D-93AC-75BFF3CDDC3F> /Applications/Xcode.app/Contents/SharedFrameworks/DVTKit.framework/Versions/A/DVTKit
0x10f701000 - 0x10fe6cfff com.apple.dt.IDEFoundation (9.0.1 - 13249) /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/IDEFoundation
0x110399000 - 0x110d62ff7 com.apple.dt.IDEKit (9.0.1 - 13249) /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/IDEKit
0x1114c2000 - 0x111883ff7 +libswiftCore.dylib (4.0 - 900.0.65.2) <71F681C6-2F90-35B4-848E-A2773EDB39EA> /Applications/Xcode.app/Contents/Frameworks/libswiftCore.dylib
0x111bb7000 - 0x111d2cff7 +libswiftFoundation.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftFoundation.dylib
0x111e68000 - 0x111e95ff7 +libswiftsimd.dylib (4.0 - 900.0.65.2) <028C6C2C-CB43-312B-8C52-3B6325F1B547> /Applications/Xcode.app/Contents/Frameworks/libswiftsimd.dylib
0x111ed0000 - 0x111f62ff7 com.apple.CoreSymbolicationDT (9.0 - 63080) <74705A47-1C15-380A-B8D1-E3DA1A02E685> /Applications/Xcode.app/Contents/SharedFrameworks/CoreSymbolicationDT.framework/Versions/A/CoreSymbolicationDT
0x111fb6000 - 0x111fe3fd3 com.apple.dt.instruments.DTXConnectionServices (9.0 - 63121) /Applications/Xcode.app/Contents/SharedFrameworks/DTXConnectionServices.framework/Versions/A/DTXConnectionServices
0x112008000 - 0x1120c2ff7 com.apple.dt.instruments.DVTInstrumentsFoundation (9.0 - 63121) /Applications/Xcode.app/Contents/SharedFrameworks/DVTInstrumentsFoundation.framework/Versions/A/DVTInstrumentsFoundation
0x112161000 - 0x1121a1fff com.apple.DebugSymbols (141 - 141) <60EA40BC-DEAE-3086-A5DA-76EF39C3B1EE> /Applications/Xcode.app/Contents/SharedFrameworks/DebugSymbolsDT.framework/Versions/A/DebugSymbolsDT
0x1121c1000 - 0x112245fd7 com.apple.SymbolicationDT (9.0 - 63080) <17366519-C63D-362A-8633-A18FB54E6632> /Applications/Xcode.app/Contents/SharedFrameworks/SymbolicationDT.framework/Versions/A/SymbolicationDT
0x112298000 - 0x1122c7ff7 com.apple.libktrace (1.0 - 218.1.1) /Applications/Xcode.app/Contents/SharedFrameworks/ktraceDT.framework/Versions/A/ktraceDT
0x1122e0000 - 0x112301ff7 com.apple.dt.instruments.DVTInstrumentsUtilities (9.0 - 63121) /Applications/Xcode.app/Contents/SharedFrameworks/DVTInstrumentsUtilities.framework/Versions/A/DVTInstrumentsUtilities
0x112328000 - 0x1123e3ff7 com.apple.dt.XCTest (1.0 - 13201) <642C6C7A-E7A4-37BA-B808-DA59BDAA2BC0> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework/Versions/A/XCTest
0x11247e000 - 0x112496ffb com.apple.dt.DVTDeviceFoundation (9.0.1 - 1) <12F89CCD-F196-37E7-BC43-8A5C5C20F842> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDeviceFoundation.framework/Versions/A/DVTDeviceFoundation
0x1124af000 - 0x1124bfff7 +libswiftAppKit.dylib (4.0 - 900.0.65.2) /Applications/Xcode.app/Contents/Frameworks/libswiftAppKit.dylib
0x1124d1000 - 0x1124f7ff7 com.apple.dt.XCTAutomationSupport (1.0 - 1) <5F038697-DF65-306F-9FEC-F41CBF082325> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/XCTAutomationSupport.framework/Versions/A/XCTAutomationSupport
0x11251a000 - 0x114e53ff3 +libclang.dylib (900.0.38) /Applications/Xcode.app/Contents/Frameworks/libclang.dylib
0x11550c000 - 0x11559efff com.apple.dt.SourceKit (1.0 - 13121) /Applications/Xcode.app/Contents/SharedFrameworks/SourceKit.framework/Versions/A/SourceKit
0x1155d6000 - 0x117086fff +libLTO.dylib (900.0.38) <585D6DC3-A6E0-33F8-8F2E-138A6B58FFA5> /Applications/Xcode.app/Contents/Frameworks/libLTO.dylib
0x117518000 - 0x117545ff3 com.apple.dt.DVTAnalytics (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTAnalytics.framework/Versions/A/DVTAnalytics
0x11756d000 - 0x117577ff3 com.apple.dt.DVTServices (9.0.1 - 13233) /Applications/Xcode.app/Contents/SharedFrameworks/DVTServices.framework/Versions/A/DVTServices
0x117584000 - 0x1175c3ff7 com.apple.dt.DVTPortal (9.0.1 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTPortal.framework/Versions/A/DVTPortal
0x1175f4000 - 0x117637ff7 com.apple.dt.DVTDocumentation (1.0 - 13233) <78FCD24B-D05A-342E-91FC-7A843EEABE86> /Applications/Xcode.app/Contents/SharedFrameworks/DVTDocumentation.framework/Versions/A/DVTDocumentation
0x11766a000 - 0x117951ff7 com.apple.DNTDocumentationModel (1.0 - 1) <60B49E1A-51D3-3D66-BD31-706B9AA26212> /Applications/Xcode.app/Contents/SharedFrameworks/DNTDocumentationModel.framework/Versions/A/DNTDocumentationModel
0x117a1d000 - 0x117bd9ff7 com.apple.DNTDocumentationSupport (1.0 - 13043) <1A75812C-6D3F-33EA-A0BB-442B15FAE9BE> /Applications/Xcode.app/Contents/SharedFrameworks/DNTDocumentationSupport.framework/Versions/A/DNTDocumentationSupport
0x117cc9000 - 0x117ce1fff com.apple.dt.XCTDaemonControl (1.0 - 1) <4DC2E05B-57C8-332E-BB4C-01E4972DDCD2> /Applications/Xcode.app/Contents/SharedFrameworks/XCTDaemonControl.framework/Versions/A/XCTDaemonControl
0x117cff000 - 0x117d9fff7 com.apple.dt.Xcode.DVTSourceControl (9.0.1 - 13120) /Applications/Xcode.app/Contents/SharedFrameworks/DVTSourceControl.framework/Versions/A/DVTSourceControl
0x117e05000 - 0x117f24ff7 com.apple.DNTSourceKitSupport (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DNTSourceKitSupport.framework/Versions/A/DNTSourceKitSupport
0x117f58000 - 0x117fa1fff com.apple.dt.DVTSourceControlHostedAccount (9.0.1 - 13120) /Applications/Xcode.app/Contents/SharedFrameworks/DVTSourceControlHostedAccount.framework/Versions/A/DVTSourceControlHostedAccount
0x117ff7000 - 0x11800eff3 com.apple.dt.DVTAnalyticsClient (9.0.1 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTAnalyticsClient.framework/Versions/A/DVTAnalyticsClient
0x11802a000 - 0x1180bbfff com.apple.DNTTransformer (1.0 - 1) <8868F98B-4EBF-3C8D-A616-8B176344AAC3> /Applications/Xcode.app/Contents/SharedFrameworks/DNTTransformer.framework/Versions/A/DNTTransformer
0x118121000 - 0x118130ff3 com.apple.dt.XcodeKit (9.0.1 - 13249) <7CDD79C4-20B4-3CCD-B2EC-7500567968EA> /Applications/Xcode.app/Contents/Developer/Library/Frameworks/XcodeKit.framework/Versions/A/XcodeKit
0x118140000 - 0x118173ffb com.apple.dt.DVTProducts (1.0 - 1) <6043D640-9021-34F9-B644-96B3072F6292> /Applications/Xcode.app/Contents/SharedFrameworks/DVTProducts.framework/Versions/A/DVTProducts
0x118197000 - 0x118260ff7 com.apple.dt.instruments.DTGraphKit (9.0 - 63088) <96382894-2CAB-32FB-8535-4981D4B699C0> /Applications/Xcode.app/Contents/SharedFrameworks/DTGraphKit.framework/Versions/A/DTGraphKit
0x1185ab000 - 0x1185beffb com.apple.dt.DebugHierarchyFoundation (1.0 - 1) <9718F62C-A3F2-3BFC-B430-D1F9EA217B1C> /Applications/Xcode.app/Contents/SharedFrameworks/DebugHierarchyFoundation.framework/Versions/A/DebugHierarchyFoundation
0x1185ce000 - 0x1185e3ff3 com.apple.dt.DebugHierarchyKit (1.0 - 1) <25E6BD6F-2430-3849-B57D-7147CAC7F18E> /Applications/Xcode.app/Contents/SharedFrameworks/DebugHierarchyKit.framework/Versions/A/DebugHierarchyKit
0x11ac2b000 - 0x11ac76ffb com.apple.dt.dbg.DebuggerFoundation (9.0.1 - 13241) <4E085137-DB27-3875-84D2-3F3EC5CE5CAE> /Applications/Xcode.app/Contents/PlugIns/DebuggerFoundation.ideplugin/Contents/MacOS/DebuggerFoundation
0x11acb3000 - 0x11ad3cfff com.apple.dt.IBAutolayoutFoundation (9.0.1 - 13196) <947E98B5-D91A-363A-8DE2-22A7DFD39BB4> /Applications/Xcode.app/Contents/Frameworks/IBAutolayoutFoundation.framework/Versions/A/IBAutolayoutFoundation
0x11ad9b000 - 0x11ad9bfff com.apple.IDEWatchKit1SupportUI (9.0.1 - 13003) <79A7CA89-E660-355B-8B4A-EA8319DA3DB3> /Applications/Xcode.app/Contents/PlugIns/IDEWatchKit1SupportUI.ideplugin/Contents/MacOS/IDEWatchKit1SupportUI
0x11ada0000 - 0x11adacfff com.apple.dt.IDELanguageSupportCore (9.0.1 - 13083) <7DC3495E-D713-3670-9A36-17D545F603F6> /Applications/Xcode.app/Contents/PlugIns/IDELanguageSupportCore.ideplugin/Contents/MacOS/IDELanguageSupportCore
0x11adba000 - 0x11adbbffb com.apple.dt.dbg.DebuggerLLDBService (9.0.1 - 13241) <90154D3D-9AE0-34B5-88D1-B674EEA899C6> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDBService.ideplugin/Contents/MacOS/DebuggerLLDBService
0x11adc1000 - 0x11adc9fff com.apple.DevToolsFoundation (11.0.1 - 13204) <37C61CDA-9DD9-3ED8-9343-78BBCAF4AE8E> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsFoundation.framework/Versions/A/DevToolsFoundation
0x11add4000 - 0x11add8ff3 com.apple.dt.XCTDaemonControlMobileDevice (1.0 - 1) <69DC88CE-6762-348E-A7D6-C6E3F3A38177> /Applications/Xcode.app/Contents/SharedFrameworks/XCTDaemonControlMobileDevice.framework/Versions/A/XCTDaemonControlMobileDevice
0x11ade0000 - 0x11adf5ffb com.apple.DVTiPhoneSimulatorRemoteClient (9.0.1 - 13176) <3D65A97E-2B9B-3DCC-8D18-33DC3D569A11> /Applications/Xcode.app/Contents/SharedFrameworks/DVTiPhoneSimulatorRemoteClient.framework/Versions/A/DVTiPhoneSimulatorRemoteClient
0x11ae09000 - 0x11ae09fff com.apple.Metal (1.0 - 1) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Metal.xcplugin/Contents/MacOS/Metal
0x11b013000 - 0x11b01aff7 com.apple.CoreSimulator.CoreSimDeviceIO (494.22.3 - 494.22.3) <397BE4BA-774A-3F20-BAE6-83EB3A1CF7B8> /Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/Frameworks/CoreSimDeviceIO.framework/Versions/A/CoreSimDeviceIO
0x11b024000 - 0x11b027ff7 com.apple.XCWatchKit1Support (1.0 - 1) <0B33DA66-82A2-387F-9BAA-FE8A648068C2> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCWatchKit1Support.xcplugin/Contents/MacOS/XCWatchKit1Support
0x11b02c000 - 0x11b02fffb com.apple.xcode.compilers.mlkit (11.0.1 - 13045) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/MLKit.xcplugin/Contents/MacOS/MLKit
0x11b035000 - 0x11b035fff com.apple.IBCompilerPlugin (9.0.1 - 13196) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/IBCompilerPlugin.xcplugin/Contents/MacOS/IBCompilerPlugin
0x11b449000 - 0x11b56efff com.apple.dt.IBFoundation (9.0.1 - 13196) /Applications/Xcode.app/Contents/Frameworks/IBFoundation.framework/Versions/A/IBFoundation
0x11b644000 - 0x11b6ceff7 com.apple.dt.dbg.DebuggerLLDB (9.0.1 - 13241) <9D39C726-555D-3830-99AB-1B8FFB1E4039> /Applications/Xcode.app/Contents/PlugIns/DebuggerLLDB.ideplugin/Contents/MacOS/DebuggerLLDB
0x11b759000 - 0x11ed88fff com.apple.LLDB.framework (1.900.0.50.1 - 900.0.50.1) <918FC376-04CB-3B49-8367-9FB1A1727CE3> /Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB
0x11fea1000 - 0x11fee3ff7 com.apple.LLDBRPC (1.0 - 900.0.50.1) <0838084B-E228-37A1-9300-1220205EB758> /Applications/Xcode.app/Contents/SharedFrameworks/LLDBRPC.framework/Versions/A/LLDBRPC
0x11ff1b000 - 0x11ffa0ff3 com.apple.dt.IDE.Xcode3Core (9.0.1 - 13204) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xcode3Core
0x11ffef000 - 0x1203aefff com.apple.Xcode.DevToolsCore (11.0.1 - 13204) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsCore.framework/Versions/A/DevToolsCore
0x120577000 - 0x1205adffb com.apple.Xcode.DevToolsSupport (11.0.1 - 13204) <28EC12F3-70C7-3FAB-94FB-B7D48585C27D> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/Frameworks/DevToolsSupport.framework/Versions/A/DevToolsSupport
0x1205d5000 - 0x12066aff7 com.apple.dt.IDE.IDEiOSSupportCore (9.0.1 - 13176) <623FFF25-C86B-3DA2-9E3C-C02D78CA5676> /Applications/Xcode.app/Contents/PlugIns/IDEiOSSupportCore.ideplugin/Contents/MacOS/IDEiOSSupportCore
0x1206d0000 - 0x120780ff7 com.apple.DTDeviceKitBase (9.0.1 - 13176) <4350E717-5124-3A9A-BCB5-596C755D1C52> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKitBase.framework/Versions/A/DTDeviceKitBase
0x1207f7000 - 0x120880ff7 com.apple.CoreSimulator (494.22.3 - 494.22.3) <00683E61-51CC-3555-99FB-7DCE5F3322D7> /Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/CoreSimulator
0x1208c9000 - 0x1208f5ff3 com.apple.CoreSimulator.FoundationXPC (494.22.3 - 494.22.3) <5220E999-5D84-3956-88FB-E70E2D36A6A9> /Library/Developer/PrivateFrameworks/CoreSimulator.framework/Versions/A/Frameworks/FoundationXPC.framework/Versions/A/FoundationXPC
0x12090b000 - 0x120927fff com.apple.dt.XCLanguageSupport (9.0.1 - 13083) <8C042D83-A5DF-3828-BABD-73D2E3CC21A8> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/XCLanguageSupport.xcplugin/Contents/MacOS/XCLanguageSupport
0x12093a000 - 0x120946ff7 com.apple.xcode.plug-in.CoreBuildTasks (11.0.1 - 13204) <76009F6A-FE64-3D3F-8D92-0CE0823659A2> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/MacOS/CoreBuildTasks
0x12094e000 - 0x12094eff7 com.apple.xcode.compilers.coredata (11.0.1 - 13204) /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Core Data.xcplugin/Contents/MacOS/Core Data
0x12097c000 - 0x12097cff7 com.apple.compilers.clang (11.0.1 - 13204) <7DE73291-EC3E-3EAA-B061-119488764424> /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library/Xcode/Plug-ins/Clang LLVM 1.0.xcplugin/Contents/MacOS/Clang LLVM 1.0
0x120980000 - 0x120982fff com.apple.dt.IDEAppleTVSupportCore (1.0 - 1) <9057E723-E798-3BF1-AD4E-2E05D8C34550> /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEAppleTVSupportCore.ideplugin/Contents/MacOS/IDEAppleTVSupportCore
0x12098a000 - 0x12098bff7 com.apple.dt.IDEWatchSupportCore (1.0 - 1) <26C036CD-F759-389D-80FB-DBE25248F905> /Applications/Xcode.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEWatchSupportCore.ideplugin/Contents/MacOS/IDEWatchSupportCore
0x120991000 - 0x120996ff3 com.apple.dt.IDEiOSPlatformSupportCore (1.0 - 1.0) <14DBE1CB-5FE2-3A0C-BC67-8A1EA6293AEE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEiOSPlatformSupportCore.ideplugin/Contents/MacOS/IDEiOSPlatformSupportCore
0x12099d000 - 0x12099efff com.apple.dt.IDE.IDEOSXSupportCore (9.0.1 - 13022) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/IDEOSXSupportCore.ideplugin/Contents/MacOS/IDEOSXSupportCore
0x1216f0000 - 0x1216f0fff com.apple.dt.IDE.DFRSupportKit (9.0 - 1) <1FC98636-153C-3D8E-97A9-B60A270FFE5C> /Applications/Xcode.app/Contents/Frameworks/DFRSupportKit.framework/Versions/A/DFRSupportKit
0x121703000 - 0x121c49fff com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.28.26 - 10.2.8) /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
0x12267c000 - 0x12267dff3 +liblaunch_sim.dylib (1205.1.10) <9C3926DE-39D8-32AA-8039-21B3BAC63537> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib
0x122683000 - 0x122684ff3 +liblaunch_sim.dylib (1205.1.10) /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/tvOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib
0x12268a000 - 0x12268bff3 +liblaunch_sim.dylib (1205.1.10) <8E7DEBF2-8477-325D-B938-EE28E52F7C84> /Applications/Xcode.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/watchOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/host/liblaunch_sim.dylib
0x122691000 - 0x1226a2fff com.apple.dt.IDE.IDEGit (9.0.1 - 13241) <6390D516-2495-36FA-94D5-DFF2D7E0C80C> /Applications/Xcode.app/Contents/PlugIns/IDEGit.ideplugin/Contents/MacOS/IDEGit
0x1226b9000 - 0x122706ff7 com.apple.DADocSetAccess (9.0.1 - 13012) <685E8BE7-F74B-390C-9E68-2FB6E9B595AD> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetAccess.framework/Versions/A/DADocSetAccess
0x122731000 - 0x122746ff3 com.apple.DADocSetManagement (9.0.1 - 13012) <906199D9-0A86-3DF4-89EC-9447C853CBC8> /Applications/Xcode.app/Contents/SharedFrameworks/DADocSetManagement.framework/Versions/A/DADocSetManagement
0x122758000 - 0x12294afff com.apple.dt.IDE.IDEInterfaceBuilderCocoaIntegration (9.0.1 - 13196) <8AF1AAB0-8492-3988-939B-12A7F7126B8B> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaIntegration.framework/IDEInterfaceBuilderCocoaIntegration
0x122b1f000 - 0x122b3cff3 com.apple.IBCocoaTouchToolFoundation (9.0.1 - 13174) <16A91A89-07C8-3FA0-8C73-D5D13A4EA58D> /Applications/Xcode.app/Contents/Frameworks/IBCocoaTouchToolFoundation.framework/Versions/A/IBCocoaTouchToolFoundation
0x122b6a000 - 0x122c65ff7 com.apple.SimulatorKit (1.0 - 494.22.3) <0E0F220A-9CFD-35B1-981B-572D7FF7A781> /Applications/Xcode.app/Contents/Developer/Library/PrivateFrameworks/SimulatorKit.framework/Versions/A/SimulatorKit
0x122cb8000 - 0x122cc8ffb com.apple.DTDeviceKit (4.2 - 13176) <72A2C985-D7E8-3E5D-BD02-D512A5730427> /Applications/Xcode.app/Contents/SharedFrameworks/DTDeviceKit.framework/Versions/A/DTDeviceKit
0x122cda000 - 0x122ce0ff7 +libswiftAccelerate.dylib (4.0 - 900.0.65.2) <79705E60-1C8A-3CD8-BD28-0ED9A63122EF> /Applications/Xcode.app/Contents/Frameworks/libswiftAccelerate.dylib
0x122cea000 - 0x122d00ffb com.apple.dt.IDE.IDEInterfaceBuilderiOSIntegration (9.0.1 - 13174) <7E1322A1-5A46-3B1F-9AE3-4B34E9AA2204> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderiOSIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderiOSIntegration
0x122d0f000 - 0x122d4dff7 com.apple.dt.IDE.IDEInterfaceBuilderAppleTVIntegration (9.0.1 - 13060) <02B3B87F-2272-3DBD-A6C2-973700DCF5A6> /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderAppleTVIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderAppleTVIntegration
0x122d6c000 - 0x122d70fff com.apple.audio.AppleHDAHALPlugIn (280.12 - 280.12) <9ACA0127-E687-3885-9475-1D5E4DD83168> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x123528000 - 0x123b24fff com.apple.dt.IDE.IDEInterfaceBuilderKit (9.0.1 - 13196) <53C4E112-53EA-35D5-A59B-9CA48245B93E> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderKit.framework/IDEInterfaceBuilderKit
0x123f70000 - 0x1241bcff3 com.apple.dt.IDE.IDEInterfaceBuilderCocoaTouchIntegration (9.0.1 - 13174) /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderCocoaTouchIntegration.framework/IDEInterfaceBuilderCocoaTouchIntegration
0x1243be000 - 0x12443fff3 com.apple.dt.IDE.IDEInterfaceBuilderWatchKitIntegration (9.0.1 - 13051) /Applications/Xcode.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/Library/Xcode/PrivatePlugIns/IDEInterfaceBuilderWatchKitIntegration.ideplugin/Contents/MacOS/IDEInterfaceBuilderWatchKitIntegration
0x124485000 - 0x1244a8fff com.apple.dt.IDE.IDEInterfaceBuilderDFRSupport (9.0.1 - 13038) <688E94C3-3001-3F1B-B185-A2CD6408CAD2> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderDFRSupport.ideplugin/Contents/MacOS/IDEInterfaceBuilderDFRSupport
0x1244c5000 - 0x1244ccfff com.apple.dt.IDE.IDEInterfaceBuilderEditorDFRSupport (9.0.1 - 13027) <13D77FED-A533-38AF-A2A3-A5FE9AB994F9> /Applications/Xcode.app/Contents/PlugIns/IDEInterfaceBuilderEditorDFRSupport.ideplugin/Contents/MacOS/IDEInterfaceBuilderEditorDFRSupport
0x124600000 - 0x1247a6fff com.apple.audio.units.Components (1.14 - 1.14) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x124884000 - 0x124933ffb com.apple.dt.IDE.IDESourceEditor (9.0.1 - 13241) <210DEFDC-9F3D-3588-8FCC-8309E4671B8B> /Applications/Xcode.app/Contents/PlugIns/IDESourceEditor.ideplugin/Contents/MacOS/IDESourceEditor
0x12499e000 - 0x1249f1fff com.apple.dt.IDE.IDESourceCodeComparisonEditor (9.0.1 - 13241) <61316502-8DBA-3F58-AEE9-EA535C985F7B> /Applications/Xcode.app/Contents/PlugIns/IDESourceCodeComparisonEditor.ideplugin/Contents/MacOS/IDESourceCodeComparisonEditor
0x124a1c000 - 0x124c59fff com.apple.dt.IDE.IDEPegasusSourceEditor (9.0.1 - 13241) <4D8D25DE-FACF-37ED-826C-73B14A0DD2F7> /Applications/Xcode.app/Contents/PlugIns/IDEPegasusSourceEditor.ideplugin/Contents/MacOS/IDEPegasusSourceEditor
0x124e18000 - 0x12515efff com.apple.dt.SourceEditor (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/SourceEditor.framework/Versions/A/SourceEditor
0x125331000 - 0x125397ff7 com.apple.dt.DVTMarkdown (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/DVTMarkup.framework/Versions/A/DVTMarkup
0x1253bc000 - 0x1253d5ff7 com.apple.MarkupSupport (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/MarkupSupport.framework/Versions/A/MarkupSupport
0x1253f0000 - 0x125489ff7 com.apple.SourceKitSupport (1.0 - 1) <42210F84-9357-3DB7-BE68-9B7E0445C996> /Applications/Xcode.app/Contents/SharedFrameworks/SourceKitSupport.framework/Versions/A/SourceKitSupport
0x125515000 - 0x125538fff com.apple.SourceModelSupport (1.0 - 1) <8124283B-F298-3E9D-8AD1-1ED584480CF2> /Applications/Xcode.app/Contents/SharedFrameworks/SourceModelSupport.framework/Versions/A/SourceModelSupport
0x125554000 - 0x125586ffb com.apple.dt.CommonMark (1.0 - 1) <905D070C-892A-3863-9F33-197CFC73111F> /Applications/Xcode.app/Contents/SharedFrameworks/DVTMarkup.framework/Versions/A/Frameworks/CommonMark.framework/Versions/A/CommonMark
0x125597000 - 0x1256fbff7 com.apple.dt.IDE.IDESourceControlUI (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/IDESourceControlUI.ideplugin/Contents/MacOS/IDESourceControlUI
0x1257db000 - 0x125827fff com.apple.dt.IDE.IDEiPhoneSupport (9.0.1 - 13176) /Applications/Xcode.app/Contents/PlugIns/IDEiPhoneSupport.ideplugin/Contents/MacOS/IDEiPhoneSupport
0x125871000 - 0x1259fcff7 com.apple.dt.IDE.Xcode3UI (9.0.1 - 13204) <4DBF27AC-DCED-3254-BDD3-44D71E4C5668> /Applications/Xcode.app/Contents/PlugIns/Xcode3UI.ideplugin/Contents/MacOS/Xcode3UI
0x125b20000 - 0x125b60fff com.apple.dt.IDE.iCloudSupport (9.0.1 - 13241) <8BBC2C03-AAEE-3DDB-B983-4B6D5483A965> /Applications/Xcode.app/Contents/PlugIns/iCloudSupport.ideplugin/Contents/MacOS/iCloudSupport
0x125b9a000 - 0x125bf3ff7 com.apple.dt.IDEProductsUI (1.0 - 1) <0DFE6FD3-8184-3E0E-9CFD-C2DFF6EA32E0> /Applications/Xcode.app/Contents/PlugIns/IDEProductsUI.ideplugin/Contents/MacOS/IDEProductsUI
0x125efd000 - 0x125f4bfff com.apple.dt.gpu.GPUDebuggerFoundation (9.0.1 - 23173) /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerFoundation.ideplugin/Contents/MacOS/GPUDebuggerFoundation
0x125f8b000 - 0x125f92ff7 com.apple.GPUToolsPlatform (1.0 - 23187) <78EE8DB8-E266-39E5-BAB8-8665A17493CA> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsPlatform.framework/Versions/A/GPUToolsPlatform
0x125f9c000 - 0x125faaff7 com.apple.GPUToolsShaderProfiler (1.0 - 23105) <661E7E56-8B61-3711-93E8-0D7CA780EA55> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsShaderProfiler.framework/Versions/A/GPUToolsShaderProfiler
0x125fbc000 - 0x126008fff com.apple.GPUToolsCore (1.0 - 23187) /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsCore.framework/Versions/A/GPUToolsCore
0x126045000 - 0x126084fff com.apple.GPUTools (1.0 - 23187) <65080B5D-3F81-31D6-B4E6-F5C1896B5C32> /Applications/Xcode.app/Contents/SharedFrameworks/GPUTools.framework/Versions/A/GPUTools
0x1260b7000 - 0x126111fff com.apple.GLToolsServices (1.0 - 23105) /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsServices.framework/Versions/A/GLToolsServices
0x126152000 - 0x1261c8fff com.apple.GPUToolsServices (1.0 - 23105) <0D300E73-D043-385B-8451-4612F683B509> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsServices.framework/Versions/A/GPUToolsServices
0x126241000 - 0x126245fff com.apple.GPUToolsInterface (1.0 - 23105) <13938D95-6F4C-3E49-AE3E-0AC3049D883C> /Applications/Xcode.app/Contents/SharedFrameworks/GPUToolsInterface.framework/Versions/A/GPUToolsInterface
0x12624b000 - 0x12625fff7 com.apple.GLToolsInterface (1.0 - 23105) <38185C23-0130-3F8F-81AC-263C2A15314D> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsInterface.framework/Versions/A/GLToolsInterface
0x126270000 - 0x1262d8ff7 com.apple.GLToolsCore (1.0 - 23187) /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsCore.framework/Versions/A/GLToolsCore
0x1262f6000 - 0x12630cfff com.apple.GLTools (1.0 - 23187) <56D4CF20-995C-3662-95B2-6390889EDA52> /Applications/Xcode.app/Contents/SharedFrameworks/GLTools.framework/Versions/A/GLTools
0x126315000 - 0x12639cff7 com.apple.gputools.GLToolsAnalysisEngine (1.0 - 23105) <326A982E-355E-3B3F-BECF-9DC3FC7028C4> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsAnalysisEngine.framework/Versions/A/GLToolsAnalysisEngine
0x1263e7000 - 0x126446ff7 com.apple.dt.gpu.GPUDebuggerKit (9.0.1 - 23173) /Applications/Xcode.app/Contents/PlugIns/GPUDebuggerKit.ideplugin/Contents/MacOS/GPUDebuggerKit
0x12648e000 - 0x1264e3ff7 com.apple.dt.IDE.IDEDocViewer (9.0.1 - 13241) <038D6063-46A2-3BE7-95D3-2B40439EDC5D> /Applications/Xcode.app/Contents/PlugIns/IDEDocViewer.ideplugin/Contents/MacOS/IDEDocViewer
0x126536000 - 0x12653efff com.apple.dt.gpu.GPUTraceDebugger (9.0.1 - 23173) <2193AF1C-4B9C-350B-8622-AEEA15736AC5> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebugger.ideplugin/Contents/MacOS/GPUTraceDebugger
0x126548000 - 0x1265f4fff com.apple.dt.gpu.GPUTraceDebuggerUI (9.0.1 - 23173) <5C31F0D3-6FD3-3EA0-8AEC-99324A2DEEFE> /Applications/Xcode.app/Contents/PlugIns/GPUTraceDebuggerUI.ideplugin/Contents/MacOS/GPUTraceDebuggerUI
0x126664000 - 0x126686fff com.apple.dt.IDEIODebugGaugesUI (9.0.1 - 13241) <26BBB33F-2B4F-3736-8754-E20819088C2D> /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesUI.ideplugin/Contents/MacOS/IDEIODebugGaugesUI
0x1266ae000 - 0x1266b5ff7 com.apple.dt.IDEIODebugGaugesCore (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/IDEIODebugGaugesCore.ideplugin/Contents/MacOS/IDEIODebugGaugesCore
0x12672f000 - 0x126734ff7 com.apple.dt.IDE.IBBuildSupport (9.0.1 - 13196) /Applications/Xcode.app/Contents/PlugIns/IBBuildSupport.ideplugin/Contents/MacOS/IBBuildSupport
0x12673d000 - 0x126745ff7 com.apple.dt.IDEAppleTVSupportUI (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEAppleTVSupportUI.ideplugin/Contents/MacOS/IDEAppleTVSupportUI
0x12674f000 - 0x126753ffb com.apple.dt.IDEWatchSupportUI (1.0 - 1) /Applications/Xcode.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Xcode/PrivatePlugIns/IDEWatchSupportUI.ideplugin/Contents/MacOS/IDEWatchSupportUI
0x126a37000 - 0x126ad8ff7 com.apple.dt.gpu.GPURenderTargetEditor (9.0.1 - 23173) /Applications/Xcode.app/Contents/PlugIns/GPURenderTargetEditor.ideplugin/Contents/MacOS/GPURenderTargetEditor
0x126b3c000 - 0x126b40fff com.apple.MTLToolsServices (1.0 - 1) <2B79D489-60B3-321E-AB63-60BC33A900E9> /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsServices.framework/Versions/A/MTLToolsServices
0x126b47000 - 0x126b6bfff com.apple.MTLTools (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/MTLTools.framework/Versions/A/MTLTools
0x126b79000 - 0x126b7bfff com.apple.gdt.MTLToolsAnalysisEngine (1.0 - 23105) /Applications/Xcode.app/Contents/SharedFrameworks/MTLToolsAnalysisEngine.framework/Versions/A/MTLToolsAnalysisEngine
0x126b81000 - 0x126b84ff7 com.apple.dt.gpu.GPUDebuggeriOSSupport (9.0.1 - 23013) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggeriOSSupport.ideplugin/Contents/MacOS/GPUDebuggeriOSSupport
0x126b8a000 - 0x126b8afff com.apple.GLToolsMobileFoundation (1.0 - 23018) <1D8919C5-F352-3709-A829-937B2CBBD817> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsMobileFoundation.framework/Versions/A/GLToolsMobileFoundation
0x126b8f000 - 0x126bf5fff com.apple.GLToolsExpert (1.0 - 23018) <6100EEB8-495A-3BB4-95CA-E30C4FAF940E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GLToolsExpert.framework/Versions/A/GLToolsExpert
0x126c31000 - 0x126c4bff7 com.apple.GLToolsShaderProfiler (1.0 - 23105) <6B33DB10-1618-3717-8697-956FCE3AAF8E> /Applications/Xcode.app/Contents/SharedFrameworks/GLToolsShaderProfiler.framework/Versions/A/GLToolsShaderProfiler
0x126c59000 - 0x126c6dfff com.apple.GPUToolsMobileFoundation (1.0 - 23018) /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/PrivateFrameworks/GPUToolsMobileFoundation.framework/Versions/A/GPUToolsMobileFoundation
0x126c81000 - 0x126c84ff3 com.apple.dt.gpu.GPUDebuggertvOSSupport (9.0.1 - 23013) <163686E4-F33B-367A-B55A-7785E1AD1862> /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggertvOSSupport.ideplugin/Contents/MacOS/GPUDebuggertvOSSupport
0x126c8a000 - 0x126c8dffb com.apple.dt.gpu.GPUDebuggerOSXSupport (9.0.1 - 23173) <06EAE279-E135-3B20-99F5-292017973898> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Xcode/PrivatePlugIns/GPUDebuggerOSXSupport.ideplugin/Contents/MacOS/GPUDebuggerOSXSupport
0x126c93000 - 0x126ca1fff com.apple.GPUToolsDesktopFoundation (1.0 - 23011) /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/GPUToolsDesktopFoundation.framework/Versions/A/GPUToolsDesktopFoundation
0x126d64000 - 0x126d6fffb com.apple.dt.IDE.IDESubversion (9.0.1 - 13241) <22BAC715-9DAB-3FCF-A515-02653E03C626> /Applications/Xcode.app/Contents/PlugIns/IDESubversion.ideplugin/Contents/MacOS/IDESubversion
0x1281d6000 - 0x1282fcfff com.apple.dt.IDE.IDESceneKitEditor (9.0.1 - 13112) <70BDA988-125D-3B49-9E83-4313ED586F1E> /Applications/Xcode.app/Contents/PlugIns/IDESceneKitEditor.ideplugin/Contents/MacOS/IDESceneKitEditor
0x128380000 - 0x12840efff com.apple.xcode.GameToolsFoundation (1.0 - 13018) /Applications/Xcode.app/Contents/SharedFrameworks/GameToolsFoundation.framework/Versions/A/GameToolsFoundation
0x128462000 - 0x1284caff7 com.apple.dt.IDE.IDEPlaygroundEditor (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/IDEPlaygroundEditor.ideplugin/Contents/MacOS/IDEPlaygroundEditor
0x12851f000 - 0x128544ff7 com.apple.dt.IDE.IDEPlaygroundExecution (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/IDEPlaygroundExecution.ideplugin/Contents/MacOS/IDEPlaygroundExecution
0x128564000 - 0x12856aff3 com.apple.dt.DVTPlaygroundCommunication (1.0 - 13013) <0FD950BB-10DD-3187-A35A-96B9E19B3CAF> /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/PrivateFrameworks/DVTPlaygroundCommunication.framework/Versions/A/DVTPlaygroundCommunication
0x128575000 - 0x1285a0ffb com.apple.dt.IDE.IDEMemoryGraphDebugger (9.0.1 - 13241) <9A83C800-4E74-3BE0-B8FF-7FA129662E01> /Applications/Xcode.app/Contents/PlugIns/IDEMemoryGraphDebugger.ideplugin/Contents/MacOS/IDEMemoryGraphDebugger
0x1285c8000 - 0x128654ff7 com.apple.dt.IDE.IDEPegasusPlaygroundEditor (9.0.1 - 13241) <9C17B397-D0D5-3406-853D-A50FE3067BB0> /Applications/Xcode.app/Contents/PlugIns/IDEPegasusPlaygroundEditor.ideplugin/Contents/MacOS/IDEPegasusPlaygroundEditor
0x1286f7000 - 0x1286fcff7 com.apple.dt.dbg.DebuggerKit (1.0 - 1) <8AFDAADE-9BFB-3801-B2CA-0914DCD2FF1A> /Applications/Xcode.app/Contents/PlugIns/DebuggerKit.ideplugin/Contents/MacOS/DebuggerKit
0x128707000 - 0x12870efff com.apple.dt.IDE.HexEditor (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/HexEditor.ideplugin/Contents/MacOS/HexEditor
0x128718000 - 0x128746fff com.apple.dt.HexFiendFramework (9.0.1 - 13241) <8FDC8BB0-DED0-3326-9E84-2D51FFB2DF67> /Applications/Xcode.app/Contents/SharedFrameworks/HexFiend.framework/Versions/A/HexFiend
0x12876d000 - 0x1288a3fff com.apple.dt.dbg.DebuggerUI (9.0.1 - 13241) <3A9F0C33-496B-369F-A0AE-B400A9C31CBF> /Applications/Xcode.app/Contents/PlugIns/DebuggerUI.ideplugin/Contents/MacOS/DebuggerUI
0x128f8d000 - 0x128f8dfff com.apple.dt.IDEContinuousIntegration (1.0 - 1) <68213E78-5A81-3A6F-9550-D54786EA7D3A> /Applications/Xcode.app/Contents/PlugIns/IDEContinuousIntegration.ideplugin/Contents/MacOS/IDEContinuousIntegration
0x128f91000 - 0x12908dff7 com.apple.XCSCore (1.0 - 1) <876F1B2A-7EE0-3F49-A4DD-9606F9E1DA4F> /Applications/Xcode.app/Contents/SharedFrameworks/XCSCore.framework/Versions/A/XCSCore
0x129140000 - 0x1292f7ff7 com.apple.dt.XCSUI (1.0 - 1) <90B428C2-974D-38DF-AEAD-71E2C3C60A05> /Applications/Xcode.app/Contents/SharedFrameworks/XCSUI.framework/Versions/A/XCSUI
0x12945b000 - 0x1294f6fff com.apple.dt.XCSAdministration (1.0 - 1) <3AB529A8-4E73-3B15-A554-D0783CBF387E> /Applications/Xcode.app/Contents/SharedFrameworks/XCSAdministration.framework/Versions/A/XCSAdministration
0x12959c000 - 0x1295abff7 com.apple.dt.XCSSecurity (1.0 - 1) /Applications/Xcode.app/Contents/SharedFrameworks/XCSSecurity.framework/Versions/A/XCSSecurity
0x1295b6000 - 0x1295b9ff3 com.apple.IDEServerTools (1.0 - 1) <80EA414D-5685-3C4E-ACDF-EB19B1EED56D> /Applications/Xcode.app/Contents/SharedFrameworks/IDEServerTools.framework/Versions/A/IDEServerTools
0x1295bf000 - 0x1295f0fff +libswiftSwiftOnoneSupport.dylib (4.0 - 900.0.65.2) <9B4F94B0-6522-33C5-A5D5-8257691D373D> /Applications/Xcode.app/Contents/Frameworks/libswiftSwiftOnoneSupport.dylib
0x12963a000 - 0x1297aafff com.apple.protobuf.SwiftProtobuf (1.0 - 1) <333534AA-2DE0-33EE-9288-96A2492AE5A9> /Applications/Xcode.app/Contents/SharedFrameworks/XCSAdministration.framework/Versions/A/Frameworks/SwiftProtobuf.framework/Versions/A/SwiftProtobuf
0x129930000 - 0x129a15ff7 com.apple.dt.IDE.IDEModelEditor (9.0.1 - 13241) <1400A602-AE7F-36A0-873F-CBEBC73D7014> /Applications/Xcode.app/Contents/PlugIns/IDEModelEditor.ideplugin/Contents/MacOS/IDEModelEditor
0x129ab6000 - 0x129b46ff7 com.apple.dt.IDE.IDEModelFoundation (9.0.1 - 13241) <6CDF1AF3-075D-3990-85A2-77CD2752712E> /Applications/Xcode.app/Contents/PlugIns/IDEModelFoundation.ideplugin/Contents/MacOS/IDEModelFoundation
0x129bb3000 - 0x129cefff7 com.apple.IDESpriteKitParticleEditor (2.0 - 2) <05EA7509-F951-3E36-989E-164265133ED0> /Applications/Xcode.app/Contents/PlugIns/IDESpriteKitParticleEditor.ideplugin/Contents/MacOS/IDESpriteKitParticleEditor
0x129dca000 - 0x129dd1fff com.apple.dt.ScriptingDefinitionEditor (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/ScriptingDefinitionEditor.ideplugin/Contents/MacOS/ScriptingDefinitionEditor
0x12f966000 - 0x12f96ffff com.apple.gputools.GLToolsShaderProfilerMobileSupport (1.0 - 23018) <5BCEAD12-624B-3C98-9732-A51C8F588FA1> /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsShaderProfilerMobileSupport.gtplugin/Contents/MacOS/GLToolsShaderProfilerMobileSupport
0x12fa50000 - 0x12fa85ffb com.apple.gputools.GLToolsMobileAnalysis (1.0 - 23018) /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsMobileAnalysis.gtplugin/Contents/MacOS/GLToolsMobileAnalysis
0x12fa95000 - 0x12faaffff com.apple.security.csparser (3.0 - 58286.1.33) /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/csparser
0x12fac3000 - 0x12fc43fff com.apple.gputools.GLToolsAnalysisHeuristics (1.0 - 23105) <6FC93C6D-14BE-3A50-833F-24CE7B17D145> /Applications/Xcode.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/GPUTools/PlugIns/GLToolsAnalysisHeuristics.gtplugin/Contents/MacOS/GLToolsAnalysisHeuristics
0x1300a4000 - 0x1300aaff7 com.apple.dt.IDE.IDEInstrumentsService (9.0.1 - 13241) /Applications/Xcode.app/Contents/PlugIns/IDEInstrumentsService.ideplugin/Contents/MacOS/IDEInstrumentsService
0x1300c4000 - 0x1312c2ff3 com.apple.sourcekitd (1.0 - 900.0.65.2) <306E0BB2-4F54-319C-AFB3-26B6A7AB7B94> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/sourcekitd.framework/sourcekitd
0x131668000 - 0x133fa1ff3 +libclang.dylib (900.0.38) /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib
0x13a723000 - 0x13a72eff7 com.apple.dt.PlistEditor (9.0.1 - 13241) <18931F30-2BFD-3483-A7C3-1A7DC894D4CE> /Applications/Xcode.app/Contents/PlugIns/PlistEditor.ideplugin/Contents/MacOS/PlistEditor
0x13a73d000 - 0x13a753ff7 com.apple.dt.IDE.IDERTFEditor (9.0.1 - 13241) <6AED2F3E-7D61-3FD6-A833-A1C89BADAA06> /Applications/Xcode.app/Contents/PlugIns/IDERTFEditor.ideplugin/Contents/MacOS/IDERTFEditor
0x13ad7a000 - 0x13ad7aff7 com.apple.dt.DVTAnalyticsClientPlugin (1.0 - 1) <6834A4F6-9585-3037-A01E-5B34359AABE7> /Applications/Xcode.app/Contents/PlugIns/DVTAnalyticsClientPlugin.ideplugin/Contents/MacOS/DVTAnalyticsClientPlugin
0x13ad7e000 - 0x13ad7eff7 com.apple.dt.DVTServicesPlugIn (1.0 - 1) <7D1E97E7-EBC5-3FBD-BF4B-A61224920C8F> /Applications/Xcode.app/Contents/PlugIns/DVTServicesPlugIn.ideplugin/Contents/MacOS/DVTServicesPlugIn
0x7fff50457000 - 0x7fff507a4ff7 com.apple.RawCamera.bundle (8.00 - 1017) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x7fff51a40000 - 0x7fff51ac4ff7 com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.28.26 - 10.2.8) /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
0x7fff53c38000 - 0x7fff53e0dff3 com.apple.avfoundation (2.0 - 1334) <9080A91E-6634-3BC7-BFA3-ED58736B0B25> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x7fff53e0e000 - 0x7fff53ec5ff7 com.apple.audio.AVFAudio (1.0 - ???) <0AF373D0-B01B-31BC-85E0-FA09AEB79803> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
0x7fff53ec7000 - 0x7fff53fd4ffb com.apple.AVKit (1.1 - 440) <430F9128-5F0B-3954-845C-669979571E4D> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
0x7fff53fd5000 - 0x7fff53fd5fff com.apple.Accelerate (1.11 - Accelerate 1.11) <04FC5A30-0382-3FEB-BE8B-E14E9FF4EBD5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff53fd6000 - 0x7fff53fecfe3 libCGInterfaces.dylib (417) <27E09D39-51B5-3297-BE33-0DB1736B833A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff53fed000 - 0x7fff544ebfc3 com.apple.vImage (8.1 - ???) <310976EE-E12D-39D7-8F58-6EE924E08576> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff544ec000 - 0x7fff54646fcb libBLAS.dylib (1211) <10BFDBE2-C8FB-39E3-A204-BC6420663E57> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff54647000 - 0x7fff54674fef libBNNS.dylib (32) <9CA15DC6-004A-32FD-BFCA-F5D488012C43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
0x7fff54675000 - 0x7fff54a35ff7 libLAPACK.dylib (1211) <4560987F-B203-366F-B2CA-3291BCFB511A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff54a36000 - 0x7fff54a4bff7 libLinearAlgebra.dylib (1211) <3ECB936A-1D5A-3BEE-A9A2-248EF132CE3F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff54a4c000 - 0x7fff54a51ff3 libQuadrature.dylib (3) <3D6BF66A-55B2-3692-BAC7-DEB0C676ED29> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
0x7fff54a52000 - 0x7fff54ab0fff libSparse.dylib (79.1.1) <7AD0F8A8-FD36-36FE-B83D-58648EBD0027> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
0x7fff54ab1000 - 0x7fff54ac4fff libSparseBLAS.dylib (1211) <547C43FB-0243-340A-9B9B-AE8E5A5653BA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff54ac5000 - 0x7fff54c64fd7 libvDSP.dylib (622) <8513CE23-5854-31B3-9CDE-25AE9978409B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff54c65000 - 0x7fff54d15feb libvMisc.dylib (622) <40CF36D9-8EDE-332B-BB4E-CD9D7BCBEEF5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff54d16000 - 0x7fff54d16fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <97572EBF-43F0-314F-AB29-4281E4A3CD41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff54d17000 - 0x7fff54d6efff com.apple.Accounts (113 - 113) /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
0x7fff54d6f000 - 0x7fff54fffffb com.apple.AddressBook.framework (11.0 - 1805) <7607CB01-DB67-3604-8F38-0BA0623A44A7> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x7fff55000000 - 0x7fff55e5bff3 com.apple.AppKit (6.9 - 1561.0.100) <791A7190-E21D-3513-9BB0-F2721814A9CD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff55e9c000 - 0x7fff55eacfff com.apple.AppleScriptObjC (1.4 - 33) <6A9166A3-B93F-3201-9B77-ED53C0119EF0> /System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/AppleScriptObjC
0x7fff55ead000 - 0x7fff55eadfff com.apple.ApplicationServices (48 - 50) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff55eae000 - 0x7fff55f14fff com.apple.ApplicationServices.ATS (377 - 445) <2303339C-5E2A-37DB-B2B0-E4E5DA9121E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff55fad000 - 0x7fff560cfff7 libFontParser.dylib (222.1) <611B6E36-289C-33C9-BF77-B9D13F481F33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff560d0000 - 0x7fff5611aff7 libFontRegistry.dylib (221) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff561bf000 - 0x7fff561f2ff7 libTrueTypeScaler.dylib (222.1) <60C263D2-7388-3640-A243-F819798C1B0B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff5625c000 - 0x7fff56260ff3 com.apple.ColorSyncLegacy (4.13.0 - 1) <7C8AD42D-5A89-3BA6-B55D-374D9267E939> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
0x7fff56300000 - 0x7fff56352ff7 com.apple.HIServices (1.22 - 622) <2E83CD6F-ED98-3C29-BD0A-8525E38AB5DB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff56353000 - 0x7fff56361fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <71A9C815-AC55-3E36-A618-F6778F5119AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff56362000 - 0x7fff563aefff com.apple.print.framework.PrintCore (13 - 503) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff563af000 - 0x7fff563e9fff com.apple.QD (3.12 - 403) <38D8106A-4FFA-3FE9-9999-714CADD7EE9C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff563ea000 - 0x7fff563f6fff com.apple.speech.synthesis.framework (7.0.14 - 7.0.14) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff563f7000 - 0x7fff56680fff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff56682000 - 0x7fff56682fff com.apple.audio.units.AudioUnit (1.14 - 1.14) <29B5E5A8-51D1-3528-866E-C4D3B78F80A0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff567c3000 - 0x7fff56997ff7 com.apple.AutomatorFramework (2.8 - 444.1) /System/Library/Frameworks/Automator.framework/Versions/A/Automator
0x7fff56998000 - 0x7fff56cfbfff com.apple.CFNetwork (887 - 887) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff56d10000 - 0x7fff56d10fff com.apple.Carbon (158 - 158) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff56d11000 - 0x7fff56d14ffb com.apple.CommonPanels (1.2.6 - 98) <39C8EBA3-EEB2-335B-8A88-D6C64BAA112F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff56d15000 - 0x7fff57019ff7 com.apple.HIToolbox (2.1.1 - 909.1) <39EA833C-2FAD-33B9-BB99-7BDCBCE4B08A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff5701a000 - 0x7fff5701dffb com.apple.help (1.3.8 - 64) <18D02016-119A-33E8-AEB0-E9466BA4AD56> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff5701e000 - 0x7fff57023fff com.apple.ImageCapture (9.0 - 9.0) <2DE590E5-DF0E-3962-A2BE-06EBC79B3D72> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff57024000 - 0x7fff570b9ffb com.apple.ink.framework (10.9 - 220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff570ba000 - 0x7fff570d4ff7 com.apple.openscripting (1.7 - 174) <1CF64DD1-144D-3702-A728-1F476E1A00ED> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff570f5000 - 0x7fff570f6fff com.apple.print.framework.Print (12 - 267) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff570f7000 - 0x7fff570f9ff7 com.apple.securityhi (9.0 - 55006) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff570fa000 - 0x7fff57100fff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <1F10ED1F-12C7-39AC-88A0-43A1338F9316> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff57101000 - 0x7fff5720bff3 com.apple.cloudkit.CloudKit (720 - 720) <924E4AD3-C1AE-3527-8BA6-0E6D0441C709> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
0x7fff5720c000 - 0x7fff5720cfff com.apple.Cocoa (6.11 - 22) <3614E923-D790-370A-95EC-42124C76796E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff5720d000 - 0x7fff57219ffb com.apple.Collaboration (80 - 80) <56BF890A-E55E-3AA9-8A75-9C55DFA41955> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
0x7fff5721a000 - 0x7fff572d3ff7 com.apple.ColorSync (4.13.0 - 544) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff572d4000 - 0x7fff573bdff3 com.apple.contacts (1.0 - 2326) /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts
0x7fff5745e000 - 0x7fff574f1ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <505A5EFB-6BCD-3E94-936F-1722C67F608E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff57558000 - 0x7fff57581ffb com.apple.CoreBluetooth (1.0 - 1) <942F88A5-AD68-3359-90D5-6F1A3311C51A> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff57582000 - 0x7fff578d3feb com.apple.CoreData (120 - 847.1) <9B5E7B0B-1957-3D56-99CA-6422123D300C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff578d4000 - 0x7fff5799ffff com.apple.CoreDisplay (1.0 - 79.7) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
0x7fff579a0000 - 0x7fff57e3ffff com.apple.CoreFoundation (6.9 - 1443.13) <2881430B-73E5-32C1-B62D-7CEB68A616F5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff57e41000 - 0x7fff5844dfef com.apple.CoreGraphics (2.0 - 1125.1.1) <425F5F16-3EAF-3B74-BC6B-A0A5FCE6AFF1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff5844f000 - 0x7fff58744ff7 com.apple.CoreImage (13.0.0 - 573) <7949E071-A3C0-30BB-B21D-79992CBE82DA> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff58745000 - 0x7fff587afff7 com.apple.corelocation (2235) <55BF032C-B28E-383F-B2A6-E0FE9457F891> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
0x7fff587f8000 - 0x7fff589b2ff7 com.apple.CoreML (1.0 - 1) /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
0x7fff589b3000 - 0x7fff58a8effb com.apple.CoreMedia (1.0 - 2074.3) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff58a8f000 - 0x7fff58addfff com.apple.CoreMediaIO (803.0 - 4976) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x7fff58ade000 - 0x7fff58adefff com.apple.CoreServices (822.9 - 822.9) <0FF1E8AB-F09A-363F-8839-10D5BBE8F2F4> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff58adf000 - 0x7fff58b53ff7 com.apple.AE (733 - 733) <09481487-37C2-359E-9E9A-7393B7C8643B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff58b54000 - 0x7fff58e2bff7 com.apple.CoreServices.CarbonCore (1178.2 - 1178.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff58e2c000 - 0x7fff58e60ff7 com.apple.DictionaryServices (1.2 - 284) <3FCEE280-8DD0-37C9-BFD4-7BA87AAFC8EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff58e61000 - 0x7fff58e69ff3 com.apple.CoreServices.FSEvents (1239 - 1239) <7BBC5CB7-DBC8-316B-99B0-781827159A2F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff58e6a000 - 0x7fff59021fff com.apple.LaunchServices (822.9 - 822.9) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff59022000 - 0x7fff590d1ff3 com.apple.Metadata (10.7.0 - 1191) <32C57F7B-DAC3-3F12-8DEA-1CB5A062DC02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff590d2000 - 0x7fff5912fff7 com.apple.CoreServices.OSServices (822.9 - 822.9) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff59130000 - 0x7fff5919efff com.apple.SearchKit (1.4.0 - 1.4.0) <14053F88-2C76-35CA-9FC1-2A9BC0B63F88> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff5919f000 - 0x7fff591c3ffb com.apple.coreservices.SharedFileList (71.2 - 71.2) <41713411-2729-39F9-951A-DE39A00495F0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff591c4000 - 0x7fff5921fff7 com.apple.CoreSpotlight (1.0 - 229) <83BB5E52-4F0B-3E1F-B105-45191C05F7C9> /System/Library/Frameworks/CoreSpotlight.framework/Versions/A/CoreSpotlight
0x7fff5945d000 - 0x7fff595aafff com.apple.CoreText (352.0 - 578.3) <8A8D96F6-1FBE-320F-A60B-37F63FE20D89> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff595ab000 - 0x7fff595e5fff com.apple.CoreVideo (1.8 - 278.0) <9C66B618-8582-3731-A0F1-36FDD730FB07> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff595e6000 - 0x7fff59670ffb com.apple.framework.CoreWLAN (13.0 - 1335) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff597fd000 - 0x7fff59808ff7 com.apple.DirectoryService.Framework (10.13 - 207) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff59809000 - 0x7fff598c3fff com.apple.DiscRecording (9.0.3 - 9030.4.5) <2094BAC4-4F37-3741-B9BD-60158A63C503> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff598c4000 - 0x7fff598e9fff com.apple.DiscRecordingUI (9.0.3 - 9030.4.5) <9D271340-4DFC-3294-8BFC-6C6FD5086E44> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
0x7fff598ea000 - 0x7fff598effff com.apple.DiskArbitration (2.7 - 2.7) <44836CE9-A9ED-3017-972A-7A0A3D6B472B> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff59ab0000 - 0x7fff59e73fff com.apple.Foundation (6.9 - 1443.14) <360EB3B4-CD31-380E-8E77-4954559F97F8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff59e75000 - 0x7fff59e9efff com.apple.GLKit (1.0 - 90) <77FB36BA-63E3-3AAA-B3D4-5703A8FA3CE0> /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit
0x7fff59ee3000 - 0x7fff59f13ff7 com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff59f2e000 - 0x7fff59fecfff com.apple.GameplayKit (1.0 - 1) /System/Library/Frameworks/GameplayKit.framework/Versions/A/GameplayKit
0x7fff5a024000 - 0x7fff5a127ffb com.apple.Bluetooth (6.0.0 - 6.0.0f7) <6C809D0F-049E-3CDB-AB86-54BD3809D79C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff5a187000 - 0x7fff5a222fff com.apple.framework.IOKit (2.0.2 - 1445.1.3) <06331786-CF08-3225-B27B-80754BA0ECB6> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff5a224000 - 0x7fff5a22affb com.apple.IOSurface (209 - 209) <507843CC-3C5D-3548-B86D-4564123F3993> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff5a22b000 - 0x7fff5a27eff7 com.apple.ImageCaptureCore (7.0 - 7.0) <08AD8B51-AF58-348A-9988-61AABDF987D6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x7fff5a27f000 - 0x7fff5a3f1fff com.apple.ImageIO.framework (3.3.0 - 1694) <836F3C70-F8C1-3736-823F-B3A04C0083B0> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff5a3f2000 - 0x7fff5a3f6ffb libGIF.dylib (1694) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff5a3f7000 - 0x7fff5a4defff libJP2.dylib (1694) <5C071A03-A7F6-33D6-98B7-EACD0D28F72E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff5a4df000 - 0x7fff5a502ff7 libJPEG.dylib (1694) <3CB66E19-AD25-3C50-A0A8-48B6C6A1187E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff5a7de000 - 0x7fff5a804feb libPng.dylib (1694) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff5a805000 - 0x7fff5a807ffb libRadiance.dylib (1694) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff5a808000 - 0x7fff5a855fff libTIFF.dylib (1694) <99AA8DE9-04F1-3FBB-995F-6CD2F56AC295> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff5aa0f000 - 0x7fff5b574fff com.apple.JavaScriptCore (13604 - 13604.1.38.1.6) <5C66D28E-F1EE-3A31-A298-3F77DC292126> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff5b58c000 - 0x7fff5b5a5ff7 com.apple.Kerberos (3.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff5b5a6000 - 0x7fff5b5dbfff com.apple.LDAPFramework (2.4.28 - 194.5) <8419BDB5-12DF-3BC9-871D-7A270E080249> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff5b653000 - 0x7fff5b855ff7 com.apple.MapKit (1.0 - 1817.20.7.28.10) <32E20A6C-5432-382B-AB60-2D547531CCEF> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
0x7fff5b857000 - 0x7fff5b85efff com.apple.MediaAccessibility (1.0 - 114) /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
0x7fff5b874000 - 0x7fff5b8e9fff com.apple.MediaPlayer (1.0 - 1.0) <87D9385E-36F1-3D04-8B71-F9D35284681E> /System/Library/Frameworks/MediaPlayer.framework/Versions/A/MediaPlayer
0x7fff5b8ea000 - 0x7fff5bee6ff7 com.apple.MediaToolbox (1.0 - 2074.3) <1D00A19E-D592-3CC0-A6CC-16E540950070> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff5bee8000 - 0x7fff5bf67ff7 com.apple.Metal (123.3.5 - 123.3.5) /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff5bf69000 - 0x7fff5bf81ff7 com.apple.MetalKit (1.0 - 92.1) /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
0x7fff5bf82000 - 0x7fff5bf97fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
0x7fff5bf98000 - 0x7fff5c002fef com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <50B454D2-5D46-394E-B089-AC3242FEA9A2> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
0x7fff5c003000 - 0x7fff5c022fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <0D5F11B0-476D-34EB-8CD0-491BEDA5E4F2> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
0x7fff5c023000 - 0x7fff5c099ff7 com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
0x7fff5c09a000 - 0x7fff5c09aff7 com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <02E0B95E-1F7C-317A-AF09-149E01D2D641> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
0x7fff5c09b000 - 0x7fff5d055ff7 com.apple.ModelIO (1.0 - 1) /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO
0x7fff5d0a5000 - 0x7fff5d0b1ffb com.apple.NetFS (6.0 - 4.0) <81B22AE7-7094-30F2-BF41-84CA05EDB95B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff5d268000 - 0x7fff5d2a3ff3 com.apple.OSAKit (1.5 - 106) <905C96F3-163F-3199-AA98-0F392815CADE> /System/Library/Frameworks/OSAKit.framework/Versions/A/OSAKit
0x7fff5d2a4000 - 0x7fff5d2c9fff com.apple.audio.OpenAL (1.8 - 1.8) /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x7fff5ff08000 - 0x7fff5ff10fef libcldcpuengine.dylib (2.8.7) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff5ff11000 - 0x7fff5ff5effb com.apple.opencl (2.8.11 - 2.8.11) <8A7F27CA-DD5A-38F0-BE6F-01ECCB05C5A3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff5ff5f000 - 0x7fff5ff7bffb com.apple.CFOpenDirectory (10.13 - 207) <582A03AA-A51C-3DAE-AC03-FA1CEE0C5896> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff5ff7c000 - 0x7fff5ff87fff com.apple.OpenDirectory (10.13 - 207) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff61106000 - 0x7fff61108fff libCVMSPluginSupport.dylib (16.0.3) <5F651C63-E9B9-3794-B541-71B4B6157DD7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff61109000 - 0x7fff6110cff7 libCoreFSCache.dylib (160.9) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff6110d000 - 0x7fff61111fff libCoreVMClient.dylib (160.9) <390D5A60-55BB-3D7B-928B-52BFCA05FD07> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff61112000 - 0x7fff6111afff libGFXShared.dylib (16.0.3) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff6111b000 - 0x7fff61126fff libGL.dylib (16.0.3) <6EB2A446-73D8-30B6-97DA-31CB1C42BA27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff61127000 - 0x7fff61162fe7 libGLImage.dylib (16.0.3) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff61163000 - 0x7fff612cffff libGLProgrammability.dylib (16.0.3) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff612d0000 - 0x7fff6130effb libGLU.dylib (16.0.3) <4F964A5D-BC47-368B-88F7-76DA28C2D8AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff61c86000 - 0x7fff61c94ffb com.apple.opengl (16.0.3 - 16.0.3) <8B17A8DE-89F5-3E2E-897E-315003386475> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff61c95000 - 0x7fff61e2cffb GLEngine (16.0.3) <331925D2-4E17-3BA4-8577-C215CE658ACA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
0x7fff61e2d000 - 0x7fff61e55ffb GLRendererFloat (16.0.3) <858E25C4-4B7B-317E-897A-C3B66A47BD80> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/GLRendererFloat
0x7fff61f1c000 - 0x7fff6200bff7 org.python.python (2.7.10 - 2.7.10) <39FEB629-B128-3B8A-86A5-7F59299E377A> /System/Library/Frameworks/Python.framework/Versions/2.7/Python
0x7fff6200c000 - 0x7fff62158fff com.apple.QTKit (7.7.3 - 3014) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff62159000 - 0x7fff623befff com.apple.imageKit (3.0 - 1038) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x7fff623bf000 - 0x7fff624b7fff com.apple.PDFKit (1.0 - 662.1.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x7fff624b8000 - 0x7fff629caff7 com.apple.QuartzComposer (5.1 - 364) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x7fff629cb000 - 0x7fff629eefff com.apple.quartzfilters (1.10.0 - 1.10.0) <8CBE10F3-828F-373C-B92A-A5289CBCF77A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x7fff629ef000 - 0x7fff62ae6fff com.apple.QuickLookUIFramework (5.0 - 743.3) <464A71CB-B356-3E9F-91A7-4179095E6F64> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x7fff62ae7000 - 0x7fff62ae7fff com.apple.quartzframework (1.5 - 21) <3F3BE91F-A032-3E92-ACEA-E2DFEC999E93> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x7fff62ae8000 - 0x7fff62d2cfff com.apple.QuartzCore (1.11 - 574.1.4) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff62d2d000 - 0x7fff62d84fff com.apple.QuickLookFramework (5.0 - 743.3) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x7fff62f49000 - 0x7fff62f5ffff com.apple.SafariServices.framework (13604 - 13604.1.38.1.6) <2CCE692D-BB88-30BF-B819-13E7D34F178B> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
0x7fff62f60000 - 0x7fff63526ff7 com.apple.SceneKit (1.0 - 430.1) /System/Library/Frameworks/SceneKit.framework/Versions/A/SceneKit
0x7fff63549000 - 0x7fff63560fff com.apple.ScriptingBridge (1.3.3 - 70) <44B47809-18BF-3522-B6A0-7C14AA4BE979> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
0x7fff63561000 - 0x7fff6387bfff com.apple.security (7.0 - 58286.1.33) <210FF9A7-CD6E-3FFB-9935-45A3FEEB89A1> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff6387c000 - 0x7fff63905ff7 com.apple.securityfoundation (6.0 - 55185.1.1) <917915A4-7A79-3C42-9695-CFD0D9830778> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff63906000 - 0x7fff63933fff com.apple.securityinterface (10.0 - 55109.1.1) <5BAAC4F5-9909-3D93-AAC8-EDF9A65ADB63> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x7fff63934000 - 0x7fff63937ffb com.apple.xpc.ServiceManagement (1.0 - 1) <3763B3EF-0573-36A6-9647-8EBB139B9CAC> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff63983000 - 0x7fff63b97ff7 com.apple.SpriteKit (1.0 - 1) /System/Library/Frameworks/SpriteKit.framework/Versions/A/SpriteKit
0x7fff63cdb000 - 0x7fff63d4bffb com.apple.SystemConfiguration (1.17 - 1.17) <77EB81C7-7017-3777-BCB7-8DD078ABE25D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff63f00000 - 0x7fff64278fff com.apple.VideoToolbox (1.0 - 2074.3) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff6451a000 - 0x7fff64a33ff3 libwebrtc.dylib (7604.1.38.1.6) <90B931F0-49B0-39C4-A46D-98CDC8FD19C7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
0x7fff64a34000 - 0x7fff65ec2fff com.apple.WebCore (13604 - 13604.1.38.1.6) <5C6E88AC-7182-344B-85B9-CC24931ECCBB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff65ec3000 - 0x7fff660b4fff com.apple.WebKitLegacy (13604 - 13604.1.38.1.6) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
0x7fff660b5000 - 0x7fff664a4fff com.apple.WebKit (13604 - 13604.1.38.1.6) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff6690f000 - 0x7fff66999fef com.apple.APFS (1.0 - 1) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
0x7fff6752e000 - 0x7fff67549ff3 com.apple.AppContainer (4.0 - 360.1.2) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
0x7fff6757a000 - 0x7fff675a2fff com.apple.framework.Apple80211 (13.0 - 1335) <0E4FD4E0-D582-3983-A6C8-18D1EA27FBC7> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff675a4000 - 0x7fff675b3fef com.apple.AppleFSCompression (96.1.1 - 1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x7fff676a8000 - 0x7fff676b3ff7 com.apple.AppleIDAuthSupport (1.0 - 1) <6BEAA0D3-4B1B-3B59-B55D-7231BFBAD179> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
0x7fff676ed000 - 0x7fff67735fff com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff67736000 - 0x7fff67747ffb com.apple.AppleLDAP (10.13 - 46) /System/Library/PrivateFrameworks/AppleLDAP.framework/Versions/A/AppleLDAP
0x7fff67748000 - 0x7fff67766ff7 com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
0x7fff67767000 - 0x7fff6776fff3 com.apple.AppleSRP (5.0 - 1) <4CEC34CF-63E3-3023-B61B-F8D133698534> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff67770000 - 0x7fff67798fff com.apple.applesauce (1.0 - ???) <32FF4851-2F68-35BA-835F-91856A20C323> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
0x7fff67861000 - 0x7fff67864ff3 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x7fff67865000 - 0x7fff678b5ff7 com.apple.AppleVAFramework (5.0.39 - 5.0.39) <754413E6-FFD1-3CE4-9932-2977AD675319> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff67b97000 - 0x7fff67e2cfff com.apple.AuthKit (1.0 - 1) <9678CD51-C12B-3EE2-BBDD-32205D2CBC64> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
0x7fff67e2d000 - 0x7fff67e8eff7 com.apple.AuthKitUI (1.0 - 1) /System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI
0x7fff67f57000 - 0x7fff67f5eff7 com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <7F54A7A8-3667-3071-9DE6-2D915C63F70C> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
0x7fff67f5f000 - 0x7fff67fe6ff7 com.apple.backup.framework (1.9 - 1.9) <3C2E6CB6-3A16-309D-B1E2-ED3930CEE91E> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff67fef000 - 0x7fff67ff5ff3 com.apple.BezelServicesFW (291 - 291) <8754A6CC-61A1-308D-BBB3-612A0CA15B57> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
0x7fff6805a000 - 0x7fff68096fff com.apple.bom (14.0 - 194.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x7fff682a0000 - 0x7fff682c1ff7 com.apple.CacheDelete (1.0 - 1) <30409806-24C7-3203-8CBC-EB36D5BF3A9E> /System/Library/PrivateFrameworks/CacheDelete.framework/Versions/A/CacheDelete
0x7fff6868c000 - 0x7fff686b9fff com.apple.CalendarAgentLink (8.0 - 250) <37D477DA-9DC9-340F-927E-D16CB4EC72D8> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
0x7fff68d7e000 - 0x7fff68dcdff3 com.apple.ChunkingLibrary (186 - 186) <1009BA1B-B479-36B1-9A07-752DD204BBA6> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff68dd4000 - 0x7fff68e63fff com.apple.CloudDocs (1.0 - 559) <7E2A74CA-EA11-316D-8FD1-2FD8D31E91AF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
0x7fff69930000 - 0x7fff6993bffb com.apple.CommerceCore (1.0 - 652) <48E017D3-2D6C-372C-824D-5120F682195F> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff6993c000 - 0x7fff69945ffb com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff6995a000 - 0x7fff6996eff7 com.apple.commonutilities (8.0 - 900) <9285EF18-980C-3CF0-856E-C5D3A5276F7D> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
0x7fff69977000 - 0x7fff699e3fff com.apple.framework.ConfigurationProfiles (10.0 - 1042) /System/Library/PrivateFrameworks/ConfigurationProfiles.framework/Versions/A/ConfigurationProfiles
0x7fff69af0000 - 0x7fff69b50ffb com.apple.AddressBook.ContactsFoundation (8.0 - ???) <9B05C7D3-BB29-356C-935F-8D2C435B4F36> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
0x7fff69b51000 - 0x7fff69b73fff com.apple.contacts.ContactsPersistence (1.0 - 2326) /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
0x7fff69bd3000 - 0x7fff69fb3fff com.apple.CoreAUC (249.0.0 - 249.0.0) <7F406271-A215-3C75-BDAA-B9611BA2822E> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x7fff69fb4000 - 0x7fff69fe4ff7 com.apple.CoreAVCHD (5.9.0 - 5900.4.1) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
0x7fff6a1dc000 - 0x7fff6a1e5ff7 com.apple.frameworks.CoreDaemon (1.3 - 1.3) <0A87A91C-A2CF-3BB1-9038-7F610111BC30> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff6a349000 - 0x7fff6a359ff7 com.apple.CoreEmoji (1.0 - 69) <3945FA6E-D060-3F9F-B392-4228E6630F67> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
0x7fff6ac14000 - 0x7fff6ac2aff7 com.apple.CoreMediaAuthoring (2.2 - 956) /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x7fff6ad6c000 - 0x7fff6adc8fff com.apple.CoreNLP (1.0 - 129) <4D51E55E-2D8D-3C35-B2D1-FCBCCF2B77E5> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
0x7fff6af51000 - 0x7fff6af56ff7 com.apple.CoreOptimization (1.0 - 1) <785B622B-8F7D-3B4D-83AF-EB98CB79FFF6> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
0x7fff6af57000 - 0x7fff6aff3ff7 com.apple.CorePDF (4.0 - 414) <259556DC-97EB-335D-90F0-D0E42FB4AA95> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x7fff6b08b000 - 0x7fff6b093ff7 com.apple.CorePhoneNumbers (1.0 - 1) <88C31D1D-6611-345F-BF8B-635EC10DB2E5> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
0x7fff6b094000 - 0x7fff6b0f0fff com.apple.CorePrediction (1.0 - 1) /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
0x7fff6b21c000 - 0x7fff6b24dff3 com.apple.CoreServicesInternal (309 - 309) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff6b572000 - 0x7fff6b603fff com.apple.CoreSymbolication (63075) <22359913-3FAE-3FE3-9F88-F3521169FB4E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff6b604000 - 0x7fff6b67dff3 com.apple.CoreThemeDefinition (2.0 - 337) <6112FDB2-EE3C-3824-B640-A7BA87805DDB> /System/Library/PrivateFrameworks/CoreThemeDefinition.framework/Versions/A/CoreThemeDefinition
0x7fff6b686000 - 0x7fff6b7bafd7 com.apple.coreui (2.1 - 489) <8DAE0B7F-186E-333F-8B8E-941DB03BF2FC> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff6b7bb000 - 0x7fff6b8b4ffb com.apple.CoreUtils (5.2 - 520.68) <7F80020B-0208-38A7-B333-EC1463FF1AA4> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
0x7fff6b909000 - 0x7fff6b96dfff com.apple.framework.CoreWiFi (13.0 - 1335) /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff6b96e000 - 0x7fff6b97dff7 com.apple.CrashReporterSupport (10.13 - 1) <842680F4-0BFB-386A-A32D-E9ED39DCE790> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff6b9fa000 - 0x7fff6ba09ff7 com.apple.framework.DFRFoundation (1.0 - 189.1) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
0x7fff6ba0c000 - 0x7fff6ba10ffb com.apple.DSExternalDisplay (3.1 - 380) /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
0x7fff6ba55000 - 0x7fff6ba96ff3 com.apple.datadetectors (5.0 - 375) <89B1F001-E7A2-347F-BCE1-2B7957A1D3D2> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
0x7fff6ba97000 - 0x7fff6bb0dff7 com.apple.datadetectorscore (7.0 - 590) <48B788AF-7927-341E-94EE-119561245659> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff6bb5b000 - 0x7fff6bb9bff7 com.apple.DebugSymbols (141 - 141) <99562E28-0E56-3F6F-93A1-EF997A5E1F87> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff6bb9c000 - 0x7fff6bcc6ff7 com.apple.desktopservices (1.12 - 1.12) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff6bcc7000 - 0x7fff6bcdbffb com.apple.DeviceLinkX (5.0 - 264) <4A53E58A-FE9A-38F9-8351-86A217742703> /System/Library/PrivateFrameworks/DeviceLink.framework/Versions/A/DeviceLink
0x7fff6bd23000 - 0x7fff6bd24ff7 com.apple.diagnosticlogcollection (10.0 - 1000) /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
0x7fff6bdb6000 - 0x7fff6be88ff7 com.apple.DiskImagesFramework (480.1.2 - 480.1.2) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff6be89000 - 0x7fff6beffffb com.apple.DiskManagement (11.0 - 1313) /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
0x7fff6bf00000 - 0x7fff6bf0bff7 com.apple.DisplayServicesFW (3.1 - 380) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x7fff6bf5c000 - 0x7fff6bf91ff7 com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
0x7fff6bf92000 - 0x7fff6bf94ff7 com.apple.EFILogin (2.0 - 2) /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff6c6d6000 - 0x7fff6c6eefff com.apple.Engram (1.0 - 1) <5533EDB6-3395-305B-A17C-2A22214BE564> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
0x7fff6c6ef000 - 0x7fff6c8b2ff7 com.apple.vision.EspressoFramework (1.0 - 59) <6336F3ED-FFA6-3BD1-A3A6-77E76F4D0EF6> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
0x7fff6ca19000 - 0x7fff6ce47fff com.apple.vision.FaceCore (3.3.2 - 3.3.2) <80C97AD7-D5C2-311A-B268-4AA60CAD6CED> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff6ce51000 - 0x7fff6ce6eff3 com.apple.framework.familycontrols (4.1 - 410) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff6ce75000 - 0x7fff6cefbffb com.apple.FileProvider (111.1 - 111.1) <57DC140C-1F60-3351-BA67-6A0C07B4CF58> /System/Library/PrivateFrameworks/FileProvider.framework/Versions/A/FileProvider
0x7fff6eaa3000 - 0x7fff6eaa3fff libmetal_timestamp.dylib (802.1.35) <73D8B306-6321-30DB-8522-819344E19AF8> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3802/Libraries/libmetal_timestamp.dylib
0x7fff70103000 - 0x7fff7010eff7 libGPUSupportMercury.dylib (16.0.3) <7C3F6819-4E0A-34A1-A11B-059C51BE0699> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
0x7fff704ab000 - 0x7fff704d0ff3 com.apple.GenerationalStorage (2.0 - 281) <8BAB613F-84AA-3001-8D14-F1E1BBB7FBF5> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff704e8000 - 0x7fff70e04fff com.apple.GeoServices (1.0 - 1350.20.7.28.8) <33C0449B-72CC-3B47-93F2-4C5F5B54CEE1> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
0x7fff70e47000 - 0x7fff70e56fff com.apple.GraphVisualizer (1.0 - 5) <0A93C5DE-0D28-312E-8764-6B0FB805ED91> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
0x7fff70ece000 - 0x7fff70f42fff com.apple.Heimdal (4.0 - 2.0) <600A9BD5-3DD2-3F7C-B40E-8485026FE936> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff70fae000 - 0x7fff70fd8ffb com.apple.IASUtilities (1.0 - 442) <0F4D6EDC-8AD1-35AD-8A24-1667291BE974> /System/Library/PrivateFrameworks/IASUtilities.framework/Versions/A/IASUtilities
0x7fff70fdb000 - 0x7fff710edff3 com.apple.ids (10.0 - 1000) /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
0x7fff710ee000 - 0x7fff711cafff com.apple.idsfoundation (10.0 - 1000) <833CA186-0312-33A0-93A3-A7C0839EFBC0> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
0x7fff716cd000 - 0x7fff71732fff com.apple.imfoundation (10.0 - 1000) <18D21CE9-961E-3DA4-A6E2-C814CB15036D> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
0x7fff717e2000 - 0x7fff717e9ffb com.apple.IOAccelerator (373 - 373) <22F55498-DF4D-3262-B527-0277E8C6BAA5> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff717ec000 - 0x7fff717ecfff com.apple.IOPlatformPluginFamily (1.0 - 1) <91904B0A-CBE2-3E63-854B-4A079418E59A> /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/IOPlatformPluginFamily
0x7fff717ed000 - 0x7fff71803ff7 com.apple.IOPresentment (1.0 - 32.1) <8F468709-520F-360D-AD51-0E13298B8DC0> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
0x7fff71bc2000 - 0x7fff71be7ffb com.apple.IconServices (97.3 - 97.3) <9FB00A91-C46B-3CF1-973A-FDDABCEA088D> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff71cee000 - 0x7fff71cf1ff3 com.apple.InternationalSupport (1.0 - 1) <0EA71B0F-1B0D-3072-8945-1FD9041A80BD> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
0x7fff71d5f000 - 0x7fff71d6fffb com.apple.IntlPreferences (2.0 - 227) <500CB7B9-7BDF-39E6-B355-28E100B28793> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
0x7fff71deb000 - 0x7fff71e09ff7 com.apple.Jet (1.0 - 1) <6A8B703D-F226-3988-967C-59D4E6A1B176> /System/Library/PrivateFrameworks/Jet.framework/Versions/A/Jet
0x7fff71e64000 - 0x7fff71e77ff3 com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
0x7fff71e78000 - 0x7fff71f6dff7 com.apple.LanguageModeling (1.0 - 159) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff71f6e000 - 0x7fff71fb0ff7 com.apple.Lexicon-framework (1.0 - 33) /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
0x7fff71fb4000 - 0x7fff71fbbff7 com.apple.LinguisticData (1.0 - 238) <3DB10488-85F6-3A70-87CF-A2D1B1ABC016> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
0x7fff72054000 - 0x7fff7209fff7 com.apple.LoggingSupport (1.0 - 829.1.2) <83B2EA32-5570-34DD-93C8-A1D8E4A3B893> /System/Library/PrivateFrameworks/LoggingSupport.framework/Versions/A/LoggingSupport
0x7fff720a0000 - 0x7fff720a5fff com.apple.LoginUICore (4.0 - 4.0) <988D8DE7-1803-3C9C-AADB-FE65B289A38E> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
0x7fff720f1000 - 0x7fff7210eff3 com.apple.LookupFramework (1.2 - 237) /System/Library/PrivateFrameworks/Lookup.framework/Versions/A/Lookup
0x7fff727c9000 - 0x7fff727ccfff com.apple.Mangrove (1.0 - 1) <562BB18E-815A-37D1-A373-B46C7853BA94> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
0x7fff72854000 - 0x7fff72856ff7 com.apple.marco (10.0 - 1000) <88A5D4DB-0A6F-33AA-991E-ED29504040E8> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
0x7fff728e4000 - 0x7fff72917ff7 com.apple.MediaKit (16 - 864) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff72918000 - 0x7fff72b01ffb com.apple.MediaRemote (1.0 - 1) <2B54EE28-B76F-36C9-A942-2A6007371F3C> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
0x7fff72b02000 - 0x7fff72b20ff7 com.apple.MediaServices (1.0 - 1) <8230107C-7B33-30EC-878A-79E76104AECC> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
0x7fff72b94000 - 0x7fff72bfbff7 com.apple.gpusw.MetalTools (1.0 - 1) <32E08129-AC43-315C-8A14-3CD7BE507850> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
0x7fff72c03000 - 0x7fff72c17ff3 com.apple.MobileAssets (1.0 - 437.1.11) /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
0x7fff72c1b000 - 0x7fff72d6cff7 com.apple.mobiledevice (988.1.4.100.2 - 988.1.4.100.2) <1ABF2065-C333-3A7C-B8A2-29A14A7B25D2> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
0x7fff72d6d000 - 0x7fff72d84ffb com.apple.MobileKeyBag (2.0 - 1.0) <7405128E-E7B0-3EFB-BA65-EA50564E3BCD> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
0x7fff72d95000 - 0x7fff72e0fff7 com.apple.Montreal (1.0 - 42) <5C51CDA1-05F5-3215-A0A8-2883A1A659B8> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
0x7fff72e10000 - 0x7fff72e38ff7 com.apple.MultitouchSupport.framework (1004.1 - 1004.1) <69BF94F5-9301-3755-98A1-A981DB03C395> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff72e39000 - 0x7fff72e41ffb com.apple.multiverse (1.0 - 27) <0AF7A4FF-5337-39B8-B507-2ABC7A080235> /System/Library/PrivateFrameworks/MultiverseSupport.framework/Versions/A/MultiverseSupport
0x7fff72f46000 - 0x7fff73037fff com.apple.Navigation (1.0 - 1) <5ED1EF68-9259-3797-9A72-A23FB5215F9B> /System/Library/PrivateFrameworks/Navigation.framework/Versions/A/Navigation
0x7fff7309c000 - 0x7fff730a7fff com.apple.NetAuth (6.2 - 6.2) <5C6F492A-28EF-3A0E-B573-6F3D60CFF0C7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff730b4000 - 0x7fff73181ff7 com.apple.Network (1.0 - 1) <35C610C2-A2CB-3894-828B-819C16F55372> /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network
0x7fff73254000 - 0x7fff73270ff3 com.apple.network.statistics.framework (1.2 - 1) <47C57F20-B553-306D-804F-6006E98362A1> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/NetworkStatistics
0x7fff74295000 - 0x7fff743affeb com.apple.PackageKit (3.0 - 725) /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
0x7fff7485f000 - 0x7fff7489fffb com.apple.PerformanceAnalysis (1.183 - 183) <520FEF4A-4C60-31FA-8BA0-528294BC41ED> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff74915000 - 0x7fff74915ff7 com.apple.PhoneNumbers (1.0 - 1) /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x7fff76269000 - 0x7fff762c4ff7 com.apple.PhysicsKit (1.0 - 1) <8F060C2D-BA72-33E7-B6A3-22E15E10B4E7> /System/Library/PrivateFrameworks/PhysicsKit.framework/Versions/A/PhysicsKit
0x7fff762f5000 - 0x7fff7631afff com.apple.pluginkit.framework (1.0 - 1) <5563493F-9BE6-3B11-9261-C330FF14CA16> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
0x7fff7660f000 - 0x7fff7665dffb com.apple.ProtectedCloudStorage (1.0 - 1) <981165D0-2B74-385B-BB4C-0155EF42618E> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff7665e000 - 0x7fff7667cfff com.apple.ProtocolBuffer (1 - 259) /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
0x7fff767e9000 - 0x7fff767feff3 com.apple.QuickLookThumbnailing (1.0 - 1) <0771325B-BBAD-3865-B2A3-BE7089641C52> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
0x7fff76846000 - 0x7fff7684fff3 com.apple.xpc.RemoteServiceDiscovery (1.0 - 1205.1.10) <488A5851-FDEF-3F70-AEBC-BDCF4E58188A> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
0x7fff76850000 - 0x7fff76873ffb com.apple.RemoteViewServices (2.0 - 125) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff76874000 - 0x7fff76885ff3 com.apple.xpc.RemoteXPC (1.0 - 1205.1.10) /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
0x7fff7801a000 - 0x7fff7801dffb com.apple.SecCodeWrapper (4.0 - 360.1.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
0x7fff780c7000 - 0x7fff780ccfff com.apple.ServerInformation (2.0 - 1) <9CF4E458-1879-30CF-8555-E2B28FBD8959> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/ServerInformation
0x7fff78174000 - 0x7fff7826dff7 com.apple.Sharing (910.7 - 910.7) <465C0170-A544-3713-AB5A-894756E6C13E> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff78297000 - 0x7fff78298fff com.apple.performance.SignpostNotification (1.0 - 1) <5C953AF5-746A-3049-A2BC-901D6C7B583F> /System/Library/PrivateFrameworks/SignpostNotification.framework/Versions/A/SignpostNotification
0x7fff78f91000 - 0x7fff79228fff com.apple.SkyLight (1.600.0 - 312) <9BF6B34C-532F-3F84-9B47-C9121FFF0A01> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
0x7fff799d5000 - 0x7fff799e2ff7 com.apple.SpeechRecognitionCore (4.0.13 - 4.0.13) /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff79a93000 - 0x7fff79cceff3 com.apple.spotlight.index (10.7.0 - 1191) <7F436FF6-135E-322E-9834-44CF7ED1699A> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
0x7fff79db9000 - 0x7fff79dc8ffb com.apple.StorageManagement (1.0 - 1) <89644E73-8914-35FC-9DAA-B1DD067922C0> /System/Library/PrivateFrameworks/StorageManagement.framework/Versions/A/StorageManagement
0x7fff79e77000 - 0x7fff79e9dff3 com.apple.StreamingZip (1.0 - 1) <3D46509E-3EB7-3EC8-828D-19BF3C8670BD> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
0x7fff7a56e000 - 0x7fff7a5f2fe7 com.apple.Symbolication (9.0 - 63079.1) <177BC9CA-E6AE-3B40-806F-0080C0CDFF29> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff7a603000 - 0x7fff7a60afff com.apple.SymptomDiagnosticReporter (1.0 - 820.1.4) <29851256-D036-3CF9-9558-D7694D04704F> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
0x7fff7a8b3000 - 0x7fff7a8dffff com.apple.framework.SystemAdministration (1.0 - 1.0) /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
0x7fff7aadd000 - 0x7fff7aae4ff7 com.apple.TCC (1.0 - 1) <1774542A-1E70-3E22-9698-372200D27249> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff7acea000 - 0x7fff7adabff7 com.apple.TextureIO (3.4 - 3.4) <7C93B388-7171-3B3D-BD23-0A8280059260> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
0x7fff7adfc000 - 0x7fff7ae17ffb com.apple.ToneKit (1.0 - 1) /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
0x7fff7ae18000 - 0x7fff7ae3ffff com.apple.ToneLibrary (1.0 - 1) <7EEABD7F-D0CB-327E-A772-ACF406B9C8F2> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
0x7fff7ae4f000 - 0x7fff7ae50fff com.apple.TrustEvaluationAgent (2.0 - 31) <39F533B2-211E-3635-AF47-23F27749FF4A> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff7ae56000 - 0x7fff7b005ff7 com.apple.UIFoundation (1.0 - 543) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff7b01d000 - 0x7fff7b021fff com.apple.Uninstall (1.0.1 - 211) <746EDA3B-D3F7-3932-BEA2-AC4DF35ACA85> /System/Library/PrivateFrameworks/Uninstall.framework/Versions/A/Uninstall
0x7fff7b079000 - 0x7fff7b07bfff libUAPreferences.dylib (360.1) /System/Library/PrivateFrameworks/UniversalAccess.framework/Versions/A/Libraries/libUAPreferences.dylib
0x7fff7b1ce000 - 0x7fff7b89affb com.apple.VectorKit (1.0 - 1346.20.7.28.8) <3902F016-8A1B-32C0-B322-8004B544BAD2> /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit
0x7fff7bcc5000 - 0x7fff7bd94fff com.apple.ViewBridge (341.1 - 341.1) <53A2272D-E834-3A48-829B-D71E05B9E714> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
0x7fff7c55a000 - 0x7fff7c55cffb com.apple.private.XprotectFrameWork.XprotectFramework (1.0 - 1) /System/Library/PrivateFrameworks/XprotectFramework.framework/Versions/A/XprotectFramework
0x7fff7c6e1000 - 0x7fff7c6e5ff7 com.apple.kperf (1.0 - 1) <55D1CB99-9479-35FD-B4DC-880B2F5002BB> /System/Library/PrivateFrameworks/kperf.framework/Versions/A/kperf
0x7fff7c722000 - 0x7fff7c724ffb com.apple.loginsupport (1.0 - 1) <5E2C4AA7-066D-3FDB-B0E1-4CDAF287392C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff7c725000 - 0x7fff7c73afff com.apple.login (3.0 - 3.0) <140118A7-8FB9-35C5-92FA-BD79C9C32309> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
0x7fff7c765000 - 0x7fff7c792fff com.apple.contacts.vCard (1.0 - 2326) <38202649-B1F2-3F6D-B2AC-5EC76C9FAB52> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
0x7fff7c888000 - 0x7fff7c8bbfff libclosured.dylib (519.2.1) <31A6AC03-8F51-367E-9E00-FF0F1AD10F6F> /usr/lib/closure/libclosured.dylib
0x7fff7c95a000 - 0x7fff7c993ff7 libCRFSuite.dylib (41) /usr/lib/libCRFSuite.dylib
0x7fff7c994000 - 0x7fff7c99ffff libChineseTokenizer.dylib (28) /usr/lib/libChineseTokenizer.dylib
0x7fff7c9a0000 - 0x7fff7ca2dff7 libCoreStorage.dylib (546) /usr/lib/libCoreStorage.dylib
0x7fff7ca31000 - 0x7fff7ca32ff3 libDiagnosticMessagesClient.dylib (104) <9712E980-76EE-3A89-AEA6-DF4BAF5C0574> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff7ca69000 - 0x7fff7cc33ff3 libFosl_dynamic.dylib (17.7) /usr/lib/libFosl_dynamic.dylib
0x7fff7cc6b000 - 0x7fff7cc6bfff libOpenScriptingUtil.dylib (174) <203D2C39-61BB-3713-A502-2D17B04A42AC> /usr/lib/libOpenScriptingUtil.dylib
0x7fff7cd94000 - 0x7fff7cd98ffb libScreenReader.dylib (562.1) <107BB2E9-A973-322E-8BDA-5E4DA4061A77> /usr/lib/libScreenReader.dylib
0x7fff7cd99000 - 0x7fff7cd9aff3 libSystem.B.dylib (1252) /usr/lib/libSystem.B.dylib
0x7fff7ce19000 - 0x7fff7ce1afff libThaiTokenizer.dylib (2.2) <04AC7CD4-BD9A-3B1D-8CEB-9E2030B6B667> /usr/lib/libThaiTokenizer.dylib
0x7fff7ce1b000 - 0x7fff7ce1effb libUniversalAccess.dylib (360.1) <603092AD-B7EC-3A7E-BD28-87542D159133> /usr/lib/libUniversalAccess.dylib
0x7fff7ce2d000 - 0x7fff7ce2dfff libapple_crypto.dylib (109.1.6) <1C66C4B7-7E7C-36BC-858E-6661016C971A> /usr/lib/libapple_crypto.dylib
0x7fff7ce2e000 - 0x7fff7ce44ff7 libapple_nghttp2.dylib (1.24) <01402BC4-4822-3676-9C80-50D83F816424> /usr/lib/libapple_nghttp2.dylib
0x7fff7ce45000 - 0x7fff7ce6fff3 libarchive.2.dylib (54) <8FC28DD8-E315-3C3E-95FE-D1D2CBE49888> /usr/lib/libarchive.2.dylib
0x7fff7ce70000 - 0x7fff7cef1fdf libate.dylib (1.13.1) <178ACDAD-DE7E-346C-A613-1CBF7929AC07> /usr/lib/libate.dylib
0x7fff7cef5000 - 0x7fff7cef5ff3 libauto.dylib (187) /usr/lib/libauto.dylib
0x7fff7cef6000 - 0x7fff7cfa5ffb libboringssl.dylib (109.1.6) /usr/lib/libboringssl.dylib
0x7fff7cfa6000 - 0x7fff7cfb6ff3 libbsm.0.dylib (39) <770B341F-3BB7-3123-B53C-F2D58868A963> /usr/lib/libbsm.0.dylib
0x7fff7cfb7000 - 0x7fff7cfc4ffb libbz2.1.0.dylib (38) <0A5086BB-4724-3C14-979D-5AD4F26B5B45> /usr/lib/libbz2.1.0.dylib
0x7fff7cfc5000 - 0x7fff7d01bfff libc++.1.dylib (400.9) /usr/lib/libc++.1.dylib
0x7fff7d01c000 - 0x7fff7d040ff7 libc++abi.dylib (400.7) <217656D5-BC40-37FF-B322-91CB2AAD4F34> /usr/lib/libc++abi.dylib
0x7fff7d042000 - 0x7fff7d052fff libcmph.dylib (6) /usr/lib/libcmph.dylib
0x7fff7d053000 - 0x7fff7d069fff libcompression.dylib (47) /usr/lib/libcompression.dylib
0x7fff7d30f000 - 0x7fff7d327ff7 libcoretls.dylib (155) /usr/lib/libcoretls.dylib
0x7fff7d328000 - 0x7fff7d329ffb libcoretls_cfhelpers.dylib (155) /usr/lib/libcoretls_cfhelpers.dylib
0x7fff7d3df000 - 0x7fff7d4c1ff3 libcrypto.0.9.8.dylib (76) /usr/lib/libcrypto.0.9.8.dylib
0x7fff7d4c2000 - 0x7fff7d652fff libcrypto.35.dylib (22) <067CFC21-249D-392D-ADE1-785100BF0F83> /usr/lib/libcrypto.35.dylib
0x7fff7d7ed000 - 0x7fff7d7f8ff7 libcsfde.dylib (546) /usr/lib/libcsfde.dylib
0x7fff7d7f9000 - 0x7fff7d84fff3 libcups.2.dylib (462) /usr/lib/libcups.2.dylib
0x7fff7d87a000 - 0x7fff7d8ceffb libcurl.4.dylib (105) <2E9FFE56-232A-34A1-8A9B-63D02F6D7130> /usr/lib/libcurl.4.dylib
0x7fff7d8d1000 - 0x7fff7d8d8ff3 libdscsym.dylib (183) /usr/lib/libdscsym.dylib
0x7fff7d8d9000 - 0x7fff7d955ff7 libdtrace.dylib (262) /usr/lib/libdtrace.dylib
0x7fff7d956000 - 0x7fff7d958ffb libdz.dylib (1.0.0 - 110.1.5) /usr/lib/libdz.dylib
0x7fff7d96e000 - 0x7fff7d98cff7 libedit.3.dylib (50) /usr/lib/libedit.3.dylib
0x7fff7d98d000 - 0x7fff7d98dfff libenergytrace.dylib (16) /usr/lib/libenergytrace.dylib
0x7fff7d9a8000 - 0x7fff7d9b4ffb libexslt.0.dylib (15.10) <742FE794-B2D4-3027-A4DE-8DDA69283C36> /usr/lib/libexslt.0.dylib
0x7fff7d9b5000 - 0x7fff7d9b6fff libffi.dylib (18.1) <02011073-8CB7-362F-BC52-43B4E83687B0> /usr/lib/libffi.dylib
0x7fff7d9bf000 - 0x7fff7d9c3ff7 libgermantok.dylib (17) <379C5DC6-BEDB-378D-B09C-A63D297EAA6D> /usr/lib/libgermantok.dylib
0x7fff7d9c4000 - 0x7fff7d9c9ffb libheimdal-asn1.dylib (520) /usr/lib/libheimdal-asn1.dylib
0x7fff7d9f5000 - 0x7fff7dae6ff7 libiconv.2.dylib (51) <0772997F-4109-38A1-91ED-0F3F16AE99E5> /usr/lib/libiconv.2.dylib
0x7fff7dae7000 - 0x7fff7dd0dffb libicucore.A.dylib (59117.0.1) /usr/lib/libicucore.A.dylib
0x7fff7dd5a000 - 0x7fff7dd5bfff liblangid.dylib (128) <39C39393-0D05-301D-93B2-F224FC4949AA> /usr/lib/liblangid.dylib
0x7fff7dd5c000 - 0x7fff7dd75ffb liblzma.5.dylib (10) <3D419A50-961F-37D2-8A01-3DC7AB7B8D18> /usr/lib/liblzma.5.dylib
0x7fff7dd76000 - 0x7fff7dd8cff7 libmarisa.dylib (9) /usr/lib/libmarisa.dylib
0x7fff7dd8d000 - 0x7fff7de3cfff libmecab.1.0.0.dylib (779.1) <134BD345-6F0F-32A3-A2BA-AE219D9848E6> /usr/lib/libmecab.1.0.0.dylib
0x7fff7de3d000 - 0x7fff7e065fff libmecabra.dylib (779.1) /usr/lib/libmecabra.dylib
0x7fff7e06a000 - 0x7fff7e09affb libncurses.5.4.dylib (53) <030DF747-F71B-367A-83EE-2F30B7947929> /usr/lib/libncurses.5.4.dylib
0x7fff7e23d000 - 0x7fff7e313ff7 libnetwork.dylib (1229.1.5) <6134BC02-EC6F-342F-8FCE-673798505400> /usr/lib/libnetwork.dylib
0x7fff7e389000 - 0x7fff7e7777e7 libobjc.A.dylib (723) <93A92316-DE1E-378C-8891-99720B50D075> /usr/lib/libobjc.A.dylib
0x7fff7e778000 - 0x7fff7e779ff7 libodfde.dylib (24) <1BBC519E-EF89-38F3-B226-70F086670D0F> /usr/lib/libodfde.dylib
0x7fff7e78a000 - 0x7fff7e78efff libpam.2.dylib (22) <7B4D2CE2-1438-387A-9802-5CEEFBF26F86> /usr/lib/libpam.2.dylib
0x7fff7e78f000 - 0x7fff7e790fff libpanel.5.4.dylib (53) <79158BAD-B756-3B5D-A429-E9116E861DAC> /usr/lib/libpanel.5.4.dylib
0x7fff7e791000 - 0x7fff7e7c5fff libpcap.A.dylib (79) /usr/lib/libpcap.A.dylib
0x7fff7e843000 - 0x7fff7e844fff libquit.dylib (247) /usr/lib/libquit.dylib
0x7fff7e845000 - 0x7fff7e861ffb libresolv.9.dylib (65) /usr/lib/libresolv.9.dylib
0x7fff7e89c000 - 0x7fff7e8aefff libsasl2.2.dylib (211) /usr/lib/libsasl2.2.dylib
0x7fff7e8af000 - 0x7fff7e8b0ff7 libspindump.dylib (247) /usr/lib/libspindump.dylib
0x7fff7e8b1000 - 0x7fff7ea46fef libsqlite3.dylib (274.1) <075468C1-75CE-318F-9E9B-F62B6A88E1B3> /usr/lib/libsqlite3.dylib
0x7fff7ea69000 - 0x7fff7eaa1ff3 libssl.0.9.8.dylib (76) <3F459E52-F4EA-3F28-8080-D1A76C680F1F> /usr/lib/libssl.0.9.8.dylib
0x7fff7eaa2000 - 0x7fff7eaf5ffb libssl.35.dylib (22) <4D77B502-E065-3794-90E7-39E83F9683F6> /usr/lib/libssl.35.dylib
0x7fff7eb48000 - 0x7fff7eb96fff libstdc++.6.0.9.dylib (104.1) <92CC5BBD-2FB2-3864-BF6B-B4B1BFF4C1EE> /usr/lib/libstdc++.6.0.9.dylib
0x7fff7eb9b000 - 0x7fff7eb9cffb libsysmon.dylib (100) /usr/lib/libsysmon.dylib
0x7fff7ebc9000 - 0x7fff7ebfefff libtidy.A.dylib (15.18.1) <3E33A53A-53AB-3FD5-BBAB-DFA6A3A90132> /usr/lib/libtidy.A.dylib
0x7fff7ec16000 - 0x7fff7ec4fffb libusrtcp.dylib (1229.1.5) /usr/lib/libusrtcp.dylib
0x7fff7ec50000 - 0x7fff7ec53ffb libutil.dylib (51) <58C59F00-031B-3798-B697-A8A4C58E70AA> /usr/lib/libutil.dylib
0x7fff7ec54000 - 0x7fff7ec61fff libxar.1.dylib (400) <0316128D-3B47-3052-995D-97B4FE5491DC> /usr/lib/libxar.1.dylib
0x7fff7ec65000 - 0x7fff7ed4cfff libxml2.2.dylib (31.7) <49544596-BCF8-3765-8DC5-DB1A9A90EF92> /usr/lib/libxml2.2.dylib
0x7fff7ed4d000 - 0x7fff7ed75fff libxslt.1.dylib (15.10) <66682AF6-C2D5-374C-901F-25A3E72814DC> /usr/lib/libxslt.1.dylib
0x7fff7ed76000 - 0x7fff7ed88ffb libz.1.dylib (70) <48C67CFC-940D-3857-8DAD-857774605352> /usr/lib/libz.1.dylib
0x7fff7ee25000 - 0x7fff7ee29ff7 libcache.dylib (80) <354F3B7D-404E-3398-9EBF-65CA2CE65211> /usr/lib/system/libcache.dylib
0x7fff7ee2a000 - 0x7fff7ee34ff3 libcommonCrypto.dylib (60118.1.1) <6C502A55-3B54-3B48-BA7B-FA39F56C0B1E> /usr/lib/system/libcommonCrypto.dylib
0x7fff7ee35000 - 0x7fff7ee3cfff libcompiler_rt.dylib (62) <4487CFBA-A5D7-3282-9E6B-94CAD7BE507E> /usr/lib/system/libcompiler_rt.dylib
0x7fff7ee3d000 - 0x7fff7ee45fff libcopyfile.dylib (146) <7E4BD264-5617-339B-AC73-E8D07EF2C51D> /usr/lib/system/libcopyfile.dylib
0x7fff7ee46000 - 0x7fff7eecaff7 libcorecrypto.dylib (562) <7974762C-DEF7-3056-9856-9821C27846DB> /usr/lib/system/libcorecrypto.dylib
0x7fff7ef51000 - 0x7fff7ef8aff7 libdispatch.dylib (913.1.6) <0DD78497-6A2A-350A-99EF-15BF41EA07DD> /usr/lib/system/libdispatch.dylib
0x7fff7ef8b000 - 0x7fff7efa8ff7 libdyld.dylib (519.2.1) <2597D818-42D2-3375-BD9D-451D5942A6BA> /usr/lib/system/libdyld.dylib
0x7fff7efa9000 - 0x7fff7efa9ffb libkeymgr.dylib (28) <6D84A96F-C65B-38EC-BDB5-21FD2C97E7B2> /usr/lib/system/libkeymgr.dylib
0x7fff7efaa000 - 0x7fff7efb6ff3 libkxld.dylib (4570.1.46) /usr/lib/system/libkxld.dylib
0x7fff7efb7000 - 0x7fff7efb7ff7 liblaunch.dylib (1205.1.10) <5AD77A68-BB4D-33AA-AA4F-DF51D0972FD9> /usr/lib/system/liblaunch.dylib
0x7fff7efb8000 - 0x7fff7efbcffb libmacho.dylib (900.0.1) <756F2553-07B6-3B42-ACEA-2F0F1A5E8D0F> /usr/lib/system/libmacho.dylib
0x7fff7efbd000 - 0x7fff7efbfff3 libquarantine.dylib (86) <6AC8773F-3817-3D82-99C2-01BABB9C3CBB> /usr/lib/system/libquarantine.dylib
0x7fff7efc0000 - 0x7fff7efc1ff3 libremovefile.dylib (45) <912FA211-DD8C-3C92-8424-21B89F8B10FD> /usr/lib/system/libremovefile.dylib
0x7fff7efc2000 - 0x7fff7efd9fff libsystem_asl.dylib (356.1.1) <94972913-9DF0-3C78-847C-43E58919E3DA> /usr/lib/system/libsystem_asl.dylib
0x7fff7efda000 - 0x7fff7efdafff libsystem_blocks.dylib (67) /usr/lib/system/libsystem_blocks.dylib
0x7fff7efdb000 - 0x7fff7f064fff libsystem_c.dylib (1244.1.7) <2D4C21C0-9938-3552-8DC1-2C1CFAA10D38> /usr/lib/system/libsystem_c.dylib
0x7fff7f065000 - 0x7fff7f068ffb libsystem_configuration.dylib (963) /usr/lib/system/libsystem_configuration.dylib
0x7fff7f069000 - 0x7fff7f06cffb libsystem_coreservices.dylib (51) <21A488D0-2D07-344E-8631-CC8B2A246F35> /usr/lib/system/libsystem_coreservices.dylib
0x7fff7f06d000 - 0x7fff7f06efff libsystem_darwin.dylib (1244.1.7) <552C05CA-D151-3F93-B570-413340BDA9C7> /usr/lib/system/libsystem_darwin.dylib
0x7fff7f06f000 - 0x7fff7f075ff7 libsystem_dnssd.dylib (878.1.1) <6E28973E-A258-36F6-ACFB-259ED5885C7A> /usr/lib/system/libsystem_dnssd.dylib
0x7fff7f076000 - 0x7fff7f0bfff7 libsystem_info.dylib (517) <483BE95B-62EB-3663-ACB3-9915A40C70F5> /usr/lib/system/libsystem_info.dylib
0x7fff7f0c0000 - 0x7fff7f0e5ff7 libsystem_kernel.dylib (4570.1.46) <71BA15CB-3056-3CBD-A5F5-EE61566EEA0C> /usr/lib/system/libsystem_kernel.dylib
0x7fff7f0e6000 - 0x7fff7f131fcb libsystem_m.dylib (3146) /usr/lib/system/libsystem_m.dylib
0x7fff7f132000 - 0x7fff7f151fff libsystem_malloc.dylib (140.1.1) <9F0745FF-B92F-330D-8812-BB74001D1D33> /usr/lib/system/libsystem_malloc.dylib
0x7fff7f152000 - 0x7fff7f1f5ff3 libsystem_network.dylib (1229.1.5) /usr/lib/system/libsystem_network.dylib
0x7fff7f1f6000 - 0x7fff7f200ffb libsystem_networkextension.dylib (767.1.4) /usr/lib/system/libsystem_networkextension.dylib
0x7fff7f201000 - 0x7fff7f20aff3 libsystem_notify.dylib (172) <98EA3D62-7C86-30DE-8261-D020D2F1EFF3> /usr/lib/system/libsystem_notify.dylib
0x7fff7f20b000 - 0x7fff7f212ff7 libsystem_platform.dylib (161) <9F5A67F7-BC65-300F-BD74-07E7732D6372> /usr/lib/system/libsystem_platform.dylib
0x7fff7f213000 - 0x7fff7f21eff7 libsystem_pthread.dylib (301.1.6) <6D0B0110-2B44-3D3C-B672-BD08FE46378A> /usr/lib/system/libsystem_pthread.dylib
0x7fff7f21f000 - 0x7fff7f222ffb libsystem_sandbox.dylib (765.1.8) /usr/lib/system/libsystem_sandbox.dylib
0x7fff7f223000 - 0x7fff7f224ff3 libsystem_secinit.dylib (30) /usr/lib/system/libsystem_secinit.dylib
0x7fff7f225000 - 0x7fff7f22cff7 libsystem_symptoms.dylib (820.1.4) /usr/lib/system/libsystem_symptoms.dylib
0x7fff7f22d000 - 0x7fff7f240ff7 libsystem_trace.dylib (829.1.2) <10955EBB-1AC8-3085-9A2D-F3088CA2DF71> /usr/lib/system/libsystem_trace.dylib
0x7fff7f242000 - 0x7fff7f247ff7 libunwind.dylib (35.3) <6D4FCD49-D2A9-3233-95C7-A7635CE265F2> /usr/lib/system/libunwind.dylib
0x7fff7f248000 - 0x7fff7f273ff7 libxpc.dylib (1205.1.10) /usr/lib/system/libxpc.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1
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: 119314
thread_create: 0
thread_set_state: 0

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

                              VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate framework 512K 3
Activity Tracing 256K 2
CG backing stores 8912K 6
CG image 4444K 50
CG raster data 160K 8
CoreAnimation 14.2M 97
CoreGraphics 8K 2
CoreImage 228K 38
CoreUI image data 5256K 49
CoreUI image file 316K 12
Dispatch continuations 8192K 2
Foundation 160K 5
Image IO 448K 10
JS JIT generated code 8K 3
JS JIT generated code (reserved) 1.0G 2 reserved VM address space (unallocated)
Kernel Alloc Once 8K 2
MALLOC 276.0M 105
MALLOC guard page 192K 47
MALLOC_LARGE (reserved) 1540K 3 reserved VM address space (unallocated)
Memory Tag 242 12K 2
Memory Tag 244 128K 3
Memory Tag 251 12K 2
Memory Tag 255 32K 2
SQLite page cache 4800K 6
STACK GUARD 56.1M 20
Stack 17.1M 20
VM_ALLOCATE 156K 24
WebKit Malloc 1056K 4
__DATA 77.3M 617
__FONT_DATA 4K 2
__GLSLBUILTINS 2588K 2
__LINKEDIT 263.1M 200
__TEXT 589.2M 592
__UNICODE 556K 2
libnetwork 128K 3
mapped file 296.1M 255
shared memory 748K 17
=========== ======= =======
TOTAL 2.6G 2182
TOTAL, minus reserved VM space 1.6G 2182

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.