Giter Club home page Giter Club logo

mmm-netatmo's Introduction

Validation Known Vulnerabilities code climate JavaScript Style Guide api All Contributors License

MMM-Netatmo

A module to integrate information from a Netatmo weather station into the MagicMirror.

Netatmo visualisation Netatmo visualisation

Usage

Prerequisites:

To use this module you need to have access to a Netatmo weather station.

Installation

Navigate into your MagicMirror's modules folder and clone the repository:

cd ~/MagicMirror/modules && git clone https://github.com/CFenner/MMM-Netatmo netatmo

⚠️ Note that the checkout folder is named netatmo and not MMM-Netatmo as the repository.

Navigate into the module folder and install missing dependencies:

cd netatmo && npm ci --production --ignore-scripts

Connection to Netatmo Service API

To be able to access your data, you need to have an Netatmo Application. Create your personal app in the Netatmo developer portal and you will get an APP_ID and an APP_SECRET which you will need to enter in your mirror configuration. On the same page, scroll to Token Generator and create a token with the read_station scope. During that process you will grant your previously created Netatmo app access to your Netatmo weather station. You will actually not need the access_token, but the refresh_token. This will also go into your mirror configuration.

Sample Data

If you don't have a Netatmo station yet, you can request a set of mock data by configuring mockData: true in the module configuration. In that case you don't need any user of app credentials.

Configuration

To run the module properly, you need to add the following data to your config.js file.

{
  module: 'netatmo',
  position: 'bottom_left', // the location where the module should be displayed
  header: 'Netatmo', // a header if you like one
  config: {
    clientId: '', // your app id
    clientSecret: '', // your app secret
    refresh_token: '', // your generated refresh token
  }
}

Config Options

The following properties can be configured:

Option Description Default Required
clientId The ID of your Netatmo application. yes
clientSecret The app secret of your Netatmo application. yes
refresh_token Generated refresh token for your Netatmo app and Netatmo instance. yes
refreshInterval How often does the content needs to be updated (minutes)? Data is updated by netatmo every 10 minutes 3 no
moduleOrder The rendering order of your weather modules, ommit a module to hide the output. Example: ["Kitchen","Kid's Bedroom","Garage","Garden"] Be aware that you need to use the module names that you set in the netatmo configuration. no
dataOrder The rendering order of the data types of a module, ommit a data type to hide the output. Example: ["Noise","Pressure","CO2","Humidity","Temperature","Rain"] no
design The design for the module appearance, could be classic or bubbles. classic no
horizontal Control the direction of the modules. true no
showBattery Control the appearance of the battery status. true no
showRadio Control the appearance of the radio perception. true no
showWiFi Control the appearance of the Wifi perception. true no
showTrend Control the appearance of the temperature and pressure trend. true no
showMeasurementIcon Control the appearance of the data entry icons (bubbles design only). true no
showStationName Control the appearance of the station name next to the module name. true no
showModuleNameOnTop Control the position of the module name. false no
fontClassModuleName Control font size class of the module name. xsmall no
fontClassPrimary Control font size class of the primary value (bubbles design only). large no
fontClassSecondary Control font size class of the secondary value (bubbles design only). xsmall no
fontClassMeasurement Control font size class of the data entries. xsmall no
thresholdCO2Average Control the threshold for the CO2 status when it should turn average (bubbles design only). 800 no
thresholdCO2Bad Control the threshold for the CO2 status when it should turn bad (bubbles design only). 1800 no
mockData Use a set of mock data instead of a real data from the Netatmo API. false no

Contributors ✨

Thanks goes to these wonderful people (emoji key):

kuutio-hub
kuutio-hub

🌍
zdeneksofr
zdeneksofr

🌍
Tom-Inge Larsen
Tom-Inge Larsen

🌍
jegerikke
jegerikke

🌍
gilmrt
gilmrt

🌍
cyber152
cyber152

📖
Laz2516
Laz2516

🌍
Otto Lote
Otto Lote

💻
cgillinger
cgillinger

🌍

This project follows the all-contributors specification. Contributions of any kind welcome!

mmm-netatmo's People

Contributors

allcontributors[bot] avatar cfenner avatar cgillinger avatar dependabot[bot] avatar estromsnes avatar gilmrt avatar kristjanesperanto avatar kuutio-hub avatar ottolote avatar renovate[bot] avatar snyk-bot avatar tomlarse avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

mmm-netatmo's Issues

data format

the module should display the station data with the correct measuring unit (%, ppm, etc.)

add other value

Hello

Today I tried to add an other measurement value (eg sum_rain_1). This data comes in as the other data. So I thought that it should be easy to add it.
I then added sum_rain_1 to:
config.js: dataOrder:["Noise","Pressure","CO2","Humidity","Temperature","Rain","sum_wind_1","Wind"]
de.ison: "SUM_RAIN_1": "Niederschlag 1h",
netatmo.js (formatter):
case 'sum_rain_1':
return value.toFixed(0) + ' mm';
netatmo.js (clazz):
case 'sum_rain_1':
return 'wi-raindrops';

But it did not work... The sum of rain did not show up on the magic mirror... ;-(

What else do I have to add, that additional values are displayed?

Thank you and best regards

Michael

hide data while design:bubbles

So, I'm trying to change my setup to use a small 10" screen, and need to omit a fair bit of data. Basically, what I'm trying to do is to use the design:bubbles, but not have any more data than the temperature, and the color-blobs with CO2.

Now, I've been able to remove a bit of it, by changing basically everything to "false" in the netatmo.js, but that doesn't remove Humidity, Noise and Pressure. I've considered that this might be necessary to do in the config.js, and has added dataOrder: ["Temperature","CO2"] to the config.js, but it isn't helping..

Any ideas on how to change this? I would like to keep the module as condensed as possible, and remove unnecessary data..

cs language

hi all.

I've made copy of en.json, change name to cs.json, change strings, add line to netatmo.js, so I've

  getTranslations: function() {
    return {
      en: 'l10n/en.json',
      de: 'l10n/de.json',
      fr: 'l10n/fr.json',
      cs: 'l10n/cs.json'
    };
  },

but

  • strings are still in english
  • how to make it "public", I mean a part of official distribution of module and not have to type next time again

thanks, Zdenek

change graphics

Is there any way of changing the graphical layout of the module? I would have loved to just do it, but my coding skills is slightly insufficient do decipher how to do this... I've included a png showing some of what I have thought of. Is this an easy fix? Or is there any interest in updating the graphics? The illustration is made in illustrator, and the elements can be exported as pngs if there is any interest..
netatmogui

Measurements in german

Hi,

I've seen in netatmo.js that there is a chance to get all these items in german. My config file is on de. Did I forget something, because on my screen everything is in english:

netatmo

Thank you!

Only rotating circle, no data show

The module start in the right position but only a rotating circle displayed on screen.
What's happen?
maybe possible italian translation?

thank you

browser crash

browser crashes some time

Process:               com.apple.WebKit.WebContent [27482]
Path:                  /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
Identifier:            com.apple.WebKit.WebContent
Version:               11601 (11601.5.17.1)
Build Info:            WebKit2-7601005017001000~2
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Safari [9275]
User ID:               501

Date/Time:             2016-03-27 09:19:11.174 +0200
OS Version:            Mac OS X 10.11.4 (15E56a)
Report Version:        11
Anonymous UUID:        EF210269-D4E1-F070-03C7-DCBB9C29C774

Sleep/Wake UUID:       83974AC0-4B2F-43C0-A555-F2FF8C656C65

Time Awake Since Boot: 490000 seconds
Time Since Wake:       1400 seconds

System Integrity Protection: enabled

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

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

VM Regions Near 0x40:
--> 
    __TEXT                 0000000105bc2000-0000000105bc3000 [    4K] r-x/rwx SM=COW  /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent

Application Specific Information:
Bundle controller class:
BrowserBundleController

Process Model:
Multiple Web Processes


Global Trace Buffer (reverse chronological seconds):
92.252825    AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
92.253492    AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
92.253492    AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
111.005266   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
111.005472   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
111.005472   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
125.995783   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
126.002509   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
126.002509   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
132.036488   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
132.039961   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
132.039961   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
135.818229   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
135.821673   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
135.821673   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
141.141241   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
141.148169   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
141.148169   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702
177.228745   AppleJPEG                  0x00007fff9250711c [0x7f94b907b000] Decoding completed without errors
177.228944   AppleJPEG                  0x00007fff925050fc [0x7f94b907b000] Options: 1x-1 [FFFFFFFF,FFFFFFFF] 00024060
177.228944   AppleJPEG                  0x00007fff92504fae [0x7f94b907b000] Decoding: C0 0x02800280 0x0000304A 0x11111100 0x00000000 111702

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   com.apple.JavaScriptCore        0x00007fff8f6c9576 JSC::sizeOfVarargs(JSC::ExecState*, JSC::JSValue, unsigned int) + 214
1   com.apple.JavaScriptCore        0x00007fff8f6c971e JSC::sizeFrameForVarargs(JSC::ExecState*, JSC::JSStack*, JSC::JSValue, unsigned int, unsigned int) + 30
2   ???                             0x000045a3d74aace7 0 + 76569993981159
3   ???                             0x000045a3d7552a5c 0 + 76569994668636
4   ???                             0x000045a3d74b8f5f 0 + 76569994039135
5   com.apple.JavaScriptCore        0x00007fff8f7abad9 vmEntryToJavaScript + 326
6   com.apple.JavaScriptCore        0x00007fff8f6d97c9 JSC::JITCode::execute(JSC::VM*, JSC::ProtoCallFrame*) + 169
7   com.apple.JavaScriptCore        0x00007fff8f2b73dd JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 493
8   com.apple.JavaScriptCore        0x00007fff8f453f37 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&, WTF::NakedPtr<JSC::Exception>&) + 71
9   com.apple.WebCore               0x00007fff99fa278a WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 1002
10  com.apple.WebCore               0x00007fff9a3dcd4b WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, WTF::Vector<WebCore::RegisteredEventListener, 1ul, WTF::CrashOnOverflow, 16ul>&) + 635
11  com.apple.WebCore               0x00007fff99ea8ea0 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 224
12  com.apple.WebCore               0x00007fff99f9ff9d WebCore::EventTarget::dispatchEvent(WTF::PassRefPtr<WebCore::Event>) + 93
13  com.apple.WebCore               0x00007fff9a096318 WebCore::EventTarget::dispatchEvent(WTF::PassRefPtr<WebCore::Event>, int&) + 120
14  com.apple.WebCore               0x00007fff99fba7a1 WebCore::MessagePort::dispatchMessages() + 737
15  com.apple.WebCore               0x00007fff99fba39c WebCore::ScriptExecutionContext::dispatchMessagePortEvents() + 316
16  com.apple.WebCore               0x00007fff9a31a9ad std::__1::__function::__func<WebCore::Document::postTask(WebCore::ScriptExecutionContext::Task)::$_0, std::__1::allocator<WebCore::Document::postTask(WebCore::ScriptExecutionContext::Task)::$_0>, void ()>::operator()() + 125
17  com.apple.JavaScriptCore        0x00007fff8f395183 WTF::callFunctionObject(void*) + 19
18  com.apple.JavaScriptCore        0x00007fff8f2bd764 WTF::dispatchFunctionsFromMainThread() + 292
19  com.apple.JavaScriptCore        0x00007fff8f39515f WTF::timerFired(__CFRunLoopTimer*, void*) + 31
20  com.apple.CoreFoundation        0x00007fff902f6b94 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
21  com.apple.CoreFoundation        0x00007fff902f6823 __CFRunLoopDoTimer + 1075
22  com.apple.CoreFoundation        0x00007fff902f637a __CFRunLoopDoTimers + 298
23  com.apple.CoreFoundation        0x00007fff902ed871 __CFRunLoopRun + 1841
24  com.apple.CoreFoundation        0x00007fff902eced8 CFRunLoopRunSpecific + 296
25  com.apple.HIToolbox             0x00007fff92cde935 RunCurrentEventLoopInMode + 235
26  com.apple.HIToolbox             0x00007fff92cde76f ReceiveNextEventCommon + 432
27  com.apple.HIToolbox             0x00007fff92cde5af _BlockUntilNextEventMatchingListInModeWithFilter + 71
28  com.apple.AppKit                0x00007fff85f13efa _DPSNextEvent + 1067
29  com.apple.AppKit                0x00007fff85f1332a -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454
30  com.apple.AppKit                0x00007fff85f07e84 -[NSApplication run] + 682
31  com.apple.AppKit                0x00007fff85ed146c NSApplicationMain + 1176
32  libxpc.dylib                    0x00007fff9936345e _xpc_objc_main + 793
33  libxpc.dylib                    0x00007fff99361e8a xpc_main + 494
34  com.apple.WebKit.WebContent     0x0000000105bc2b4a 0x105bc2000 + 2890
35  libdyld.dylib                   0x00007fff949765ad start + 1

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib          0x00007fff89dd0efa kevent_qos + 10
1   libdispatch.dylib               0x00007fff9130a165 _dispatch_mgr_invoke + 216
2   libdispatch.dylib               0x00007fff91309dcd _dispatch_mgr_thread + 52

Thread 2:: com.apple.NSEventThread
0   libsystem_kernel.dylib          0x00007fff89dc9f72 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff89dc93b3 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff902ee1c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff902ed68c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff902eced8 CFRunLoopRunSpecific + 296
5   com.apple.AppKit                0x00007fff86069e99 _NSEventThread + 149
6   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
7   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
8   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 3:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib          0x00007fff89dc9f72 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff89dc93b3 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff902ee1c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff902ed68c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff902eced8 CFRunLoopRunSpecific + 296
5   com.apple.CFNetwork             0x00007fff893cf111 +[NSURLConnection(Loader) _resourceLoadLoop:] + 412
6   com.apple.Foundation            0x00007fff95f78d64 __NSThread__start__ + 1351
7   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 4:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff89dcfdb6 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff89358728 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff89a3a68f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8f27e5ab JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8f27e3f8 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8f273d72 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8f273c9f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 5:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff89dcfdb6 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff89358728 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff89a3a68f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8f27e5ab JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8f27e3f8 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8f273d72 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8f273c9f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 6:: JavaScriptCore::Marking
0   libsystem_kernel.dylib          0x00007fff89dcfdb6 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff89358728 _pthread_cond_wait + 767
2   libc++.1.dylib                  0x00007fff89a3a68f std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
3   com.apple.JavaScriptCore        0x00007fff8f27e5ab JSC::GCThread::waitForNextPhase() + 171
4   com.apple.JavaScriptCore        0x00007fff8f27e3f8 JSC::GCThread::gcThreadMain() + 88
5   com.apple.JavaScriptCore        0x00007fff8f273d72 WTF::threadEntryPoint(void*) + 178
6   com.apple.JavaScriptCore        0x00007fff8f273c9f WTF::wtfThreadEntryPoint(void*) + 15
7   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
8   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
9   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 7:: WebCore: Scrolling
0   libsystem_kernel.dylib          0x00007fff89dc9f72 mach_msg_trap + 10
1   libsystem_kernel.dylib          0x00007fff89dc93b3 mach_msg + 55
2   com.apple.CoreFoundation        0x00007fff902ee1c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00007fff902ed68c __CFRunLoopRun + 1356
4   com.apple.CoreFoundation        0x00007fff902eced8 CFRunLoopRunSpecific + 296
5   com.apple.CoreFoundation        0x00007fff9032e9b1 CFRunLoopRun + 97
6   com.apple.WebCore               0x00007fff99eead54 WebCore::ScrollingThread::initializeRunLoop() + 244
7   com.apple.JavaScriptCore        0x00007fff8f273d72 WTF::threadEntryPoint(void*) + 178
8   com.apple.JavaScriptCore        0x00007fff8f273c9f WTF::wtfThreadEntryPoint(void*) + 15
9   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
10  libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
11  libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 8:: DFG Worklist Worker Thread
0   libsystem_kernel.dylib          0x00007fff89dcfdb6 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x00007fff89358728 _pthread_cond_wait + 767
2   com.apple.JavaScriptCore        0x00007fff8f5d41bb JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData*) + 235
3   com.apple.JavaScriptCore        0x00007fff8f273d72 WTF::threadEntryPoint(void*) + 178
4   com.apple.JavaScriptCore        0x00007fff8f273c9f WTF::wtfThreadEntryPoint(void*) + 15
5   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
6   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
7   libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib          0x00007fff89dd010a __semwait_signal + 10
1   libsystem_c.dylib               0x00007fff8bdc6d17 nanosleep + 199
2   libc++.1.dylib                  0x00007fff89a79020 std::__1::this_thread::sleep_for(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > const&) + 75
3   com.apple.JavaScriptCore        0x00007fff8f8a7f6b bmalloc::Heap::scavengeLargeObjects(std::__1::unique_lock<bmalloc::StaticMutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 219
4   com.apple.JavaScriptCore        0x00007fff8f8a78bf bmalloc::Heap::scavenge(std::__1::unique_lock<bmalloc::StaticMutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 287
5   com.apple.JavaScriptCore        0x00007fff8f8a7494 bmalloc::Heap::concurrentScavenge() + 68
6   com.apple.JavaScriptCore        0x00007fff8f8a9a1a bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::entryPoint() + 90
7   com.apple.JavaScriptCore        0x00007fff8f8a99b9 bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::pthreadEntryPoint(void*) + 9
8   libsystem_pthread.dylib         0x00007fff8935799d _pthread_body + 131
9   libsystem_pthread.dylib         0x00007fff8935791a _pthread_start + 168
10  libsystem_pthread.dylib         0x00007fff89355351 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib          0x00007fff89dd05e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff89357578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff89355341 start_wqthread + 13

Thread 11:
0   libsystem_kernel.dylib          0x00007fff89dd05e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff89357578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff89355341 start_wqthread + 13

Thread 12:
0   libsystem_kernel.dylib          0x00007fff89dd05e2 __workq_kernreturn + 10
1   libsystem_pthread.dylib         0x00007fff89357578 _pthread_wqthread + 1283
2   libsystem_pthread.dylib         0x00007fff89355341 start_wqthread + 13

Thread 13:

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000040  rbx: 0x00007fff5a03abc0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
  rdi: 0x00007fff5a03abc0  rsi: 0x000000011d823fc0  rbp: 0x00007fff5a03ab10  rsp: 0x00007fff5a03aad0
   r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x000000000000000f  r11: 0x00007fff8f6e8730
  r12: 0xfffeffffffffffff  r13: 0xfffe000000000000  r14: 0x0000000000000000  r15: 0x00007fff5a03abc0
  rip: 0x00007fff8f6c9576  rfl: 0x0000000000010202  cr2: 0x0000000000000040

Logical CPU:     2
Error Code:      0x00000004
Trap Number:     14


Binary Images:
       0x105bc2000 -        0x105bc2fff  com.apple.WebKit.WebContent (11601 - 11601.5.17.1) <3E3D2E82-579F-3FC7-AC0F-8332146342AD> /System/Library/Frameworks/WebKit.framework/Versions/A/XPCServices/com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
       0x105bce000 -        0x105bcefff  WebProcessShim.dylib (7601.5.17.1) <455B41E6-CEFB-3CE5-A2FF-EBEB95D58385> /System/Library/Frameworks/WebKit.framework/Versions/A/WebProcess.app/Contents/MacOS/WebProcessShim.dylib
       0x10a023000 -        0x10a036ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <82BA647F-77DD-35A5-8BB9-5C6C5D8E721B> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
       0x10a056000 -        0x10a056ffb  com.apple.datadetectors.plugins.phone (7.0 - 460) <FA72255F-6B61-3489-9D9A-993768957E3E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/PlugIns/PhoneNumbers.plugin/PhoneNumbers
       0x10a185000 -        0x10a199fe3  libCGInterfaces.dylib (317.9) <5079DE4F-3717-32FF-B76A-77F53236D17D> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
       0x10b576000 -        0x10b5e2ff7  com.apple.driver.AppleIntelBDWGraphicsMTLDriver (10.14.58 - 10.1.4) <E9009EC0-10A5-3C3D-8A03-77E444CBADA1> /System/Library/Extensions/AppleIntelBDWGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelBDWGraphicsMTLDriver
    0x7fff6be76000 -     0x7fff6bead0d7  dyld (360.21) <D9B236BC-4AC1-325F-B3EF-3F06DBDA7119> /usr/lib/dyld
    0x7fff85906000 -     0x7fff85911ff7  libcommonCrypto.dylib (60075.40.2) <EB65ED74-D3B5-3A3F-AD49-8BD7154691A3> /usr/lib/system/libcommonCrypto.dylib
    0x7fff85964000 -     0x7fff85996fff  com.apple.CommerceKit (1.2.0 - 462.7) <5930FA5C-4098-373B-BA89-73B469D99049> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
    0x7fff85997000 -     0x7fff8599bfff  libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib
    0x7fff8599c000 -     0x7fff85ebefff  com.apple.QuartzComposer (5.1 - 334) <80235264-CA1B-3E3F-96F7-5F6F52FDC5B6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff85ebf000 -     0x7fff85ecafff  com.apple.AppSandbox (4.0 - 261.40.2) <B3FC1559-9551-3BAD-88CA-D757D37AE5F6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff85ecb000 -     0x7fff86af4fff  com.apple.AppKit (6.9 - 1404.46) <05D02C46-9E9F-3E19-BDC9-4E9431C9E02B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff86af5000 -     0x7fff86b32ff3  com.apple.bom (14.0 - 193.7) <9B8AE30B-24A3-37AB-B04E-4CE67AED4775> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff86b33000 -     0x7fff86b34ff3  com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff86b35000 -     0x7fff86b7bff7  libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
    0x7fff86bb0000 -     0x7fff86bb9fff  com.apple.icloud.FindMyDevice (1.0 - 1) <B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff86bba000 -     0x7fff86be8ff7  libsandbox.1.dylib (460.40.33) <C3D36AA0-1BAF-3B04-9986-592414CC043B> /usr/lib/libsandbox.1.dylib
    0x7fff86ed5000 -     0x7fff86ed6ffb  libSystem.B.dylib (1226.10.1) <CD307E99-FC5C-3575-BCCE-0C861AA63124> /usr/lib/libSystem.B.dylib
    0x7fff86f0f000 -     0x7fff8719fff7  com.apple.RawCamera.bundle (6.18.1 - 831) <1CFADE24-F97C-384E-975A-F707F0297384> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff871a2000 -     0x7fff871a2fff  libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib
    0x7fff871a3000 -     0x7fff871a3fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <054DFE32-737D-3211-9A14-0FC5E1A880E3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff87223000 -     0x7fff8723bfff  com.apple.login (3.0 - 3.0) <E02F6100-10F5-3574-9F9F-11709CC4D1C8> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff8723c000 -     0x7fff87447fff  libFosl_dynamic.dylib (16.24) <475A101B-4428-3304-B97F-3E855DCF0C8E> /usr/lib/libFosl_dynamic.dylib
    0x7fff87448000 -     0x7fff874bdfff  com.apple.framework.IOKit (2.0.2 - 1179.40.20) <903C81C7-9627-31EB-8EC9-5984F53836DA> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff874be000 -     0x7fff874bffff  com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff874c0000 -     0x7fff874e9fff  libc++abi.dylib (125) <DCCC8177-3D09-35BC-9784-2A04FEC4C71B> /usr/lib/libc++abi.dylib
    0x7fff875f4000 -     0x7fff8779aff7  com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <082319FC-59F2-3D36-AC9B-94759724E302> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff877a4000 -     0x7fff877d4ff3  com.apple.CoreAVCHD (5.8.0 - 5800.4.2) <4AAFB1C4-3708-30F9-ACFA-90564347204C> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff877e4000 -     0x7fff87840fff  libTIFF.dylib (1444) <2A22E6B7-213B-3253-838F-C3EC3C8F2727> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff8784d000 -     0x7fff87856ff7  com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8798b000 -     0x7fff87cedf3f  libobjc.A.dylib (680) <7489D2D6-1EFD-3414-B18D-2AECCCC90286> /usr/lib/libobjc.A.dylib
    0x7fff87cee000 -     0x7fff87cf5ff7  libcompiler_rt.dylib (62) <A13ECF69-F59F-38AE-8609-7B731450FBCD> /usr/lib/system/libcompiler_rt.dylib
    0x7fff87cf6000 -     0x7fff87d45ff7  com.apple.opencl (2.7.0 - 2.7.0) <B9A1E476-3374-3FF0-BAC0-23BEF4259B02> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff87d46000 -     0x7fff87d48ff7  libRadiance.dylib (1444) <A5EFA292-AFD4-3FCE-8802-958AD60F75DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff87d6c000 -     0x7fff87eeafff  com.apple.UIFoundation (1.0 - 436.1) <AABB5267-E7B7-3D75-B051-E665BDA8DEF4> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff87f89000 -     0x7fff87f8dfff  libGIF.dylib (1444) <D3F44A33-355E-3154-A465-1C732AAC5F75> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff87f8e000 -     0x7fff8803efe7  libvMisc.dylib (563.5) <6D73C20D-D1C4-3BA5-809B-4B597C15AA86> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff88060000 -     0x7fff880b2fff  com.apple.AppleVAFramework (5.0.32 - 5.0.32) <FC1AED2C-B3E2-31D9-B163-37989CD8A073> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff881aa000 -     0x7fff88450ff7  com.apple.CoreData (120 - 641.3) <A29A5491-6169-372B-828F-84EE0CFD4BC4> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff88451000 -     0x7fff88451fff  libmetal_timestamp.dylib (600.0.44.1) <90E4C88A-B512-3AE5-9B70-4675B41D4EE8> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fff884cd000 -     0x7fff8856dfff  com.apple.Metadata (10.7.0 - 972.29) <3BC31B11-2473-3EE4-916A-79F6D9620528> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff88918000 -     0x7fff88a3dff7  com.apple.LaunchServices (728.8 - 728.8) <B90EB25C-734C-3CE7-8D84-83104975FF1C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff88a3e000 -     0x7fff88a78fff  com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff88a7c000 -     0x7fff88bc6ff7  com.apple.coreui (2.1 - 366.1) <A3868F31-ACF4-3EA5-9E75-79ED44FA7F06> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff88bdb000 -     0x7fff88c4afff  com.apple.SearchKit (1.4.0 - 1.4.0) <F159A888-34CA-36F1-AC8E-EB1B38C9DFB3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff88c6f000 -     0x7fff88d5effb  libxml2.2.dylib (29.5) <98123850-560D-3C61-BDEF-EFC98A1FF40F> /usr/lib/libxml2.2.dylib
    0x7fff88db0000 -     0x7fff88deaff7  com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff88deb000 -     0x7fff88deffff  com.apple.LoginUICore (3.2 - 3.2) <5524E4BC-4700-39F4-AF06-E53322712EE0> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore.framework/Versions/A/LoginUICore
    0x7fff88e1c000 -     0x7fff88e22fff  com.apple.IOAccelerator (205.3 - 205.3) <04C6A181-2D0E-332D-9364-6B0FEFFA4E49> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff88e23000 -     0x7fff88e23ff7  liblaunch.dylib (765.40.36) <1CD7619D-AF2E-34D1-8EC6-8021CF473D9B> /usr/lib/system/liblaunch.dylib
    0x7fff88e3b000 -     0x7fff88e3ffff  com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff88f4c000 -     0x7fff88f66fff  com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff88f67000 -     0x7fff88f78ff7  libsystem_trace.dylib (201.10.3) <25104542-5251-3E8D-B14A-9E37207218BC> /usr/lib/system/libsystem_trace.dylib
    0x7fff892ed000 -     0x7fff89316ff7  libxslt.1.dylib (14.1) <27DE3F2E-CE96-3327-A563-788EE3E2775B> /usr/lib/libxslt.1.dylib
    0x7fff89317000 -     0x7fff89340ffb  libRIP.A.dylib (957) <BBD8C5CD-B74C-3E52-8499-416FA031ECFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff89341000 -     0x7fff8934cfff  libGL.dylib (12.0.40.6) <4FC6D3F9-6582-3E7D-A7D1-E035F0E26697> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff8934d000 -     0x7fff89351ff7  com.apple.ParsecSubscriptionServiceSupport (1.0 - 972.29) <DF8EFA7C-6BA7-311C-93B0-606A809ACEEA> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/Versions/A/ParsecSubscriptionServiceSupport
    0x7fff89354000 -     0x7fff8935dff7  libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib
    0x7fff89382000 -     0x7fff893b9ff7  com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff893c7000 -     0x7fff8964eff7  com.apple.CFNetwork (760.4.2 - 760.4.2) <04B2F5CF-9917-321D-83B7-833562951464> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff89650000 -     0x7fff8967ffff  com.apple.securityinterface (10.0 - 55065.40.1) <1BB39B19-DD74-347E-A344-0E6781773577> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff89713000 -     0x7fff89715ff7  com.apple.securityhi (9.0 - 55006) <CA598370-362F-3808-B2EE-75DFCC033AF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff8974e000 -     0x7fff897b5fff  com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff897c3000 -     0x7fff897c5fff  com.apple.OAuth (25 - 25) <B147CF79-A687-3466-BCAE-F05243DE71F7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff898c0000 -     0x7fff8992eff7  com.apple.ApplicationServices.ATS (377 - 394.3) <847DBFBA-8D6B-367B-99FD-C6CAA8C05C65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff89a1b000 -     0x7fff89a32ff7  libsystem_asl.dylib (323.40.3) <EB33B4D3-6964-365D-816A-6634B5B7FD0C> /usr/lib/system/libsystem_asl.dylib
    0x7fff89a33000 -     0x7fff89a86ff7  libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
    0x7fff89a87000 -     0x7fff89aa2fff  com.apple.aps.framework (4.0 - 4.0) <D60BC24A-2C32-34F4-A606-97477FC6CF09> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff89ae0000 -     0x7fff89d76fff  libmecabra.dylib (696.5) <EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9> /usr/lib/libmecabra.dylib
    0x7fff89db9000 -     0x7fff89dd7ff7  libsystem_kernel.dylib (3248.40.184) <88C17B7F-1CD8-3979-A1A9-F7BDB4FCE789> /usr/lib/system/libsystem_kernel.dylib
    0x7fff89dd8000 -     0x7fff89e36fff  com.apple.SystemConfiguration (1.14 - 1.14) <10082F58-6190-3A7C-8B6C-C12B16DC793A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff89ea8000 -     0x7fff89eb9fff  libSparseBLAS.dylib (1162.2) <A39F45B2-F25E-321D-825C-9EAACEF5B6CC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff89ebd000 -     0x7fff89f61fff  com.apple.Bluetooth (4.4.4 - 4.4.4f4) <BCF89EFE-853D-3AEA-AE31-DC8293C7284F> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff89f62000 -     0x7fff89f78fff  com.apple.CoreMediaAuthoring (2.2 - 953) <06C2E0E2-BA5C-3BB1-8DD7-55613EDD654D> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff89f79000 -     0x7fff89fd6fff  com.apple.CoreServices.OSServices (728.8 - 728.8) <F41DB554-D558-335A-A93E-7E03BB3DE12B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff8a002000 -     0x7fff8a2e8fff  com.apple.Safari.Shared (11601 - 11601.5.17) <6A620297-11AB-34C5-AB53-4646303716AE> /System/Library/PrivateFrameworks/SafariShared.framework/Versions/A/SafariShared
    0x7fff8b1f2000 -     0x7fff8b359fff  libBLAS.dylib (1162.2) <DF7FD45D-E082-33FB-B9FD-188E635C9815> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff8b35a000 -     0x7fff8b36bff7  libz.1.dylib (61.20.1) <B3EBB42F-48E3-3287-9F0D-308E04D407AC> /usr/lib/libz.1.dylib
    0x7fff8b426000 -     0x7fff8b427fff  libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib
    0x7fff8b480000 -     0x7fff8b4b1fff  com.apple.GSS (4.0 - 2.0) <B490333A-3B3E-397A-AD75-68846E9A9140> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff8b4b2000 -     0x7fff8b71ffff  com.apple.imageKit (2.6 - 932) <FAE317B8-DF15-3096-AFAC-464913BF2F3B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff8b720000 -     0x7fff8b722fff  com.apple.SecCodeWrapper (4.0 - 261.40.2) <3D181F07-1E85-38C9-AE2E-59862A3E9622> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff8b723000 -     0x7fff8b8e9fe7  com.apple.ImageIO.framework (3.3.0 - 1444) <54F18254-F31B-3464-BB51-BAF9E9620419> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8b9c5000 -     0x7fff8b9cbfff  com.apple.XPCService (2.0 - 1) <5E2122D6-FFA2-3552-BF16-9FD3F36B40DB> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8ba47000 -     0x7fff8ba47fff  com.apple.quartzframework (1.5 - 21) <5DC3D0D9-9E3F-3AA5-92F1-F229907A49B9> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8ba48000 -     0x7fff8bb70fff  com.apple.NetworkExtension (1.0 - 1) <CFD98864-3DD5-391E-B0EA-388294A75C31> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff8bb8f000 -     0x7fff8bb91fff  com.apple.xpc.ServiceManagement (1.0 - 1) <C50E4F38-01A6-304C-872D-BB5CEB78E57A> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff8bb92000 -     0x7fff8bb92fff  libOpenScriptingUtil.dylib (169.1) <83705383-2DC6-341E-988B-2C2CF959D432> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8bb9f000 -     0x7fff8bbf0ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <C6D8FFEB-B1E0-3DBD-BA65-D7D96BE4D590> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8bbf8000 -     0x7fff8bc81ff7  com.apple.PerformanceAnalysis (1.0 - 1) <608E8C50-6F59-3FEB-B822-D9B02F328716> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff8bc8f000 -     0x7fff8bc92fff  com.apple.IOSurface (108.2.1 - 108.2.1) <A0037B0A-277A-393E-9BF6-688595BD564D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8bca5000 -     0x7fff8bca8fff  libsystem_sandbox.dylib (460.40.33) <ABCAE390-5F52-3612-8F69-518B5659D7B2> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff8bd47000 -     0x7fff8bdd4fff  libsystem_c.dylib (1082.20.4) <CDEBF2BB-A578-30F5-846F-96274951C3C5> /usr/lib/system/libsystem_c.dylib
    0x7fff8be05000 -     0x7fff8be17fff  libsasl2.2.dylib (209) <2F81C8C9-11A3-3581-B2C1-D8C03AB7D39C> /usr/lib/libsasl2.2.dylib
    0x7fff8be18000 -     0x7fff8be1affb  libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
    0x7fff8c7fb000 -     0x7fff8c818ff7  com.apple.pluginkit.framework (1.0 - 1) <0BA96479-0451-3DA9-A2AC-FE1D86D383AB> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff8c81c000 -     0x7fff8c833ff7  libsystem_coretls.dylib (83.40.5) <340F8A6F-5EDB-3B5D-A2B5-27541991B0DF> /usr/lib/system/libsystem_coretls.dylib
    0x7fff8c841000 -     0x7fff8c86efff  com.apple.Safari.SafeBrowsing (11601 - 11601.5.17) <D18E9CA2-6B6B-31CB-8BAF-AF8995AAC4BD> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff8c87b000 -     0x7fff8c87cfff  liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
    0x7fff8c87d000 -     0x7fff8c893ff7  libLinearAlgebra.dylib (1162.2) <D022B7FE-1A7C-383E-9FBA-E03645F977CC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff8c894000 -     0x7fff8c9f0ff3  com.apple.WebKitLegacy (11601 - 11601.5.17.1) <BEF2ACE7-5D6F-32A2-93BA-BF78D126465F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff8c9f1000 -     0x7fff8c9f3fff  libCGXType.A.dylib (957) <B901C222-E779-32EB-96C2-5A707A09FC5B> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff8c9f4000 -     0x7fff8c9f8fff  com.apple.ServerInformation (2.0 - 1) <70005D6C-A8BD-37CE-A3CC-5428197AA20F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/ServerInformation
    0x7fff8ca05000 -     0x7fff8ca07fff  com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8ca09000 -     0x7fff8ca3aff7  libtidy.A.dylib (15.17) <6859415D-7A43-384E-ABDD-AA6B2AA9FDCD> /usr/lib/libtidy.A.dylib
    0x7fff8ca45000 -     0x7fff8cf9dff7  com.apple.MediaToolbox (1.0 - 1731.15.202) <D27386F7-752D-36F1-A30F-1FEC5C3A7F75> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8cf9e000 -     0x7fff8cfadfe7  com.apple.AppleFSCompression (81.20.2 - 1.0) <2FE122A9-5265-320A-9600-FFC5CE4DE197> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff8cfae000 -     0x7fff8d019ff7  com.apple.framework.CoreWLAN (11.0 - 1101.20) <CE4843AE-00DC-3711-BE3F-3FF6128312AB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff8d01a000 -     0x7fff8d032fef  libcompression.dylib (28) <E7601B62-1053-369D-8A9E-91CF86239220> /usr/lib/libcompression.dylib
    0x7fff8d033000 -     0x7fff8d038ff3  libunwind.dylib (35.3) <F6EB48E5-4D12-359A-AB54-C937FBBE9043> /usr/lib/system/libunwind.dylib
    0x7fff8d060000 -     0x7fff8d06eff7  libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
    0x7fff8d06f000 -     0x7fff8d07bfff  com.apple.CommerceCore (1.0 - 462.7) <A609E18E-4E4B-39D8-9B8D-3A72632F3708> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fff8d07c000 -     0x7fff8d0c8ffb  com.apple.HIServices (1.22 - 549) <E4E1BD10-F475-3E19-9E0B-A5071D158F47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff8d0c9000 -     0x7fff8d11efff  com.apple.AE (701 - 701) <AD492742-F884-386B-A450-FAC281B9FFA4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8d11f000 -     0x7fff8d12afff  libcsfde.dylib (517.20.1) <6FFC376E-E141-37EE-800A-004080A50091> /usr/lib/libcsfde.dylib
    0x7fff8d16f000 -     0x7fff8d18bff3  libresolv.9.dylib (60) <A650B5C8-1950-36A0-86D1-0B2465318BFA> /usr/lib/libresolv.9.dylib
    0x7fff8d18c000 -     0x7fff8d2b9ff3  com.apple.CoreText (352.0 - 494.11) <08E8640E-6602-3A00-BC28-94235FD311B4> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff8d2ba000 -     0x7fff8d2bfff7  com.apple.AssetCacheServices (14.1 - 14.1) <5F249F84-660A-3E94-B073-6729E7ED56D9> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fff8d307000 -     0x7fff8d320fff  com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff8d455000 -     0x7fff8d6c4fff  com.apple.AuthKit (1.0 - 1) <376E7446-9F68-3188-B4D3-DA06925DC535> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff8d6c5000 -     0x7fff8d6c6fff  libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff8d6c7000 -     0x7fff8d6caff7  libCoreFSCache.dylib (119.5) <C7573EBF-9CF7-33E4-BB94-3FFEA63C0779> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff8d6cb000 -     0x7fff8e919feb  com.apple.CoreGraphics (1.600.0 - 957) <C0CAA080-2551-3B3F-BC53-5157A181D514> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff8eb9c000 -     0x7fff8eda9fff  libicucore.A.dylib (551.51) <288DE07A-5BF1-3D2D-AE77-198DA7F8D3A1> /usr/lib/libicucore.A.dylib
    0x7fff8edfd000 -     0x7fff8ee08fff  libkxld.dylib (3248.40.184) <F4F914DA-9293-37C8-87AA-17EC91C7B462> /usr/lib/system/libkxld.dylib
    0x7fff8ee09000 -     0x7fff8ee0fff7  com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8ee19000 -     0x7fff8ee3cff7  com.apple.Network (1.0 - 1) <7C81DD1F-C6A9-3261-8E2F-91BB5CE72568> /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network
    0x7fff8eef6000 -     0x7fff8eef9fff  libspindump.dylib (197.1) <48F4C673-9F0C-38BE-B550-88241E812518> /usr/lib/libspindump.dylib
    0x7fff8ef20000 -     0x7fff8ef3dfff  com.apple.DistributionKit (700 - 1000) <4E57473B-3B6C-35E8-8D25-592EA1CACF2A> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit.framework/Versions/A/DistributionKit
    0x7fff8ef3e000 -     0x7fff8ef46fff  libMatch.1.dylib (27) <3AC0BFB8-7E69-3DBE-A175-7F3946FC4554> /usr/lib/libMatch.1.dylib
    0x7fff8f1fd000 -     0x7fff8f1fffff  libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff8f22d000 -     0x7fff8f26fff7  com.apple.Metal (56.6 - 56.6) <266CCFFE-A807-3D05-8F82-3835EE9BED46> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff8f270000 -     0x7fff8f90fff7  com.apple.JavaScriptCore (11601 - 11601.5.17) <E12A9CB4-C807-3602-8357-6037579F6A13> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff8f913000 -     0x7fff8f987ff7  com.apple.Heimdal (4.0 - 2.0) <7AD74467-7A32-3C35-9AAE-3CE8567B10F8> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff8f988000 -     0x7fff8f996fff  libIASAuthReboot.dylib (1010) <5CDC581B-B0C6-3166-AD79-1D7EA890D748> /usr/lib/libIASAuthReboot.dylib
    0x7fff8f997000 -     0x7fff8f9cbff7  com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8f9cc000 -     0x7fff8fa1efff  com.apple.ImageCaptureCore (7.0 - 7.0) <9F3123D8-29D2-332F-AD6B-AB9BF1A58022> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff8fa1f000 -     0x7fff8fa20ffb  libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib
    0x7fff8fdbb000 -     0x7fff90256ff3  com.apple.GeoServices (1.0 - 1151.47.0.1) <79D7B573-5977-365C-B23F-D6289DE470EA> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff90264000 -     0x7fff906dafff  com.apple.CoreFoundation (6.9 - 1258.1) <943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff906f3000 -     0x7fff906f6fff  com.apple.Mangrove (1.0 - 1) <2D86B3AD-64C3-3BB4-BC66-1CFD0C90E844> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff906f7000 -     0x7fff90786ff7  libCoreStorage.dylib (517.20.1) <EC540EAA-089C-36D9-BBAA-0684EDE098AB> /usr/lib/libCoreStorage.dylib
    0x7fff907b8000 -     0x7fff908a3ff7  com.apple.QuickLookUIFramework (5.0 - 696.7) <28C9A7BD-EEB9-39C2-A2A2-9F95C21D45AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff90aa8000 -     0x7fff90ac2ff3  liblzma.5.dylib (10) <CC03591B-FA57-3CA5-AC81-0D76033AC0CE> /usr/lib/liblzma.5.dylib
    0x7fff91302000 -     0x7fff9132ffff  libdispatch.dylib (501.40.12) <7FC1909E-662B-3882-8553-03A786DEDB37> /usr/lib/system/libdispatch.dylib
    0x7fff91330000 -     0x7fff913a7feb  libcorecrypto.dylib (335.40.8) <B51CB45E-6FC6-3780-AAAA-3B209B1B508A> /usr/lib/system/libcorecrypto.dylib
    0x7fff913a8000 -     0x7fff91642fff  com.apple.security (7.0 - 57337.40.83) <4175F01B-06CF-3E3B-B240-C4746D885665> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff91643000 -     0x7fff9173fff7  libFontParser.dylib (158.5) <62796E99-36B7-36B6-8D33-5349F88014C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff91740000 -     0x7fff917c8fff  com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff917c9000 -     0x7fff917ecff7  com.apple.speech.LatentSemanticMappingFramework (2.12.1 - 2.12.1) <DB9F6DE8-5FD1-33DC-B010-33BEA74764CB> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
    0x7fff917ed000 -     0x7fff917fcffb  com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff917fd000 -     0x7fff917fdfff  com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff917fe000 -     0x7fff9184eff7  com.apple.Symbolication (1.4 - 58044) <F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff9189c000 -     0x7fff91932fff  com.apple.ColorSync (4.9.0 - 4.9.0) <2E652A17-47F6-3ECA-9213-2B0006825F16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff91933000 -     0x7fff91960ff3  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <E38F3C5D-754F-32BE-87FB-C83A80B4C0D6> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff91a62000 -     0x7fff91a65ff7  com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff923ab000 -     0x7fff9249bfff  libJP2.dylib (1444) <27371567-A122-3217-ADA0-3A446EF6A3E9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff924ab000 -     0x7fff92538dd7  com.apple.AppleJPEG (1.0 - 1) <558ACADA-C41F-3EEF-82A0-C2D7B13C5428> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff9255d000 -     0x7fff9258cff7  com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff92807000 -     0x7fff92810ff3  libsystem_notify.dylib (150.40.1) <D48BDE34-0F7E-34CA-A0FF-C578E39987CC> /usr/lib/system/libsystem_notify.dylib
    0x7fff92950000 -     0x7fff92950ff7  libunc.dylib (29) <DDB1E947-C775-33B8-B461-63E5EB698F0E> /usr/lib/system/libunc.dylib
    0x7fff92962000 -     0x7fff929b2ff7  com.apple.DiskManagement (8.1 - 952) <DF21F162-3E72-382E-BA90-9939CD385F55> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff929b3000 -     0x7fff929b6ff7  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <E4D4F6E3-31C5-3F5F-AB0E-0573EF2797C8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff929b7000 -     0x7fff92a1eff7  com.apple.StoreFoundation (1.0 - 462.7) <5D851506-0C22-30C0-BE5E-86B84206E9FE> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFoundation
    0x7fff92a1f000 -     0x7fff92a2bfff  com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff92a2c000 -     0x7fff92a77ff7  com.apple.CoreMediaIO (703.0 - 4791) <6A40772B-A686-31BE-A86F-F71002E6CCD1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff92a78000 -     0x7fff92ac9ff7  libcups.2.dylib (435.1) <D96E5F02-AD05-355E-90C6-F8829EB1FB8F> /usr/lib/libcups.2.dylib
    0x7fff92ad1000 -     0x7fff92ad3fff  com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff92c1a000 -     0x7fff92c7afff  com.apple.QuickLookFramework (5.0 - 696.7) <80C71AE9-9461-3EF4-9C3C-BF528C202959> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff92c81000 -     0x7fff92cadfff  com.apple.framework.SystemAdministration (1.0 - 1.0) <1318B6A5-FFC3-3615-914D-95CBFE5BA727> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdministration
    0x7fff92cae000 -     0x7fff92fa3fff  com.apple.HIToolbox (2.1.1 - 807.2) <871E5223-5D03-3649-98AF-9CCA3B41E307> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff93000000 -     0x7fff9303eff7  libGLImage.dylib (12.0.40.6) <734B133F-E789-3A25-9DE6-1CCBA4896D4D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff9306b000 -     0x7fff93087ff7  libextension.dylib (78) <FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E> /usr/lib/libextension.dylib
    0x7fff93088000 -     0x7fff930eeff7  libsystem_network.dylib (583.40.20) <9204908A-18F7-37E7-8B71-2F2D956080A7> /usr/lib/system/libsystem_network.dylib
    0x7fff930ef000 -     0x7fff930f3fff  libpam.2.dylib (20) <CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A> /usr/lib/libpam.2.dylib
    0x7fff930f4000 -     0x7fff93139ff3  libFontRegistry.dylib (155.1) <F3355C6E-ED33-3506-B10E-2F6995D34BC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff9313a000 -     0x7fff9315cfff  com.apple.IconServices (68.1 - 68.1) <CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff931f0000 -     0x7fff9323cfff  com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff9323d000 -     0x7fff932e8fff  com.apple.PDFKit (3.1 - 3.1) <27AF3C85-1C0B-389C-856C-2E527620C195> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff93b7a000 -     0x7fff93d26fff  com.apple.avfoundation (2.0 - 1046.9.11) <47234E06-4D52-3213-BD94-FB8EF9522F97> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff93d4b000 -     0x7fff93d53fff  libcopyfile.dylib (127) <A48637BC-F3F2-34F2-BB68-4C65FD012832> /usr/lib/system/libcopyfile.dylib
    0x7fff93d54000 -     0x7fff93e78fff  libsqlite3.dylib (216.4) <280D67B8-F93D-3587-A146-19F36C817548> /usr/lib/libsqlite3.dylib
    0x7fff93fdd000 -     0x7fff93feefff  libcmph.dylib (6) <BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF> /usr/lib/libcmph.dylib
    0x7fff93ff6000 -     0x7fff941c4ff3  com.apple.QuartzCore (1.11 - 410.14) <0283748A-8318-36AC-8B30-8A951FEB305A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff941c5000 -     0x7fff94200ff7  com.apple.AuthKitUI (1.0 - 1) <EC5CFA90-A461-30BD-BE65-52D45F005951> /System/Library/PrivateFrameworks/AuthKitUI.framework/Versions/A/AuthKitUI
    0x7fff94201000 -     0x7fff94201fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <185EC96A-5AF0-3620-A4ED-4D3654D25B39> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff94459000 -     0x7fff94484ffb  libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib
    0x7fff94485000 -     0x7fff94577ff7  libiconv.2.dylib (44) <F05A0A5A-92A9-3668-8F20-F27CBDA26BE9> /usr/lib/libiconv.2.dylib
    0x7fff9459a000 -     0x7fff94972fef  com.apple.CoreAUC (214.0.0 - 214.0.0) <F80C19CA-6CD0-3052-9C22-0288A257CCC8> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff94973000 -     0x7fff94976ffb  libdyld.dylib (360.21) <8390E026-F7DE-3C32-9486-3DFF6BD131B0> /usr/lib/system/libdyld.dylib
    0x7fff94977000 -     0x7fff94a06fff  com.apple.CorePDF (4.0 - 4) <849BBFF6-0700-3ED1-98DF-A6E93B9B707F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff94a17000 -     0x7fff94a58ff7  libGLU.dylib (12.0.40.6) <C56DDF90-CF6D-30D2-A3E6-89288BE69DCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff94a59000 -     0x7fff94b67ff3  com.apple.desktopservices (1.10.3 - 1.10.3) <44302433-52D1-3164-814F-38C5DAE007B5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff94d89000 -     0x7fff94d91fff  libsystem_networkextension.dylib (385.40.36) <CC33517E-BEB5-30B6-8EA3-1C33CF102F79> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff94d92000 -     0x7fff94d94ff7  com.apple.SafariServices.framework (11601 - 11601.5.17.1) <396E2233-E2DC-391C-84D2-991F636A941B> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff94d95000 -     0x7fff94da1fff  com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff94dcd000 -     0x7fff951fbfff  com.apple.vision.FaceCore (3.3.1 - 3.3.1) <E54028EA-4217-3078-A2B1-C52E4214D59E> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff951fc000 -     0x7fff95341fff  com.apple.QTKit (7.7.3 - 2943.3) <AA9A4581-D82E-369F-B86B-9046F8FFB6CB> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff95342000 -     0x7fff9534bff7  com.apple.DisplayServicesFW (3.0 - 378) <45BE1B99-8E10-32F0-A180-A6B6CB5883AE> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff9534c000 -     0x7fff95363fff  libmarisa.dylib (4) <E4919B03-D9BD-3AF8-B436-C415C98E3F0A> /usr/lib/libmarisa.dylib
    0x7fff9540d000 -     0x7fff95481ff3  com.apple.securityfoundation (6.0 - 55126) <F34A521C-59EE-3FF2-AD39-35C19E33129B> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff95482000 -     0x7fff9548eff7  com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff9548f000 -     0x7fff954b8fff  com.apple.ProtectedCloudStorage (1.0 - 1) <4850F751-E61B-30C0-B89A-B313601D3DB5> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff954b9000 -     0x7fff954b9fff  com.apple.ApplicationServices (48 - 48) <ADD57D3A-142F-3EF5-BFD8-EACD82164884> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff954ba000 -     0x7fff954bcff7  libsystem_configuration.dylib (802.40.13) <CC704FD1-5E15-3C01-A6BA-ABCB38B4CBBE> /usr/lib/system/libsystem_configuration.dylib
    0x7fff954cb000 -     0x7fff95503ff7  com.apple.RemoteViewServices (2.0 - 101) <E46F6FAA-8DAF-35E2-A444-5CE3DDB8B625> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff95504000 -     0x7fff95509ff7  libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib
    0x7fff9550a000 -     0x7fff95531fff  com.apple.ChunkingLibrary (167 - 167) <AD7F285C-005E-36BB-98A3-5826413533BE> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff95532000 -     0x7fff955a1fff  com.apple.datadetectorscore (7.0 - 460) <CB11484D-35D0-3A37-881E-B29A39D3B36B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff955a2000 -     0x7fff955adfff  com.apple.DirectoryService.Framework (10.11 - 194) <6F827D0E-0F02-3B09-B2A8-252865EECA7F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff955c3000 -     0x7fff955c4fff  libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib
    0x7fff9577e000 -     0x7fff9577efff  com.apple.CoreServices (728.9 - 728.9) <78CB3EAC-A66E-3FD9-A1DF-A9CF227ED3C3> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff957bb000 -     0x7fff957c0fff  com.apple.MediaAccessibility (1.0 - 79) <C5E61B45-1967-3602-A48C-31E132B998B2> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff957c1000 -     0x7fff957efff7  com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff957f0000 -     0x7fff957f3ffb  libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib
    0x7fff957f4000 -     0x7fff957fcfff  libGFXShared.dylib (12.0.40.6) <1CDE5AEF-3E44-3547-879E-BB490EE7702C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff957fd000 -     0x7fff95819fff  com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff9581a000 -     0x7fff95ef3ff3  com.apple.Safari.framework (11601 - 11601.5.17.1) <B91CE451-C804-3A22-B131-35CBD27DC89A> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x7fff95f38000 -     0x7fff95f42fff  com.apple.NetAuth (6.0 - 6.0) <D692B1EF-534F-3892-8E2F-2BBA7C8AFD74> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff95f43000 -     0x7fff96297fff  com.apple.Foundation (6.9 - 1258) <FDC34FEB-1206-31E5-8E6F-A3F7F3E8BD4D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff9629d000 -     0x7fff962b2fff  com.apple.AppContainer (4.0 - 261.40.2) <E238EBCB-2C86-3082-AFB8-1F2A777EE674> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff962b8000 -     0x7fff965f8fff  com.apple.WebKit (11601 - 11601.5.17.1) <23C605B4-8A20-3ADF-A22F-A38B0C6F7EF2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff965f9000 -     0x7fff9668efff  com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff9668f000 -     0x7fff966b3fff  libJPEG.dylib (1444) <AECB826C-8B14-3D04-8DEC-33EE85F5150D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff966b4000 -     0x7fff96a49fdb  com.apple.vImage (8.0 - 8.0) <4BAC9B6F-7482-3580-8787-AB0A5B4D331B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff96c0e000 -     0x7fff96c53ff7  com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff96c54000 -     0x7fff96c5cfef  libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib
    0x7fff96c5d000 -     0x7fff96c60fff  libCoreVMClient.dylib (119.5) <AB7EA65D-E18B-38A2-AA6B-78D24E0530FE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff96f8c000 -     0x7fff96f97fff  com.apple.CrashReporterSupport (10.11 - 717) <BD452965-AFAA-36C2-9AAE-BB16C9C470A0> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff96fb2000 -     0x7fff96fb3ffb  libsysmon.dylib (85) <B4DA61BB-07A0-3CFB-9EBD-33121FC4BEA4> /usr/lib/libsysmon.dylib
    0x7fff96fb4000 -     0x7fff96fb5ff7  libodfde.dylib (23) <F84CB160-D638-3190-B6F5-A262E9AF09F6> /usr/lib/libodfde.dylib
    0x7fff9702e000 -     0x7fff97050ff7  com.apple.Sharing (442.13.6 - 442.13.6) <127B1468-44C3-31EB-84C8-AB2407FA3A0F> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff97051000 -     0x7fff97051fff  com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff97110000 -     0x7fff97118fff  com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff97138000 -     0x7fff97138fff  com.apple.audio.units.AudioUnit (1.13 - 1.13) <93C1D642-37D4-3692-AD35-DCAD04F9610B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff97139000 -     0x7fff9741effb  com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <423CB6F9-E065-32B2-9A19-0ED54CF39E14> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff97813000 -     0x7fff9788aff7  com.apple.MMCS (1.3 - 357.1) <4B305068-F75B-359E-A35A-74B941F08291> /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS
    0x7fff9788b000 -     0x7fff97890fff  com.apple.TCC (1.0 - 1) <50F7EC60-5B21-3B9B-BF2F-F037EA7B12FB> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff978e2000 -     0x7fff978f2ff3  com.apple.ProtocolBuffer (1 - 243) <BAE5E5C9-DD59-3BB8-9741-EEFC5E3046EE> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff97aa8000 -     0x7fff97ac7ff7  com.apple.framework.Apple80211 (11.0 - 1121.34) <43708A15-612B-3F5B-948A-DC6DA4435EBF> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff97ac8000 -     0x7fff97aecfff  com.apple.quartzfilters (1.10.0 - 1.10.0) <F5C482E2-5AFB-3959-8C01-C149D48E7583> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff97afd000 -     0x7fff97b1fff7  com.apple.framework.familycontrols (4.1 - 410) <36DCC2B7-4FDF-397D-BB14-36CACED9E946> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x7fff97b3c000 -     0x7fff97b44fff  com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff97c51000 -     0x7fff97c59ffb  libsystem_dnssd.dylib (625.40.20) <824E1B3F-AEDC-3E1B-847A-66784930E746> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff97d98000 -     0x7fff97db3ff7  libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
    0x7fff97dc8000 -     0x7fff97dcdfff  com.apple.DiskArbitration (2.7 - 2.7) <F55902AA-5316-3255-A701-FDED5B553065> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff97e40000 -     0x7fff97f4ffe7  libvDSP.dylib (563.5) <9AB6CA3C-4F0E-35E6-9184-9DF86E7C3DAD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff97f62000 -     0x7fff97fc5fff  libAVFAudio.dylib (161.2) <5662A30A-4D19-3084-9211-33B1AEA9345A> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x7fff97fc6000 -     0x7fff97ff9ff7  com.apple.MediaKit (16 - 809) <BF8032FE-6645-37F6-A622-BC7EEE3EAABF> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff97ffa000 -     0x7fff980e0ff7  libcrypto.0.9.8.dylib (59.40.2) <D5B73E6F-F933-3D5A-B9FB-40ED23862A27> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff980e1000 -     0x7fff980e9fff  com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff980ea000 -     0x7fff98106ff7  libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib
    0x7fff981ee000 -     0x7fff9828bfff  com.apple.SoftwareUpdate.framework (6 - 795) <6A241DEB-1216-31CC-876B-248869D93F16> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareUpdate
    0x7fff982bf000 -     0x7fff982eeffb  libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib
    0x7fff982ef000 -     0x7fff9866affb  com.apple.VideoToolbox (1.0 - 1731.15.202) <B839BE14-9503-3B5E-A54A-C7FCEED34EA3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff98933000 -     0x7fff9894cfff  com.apple.openscripting (1.7.1 - 169.1) <8D69EE50-BCDE-3A1B-AF5C-2D6367046231> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff990ca000 -     0x7fff990ccfff  libCVMSPluginSupport.dylib (12.0.40.6) <4AA6710A-6267-3062-BFF2-27DB5E6B5892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff990da000 -     0x7fff990dfff7  libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib
    0x7fff990e0000 -     0x7fff990e8ff7  libnetwork.dylib (583.40.20) <3C4C9968-C6A7-3D3D-98EE-125045999E01> /usr/lib/libnetwork.dylib
    0x7fff990f5000 -     0x7fff9911aff7  libPng.dylib (1444) <47ACF98D-B5F1-3A03-B6FD-4107D5FAE5E9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff9911b000 -     0x7fff99129fff  libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
    0x7fff9912a000 -     0x7fff99178fff  libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib
    0x7fff9927e000 -     0x7fff992caff7  com.apple.corelocation (1486.17 - 1615.38) <6336CFC5-9D7D-3B76-B263-56DD6EBD0B8D> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff992cb000 -     0x7fff992d6ff7  libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib
    0x7fff992d7000 -     0x7fff992d9ff7  libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib
    0x7fff992e2000 -     0x7fff992fdfff  com.apple.PackageKit.PackageUIKit (3.0 - 546) <C4FD3F06-3FE4-37BC-BD5F-1C67F66746AD> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit.framework/Versions/A/PackageUIKit
    0x7fff99318000 -     0x7fff99350ff7  com.apple.Accounts (113 - 113) <9B60229C-47E4-3970-AFC1-518EA3DD5DC5> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff99351000 -     0x7fff99351ff7  libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib
    0x7fff99352000 -     0x7fff9937bff7  libxpc.dylib (765.40.36) <2CC7CF36-66D4-301B-A6D8-EBAE7405B008> /usr/lib/system/libxpc.dylib
    0x7fff99413000 -     0x7fff99423fff  libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
    0x7fff99499000 -     0x7fff9956fffb  com.apple.DiskImagesFramework (10.11.3 - 417.2) <42FB27C0-0C15-388C-A41D-76E6AF693B15> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff99570000 -     0x7fff99791ff7  com.apple.CoreImage (11.4.0 - 366.4.19) <6EE4A686-50C8-3D77-A036-BE8AA0F8A2FD> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff9979f000 -     0x7fff99859fff  com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff9985f000 -     0x7fff99860fff  libquit.dylib (197.1) <C9B29CC4-19AD-3D2B-9C7F-4FDAB73FE781> /usr/lib/libquit.dylib
    0x7fff99a26000 -     0x7fff99a4afff  com.apple.MultitouchSupport.framework (304.10.2 - 304.10.2) <CE75EDA3-2B22-3968-834E-550EA870ECC8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff99a4b000 -     0x7fff99a68ff7  com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <F4AF2363-B28E-3097-AB1E-FDA1C92F8F56> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff99a69000 -     0x7fff99a7cfff  com.apple.CoreBluetooth (1.0 - 1) <E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff99a9a000 -     0x7fff99ac3fff  libsystem_info.dylib (477.40.5) <6B01C09E-A3E5-3C71-B370-D0CABD11A436> /usr/lib/system/libsystem_info.dylib
    0x7fff99ad9000 -     0x7fff99b89fff  com.apple.backup.framework (1.7.4 - 1.7.4) <534FB88A-B8D5-3004-B10B-135AB7318E3F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff99b96000 -     0x7fff99c6ffff  com.apple.CoreMedia (1.0 - 1731.15.202) <B871050E-E721-3604-8A4E-7D8808E49550> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff99c88000 -     0x7fff99d45fd7  com.apple.PackageKit (3.0 - 546) <C257D310-4642-3F16-A747-EED63B08EB6D> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fff99d46000 -     0x7fff99d54fff  com.apple.opengl (12.0.40 - 12.0.40) <37217BAE-AA8A-3385-8940-5EC8F4E83757> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff99dc4000 -     0x7fff99dccfff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <CC53DC12-9231-3C4F-921B-9A770D463323> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff99dcd000 -     0x7fff99e74fff  com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff99e75000 -     0x7fff9af63ff7  com.apple.WebCore (11601 - 11601.5.17) <2520F0D2-F30D-331F-B656-B258D30162AD> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff9af7e000 -     0x7fff9b37afff  libLAPACK.dylib (1162.2) <987E42B0-5108-3065-87F0-9DF7616A8A06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff9b37b000 -     0x7fff9b434ff7  com.apple.cloudkit.CloudKit (482.29 - 482.29) <7C42D77E-0402-3B4F-B592-7627A9323F28> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff9bca4000 -     0x7fff9bca9fff  com.apple.ImageCapture (9.0 - 9.0) <ACECF0B7-7D92-3A22-BF47-E8FADF4C5378> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture

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

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

                                  VIRTUAL   REGION 
REGION TYPE                          SIZE    COUNT (non-coalesced) 
===========                       =======  ======= 
Activity Tracing                    2048K        2 
CG shared images                     144K        4 
CoreAnimation                        104K       17 
CoreUI image file                    128K        2 
Dispatch continuations              8192K        2 
JS JIT generated code              128.0M        5 
JS JIT generated code (reserved)   896.0M        2         reserved VM address space (unallocated)
Kernel Alloc Once                      8K        3 
MALLOC                              44.3M       19 
MALLOC guard page                     32K        7 
Memory Tag 242                        12K        2 
Memory Tag 251                        60K        3 
Process Corpse Info                 2048K        2 
SQLite page cache                    128K        2 
STACK GUARD                         56.0M       14 
Stack                               13.7M       14 
VM_ALLOCATE                          560K        9 
WebKit Malloc                        1.7G       87 
__DATA                              29.0M      281 
__IMAGE                              528K        2 
__LINKEDIT                          91.7M        9 
__TEXT                             208.0M      290 
__UNICODE                            552K        2 
mapped file                         42.3M       18 
shared memory                       16.3M        9 
===========                       =======  ======= 
TOTAL                                3.2G      782 
TOTAL, minus reserved VM space       2.3G      782 

Model: MacBookPro12,1, BootROM MBP121.0167.B16, 2 processors, Intel Core i5, 2,7 GHz, 8 GB, SMC 2.28f7
Graphics: Intel Iris Graphics 6100, Intel Iris Graphics 6100, Built-In
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5544
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1867 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5544
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x133), Broadcom BCM43xx 1.0 (7.21.95.172.1a4)
Bluetooth: Version 4.4.4f4 17685, 3 services, 18 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0256G, 251 GB
USB Device: USB 3.0 Bus
USB Device: Card Reader
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 27.1

Font/Size & display change

First off, thx for your work and effort. It's awesome that I can display netatmo readings on my mirror now.
I've tried to customize two things but unfortunately not successful, could use your help and pointers:

  1. How/where can I change the font type and size of each of the labels and data (of the classic design)?
  2. Using the classic design, how can I place the squares vertically instead of horizontally?
    This way they will be nicely outlined along the side of my mirror.

I tried the .css, the design files and looking into netatmo.js but no succes yet.

Refresh is stuck after about one day

Currently it seems like the refresh service or interval is stuck after about one day.
Is there a way to debug this module to see what's responsible?

Currently I'm using version 2.0.0 (according to package.json)
pm2 does not show any errors that would relate to this behaviour.

MM² doesn't start with netatmo module

Hi,

the new MM² works fine. After configuring my netatmo account, git clone your module and changing den config.js the mirror doesn't start anymore (no error, only a black screen). I have the same problem with the sonos module. In MMv1 sonos works fine.

Do you have an idea? I checked your instructions a few times. Everything looks ok.

Regards
Maurice

module not working for me

Hi all
I´m newbie, I´m trying to get running Netatmo module. What I´ve did:

-installed latest Magic Mirror
-installed latest upates and upgrades
-customized default modules
Until now everything OK

followed https://github.com/CFenner/MagicMirror-Netatmo-Module
-get from github
-registered new app on Netatmo API, get ClientID and Client secret
-sent POST request to Hurl.it, got valid response with “access_token” and “refresh_token”
-CTRL+C & CTRL+V entered Module section to .js including ID, Secret and Refresh_token

After run Magic mirror I´ve got black screen with yellow sign in top-right corner.
any idea, what´s wrong? or how to verify, settings?

thanks for help
Zdenek

Uncaught TypeError: Cannot read property of 'body' of undefined

MagicMirror v2.1.2
RPi 3 Linux 4.9.41-v7+ #1023 armv71 GNU/Linux

I confess to being a newbie but having spent a week or so attempting to investigate, trawling the web and following the code, I have been unable to make the Netatmo module of MagicMirror work. Thus I am seeking guidance...

So far I have;

  • created an app at dev.netatmo.com
  • verified that my access token is valid
  • successfully pulled raw data from the Netatmo API for my Weather Station (using Postman)
  • stripped out all other modules in my config,js
  • re-installed the Netamo module from the git

Upon running MagicMirror (pm2 start mm.sh) I see only a spinning circle where I expect to see the Netatmo data.

Running via "npm start dev" the console reports;

  _netatmo.js:114 error [object Object]
  q.min.js:1 Uncaught TypeError: Cannot read property 'body' of undefined
      at Class.renderAll (netatmo.js:105)
      at e (q.min.js:1)
      at h.promiseDispatch.j (q.min.js:1)
      at o.d.promiseDispatch (q.min.js:1)
      at q.min.js:1
      at b (q.min.js:1)
      at MessagePort.a (q.min.js:1)
renderAll @ netatmo.js:105
e @ q.min.js:1
h.promiseDispatch.j @ q.min.js:1
d.promiseDispatch @ q.min.js:1
(anonymous) @ q.min.js:1
b @ q.min.js:1
a @ q.min.js:1_

I have very little experience and am continuing to research and follow all of the components. In the meantime I would very much appreciate assistance in investigating.

Please advise if additional information is required or, indeed, if I am doing something stupid!

Many thanks,
Adrian Coleman

Select moduls and messuring sensor, How??

Can someone please make a example of where to put the moduleOrder and dataOrder code.

i have tried to do some in config.js but the MM wont approve the file.

                module: "netatmo",
                position: 'bottom_right', // the location where the module should be displayed
                config: {
	                clientId: 'xxxxxx', // your app id
	                clientSecret: 'xxxxx', // your app secret
	                refreshToken: 'xxxx' // your generated refresh token
                    moduleOrder: "Verksted"

design: 'bubbles' not showing + hideLoadTimer not working

Hello,

I am trying to use your module. I was configuring it and found this 2 parameters design and hideLoadTimer
I added in my config.js but nothing changes on ma MM screen.
here the config of my module

		{
			disabled: false,
			module: "netatmo",
			position: "top_right", // the location where the module should be displayed
			design: 'bubbles',
			header: "Température by Netatmo",
			hideLoadTimer: true,
			// classes: 'default everyone', 
			config: {
				clientId: "", // your app id
				clientSecret: "", // your app secret
				refreshToken: "", // your generated refresh token
				refreshInterval: "10",
				moduleOrder: ["Salon","Chambre"],
				dataOrder: ["Temperature","Noise","CO2","Humidity","Rain"]
			}

Data are showing properly
Could you help on it?

Thanks a lot

Galm

Temperature in Fahrenheit?

Hi. Love this module. I live in the US, any chance there is a way to have the temperature displayed in Fahrenheit? Perhaps an option in config to switch between Celcius and Fahrenheit. Thank you for your hard work.

Looking for includes.php in netatmo folder

Hi,
I'm getting a crash on initialisation saying
Warning: include(modules/netatmo/include.php): failed to open stream: No such file or directory in /Library/WebServer/Documents/MagicMirror3/controllers/modules.php on line 9 from controllers/modules.php

It seems it is looking for an include.php in the ../modules/netatmo directory, but that wasn't in the clone.

I did try adding an include.php with the contents:

<?php
return array(
        'js_files' => array(
                "netatmo.js"
        ),
        'css_files' => array(
                "netatmo.css"
        )
);
?>

didn't solve it.

It also seems to be looking for an elements.html file

disable battery status

hi,
is there a way to disable the battery status from the outdoor-module in the classic desgin? I've already changend "showBattery" to false in the netatmo.js file but its still there.

Netatmo > thermostat ?

Hello,

Is it possible to have the thermostat information and not the weather station?

Support for multiple Netatmo weather stations

Hi,

I have tried adding an additional variable for "device_id", to make it possible to add multiple Netatmo weather stations by adding multiple instances of the module in ~/MagicMirror/config/config.js

https://dev.netatmo.com/resources/technical/reference/weather/getstationsdata

I can see the device_id when accessing the Netatmo API (see link above) but I'm struggling a bit getting it to work in this module.

~/MagicMirror/config/config.js

{
        module: 'netatmo',
        position: 'bottom_left', // the location where the module should be displayed
        config: {
                clientId: '', // your app id
                clientSecret: '', // your app secret
                refreshToken: '', // your generated refresh token
                deviceId: '' // MAC-address of your device (weather station)
        }
},

I added device_id to the dataPayload variable and added deviceId as a new variable to the config part of the netatmo.js – but I'm stuck at how to make the call for station data ask for the device_id. What am I doing wrong? :)

~/MagicMirror/modules/netatmo/netatmo.js

dataPayload: 'access_token={0}&device_id={1}' // added device_id
 load: {
    token: function() {
      return Q($.ajax({
        type: 'POST',
        url: this.config.api.base + this.config.api.authEndpoint,
        data: this.config.api.authPayload.format(
            this.config.refreshToken,
            this.config.clientId,
            this.config.clientSecret,
            this.config.deviceId) // added deviceId
      }));
    },
    data: function(data) {
      // Log.info(this.name + " token loaded "+data.access_token);
      this.config.refreshToken = data.refresh_token;
      // call for station data
      return Q($.ajax({
        url: this.config.api.base + this.config.api.dataEndpoint,
        data: this.config.api.dataPayload.format(data.access_token) // how do I add deviceId here?
      }));
    }
  },

Thomas

align modules vertically

@jinjirosan:

Using the classic design, how can I place the squares vertically instead of horizontally?
This way they will be nicely outlined along the side of my mirror.

Add option to do this.

mmm-netatmo shows 'waiting circle' when one netatmo module is not reporting back

Hi Christopher,
I have the main Netatmo module, two indoor modules and one outdoor module. MMM-Netatmo works perfectly when all the netatmo's are reporting in.

If one or more modules are 'not connected' or 'out of range' (main module and indoor module or on the far edges of the house so sometmes they loose connection), mmm-Netatmo shows only the 'waiting circle' (doesn't display any of the working modules).

I don't mind a warning message for the out-of-range module and have the remaining modules display their stats.

Any suggestions on how to resolve?

refresh data

the module should be able to refresh it's data in a certain invervall.

Decimal place for rain-sensor

Hello,
is it possible, that the module shows the decimal place from the rain-sensor? Now, wehn it rains a little bit (e.g. 0,3mm) the module shows "Niederschlag 0" and not "Niederschlag 0.3". Can anyonw say me, where I can update the code, so that I can see the decimal place? Tahnk you very much!
Sorry for my bad english.

correct display of wind data

Hi

The data from the windsensor is not displayed at all. There is only a {1}. I think, that the problem is, that the wind data is either WIndAngle or WindStrength. There is no data called "Wind". I tried to change add WindAngle and WindStrength to netatmo.js and the names to de.json. But still nothing is displayed.

Where do I add new data in general?

Thank you. Michael

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.