track 10 seconds mp3

OK, I want to have a nice little utility that will reduce from 10 or so seconds of the song in the middle and add it to the front of the file of the song. the reason why I want it is because I want the quick little song before starting to listen to him. while I know if it's wrong and I have to press 'next song' button. now I usually listen to the song 30 seconds only to discover that the song is bad or I'm not in the mood for him.

If anyone knows of any program that does this?

or a command line utility that extracts the mp3s of mp3s? like this: extractMp3.exe - in .mp3 - out .mp3 - startPos-duration

I've been watching lame library. He has the ability to convert to wav. then I could handle wav files that has the relatively simple format. then I could convert wav to mp3 using the lame library. but it would be a lot of work. so is there an easier way?

I wrote it. It's here: PrependSongPreview

I intentionally waited months to iron out any bugs if there.

It works really nice and I can't imagine listening to songs with my MP3 without it.

Tags: SanDisk Sansa

Similar Questions

  • Glitch on last 15-20 seconds, mp3 playback onWMP-12

    I have a small problem when playing mp3 on my windows7 and wmp12. In the last 15 to 20 seconds of a song, it hangs a little and often skips to the next song. a mp3 cd will do as well as my files on the computer. A .wav file will not play all the way, no problem. I burned a cd of wave file in the files that were to jump into my wmp12 library and he also played. This system is 1 week old. All of the suggestions. Thanks, Max

    Hi Max,.

    We are pleased to know that the problem has been resolved by disabling the improvements. Do not hesitate to contact us, in the case where you face other problems in the future.

    Audio enhancements are plugins or codecs installed on the computer. They are used in support of play different kinds of audio files. Sometimes you may not be able to play a particular file, from where you can download the third-party codec, or the player. As well as the third-party player it would be some codecs or plugins that would be downloaded and installed on the computer.

    I hope this helps.

    Thank you and best regards,

     

    Srinivas R

    Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Restart after a few seconds MP3

    I have a site with a LOT of mp3 music clips short to play.
    What I've built currently is working perfectly on my desk,
    but when I play online, it glitches.
    I guess there is a problem with streaming somehow,
    but I don't know where to start to fix it.

    The seeds are:
    (1) a song begins to play, then a few seconds, he jumps and starts again then plays throughout.
    (2) sometimes if you click a second song, while the second song jumps (see Pépin #1), the first song begins to play too so they play both at the same time.

    This is in AS2, btw.
    The way it is currently under construction is that to create a sound object
    and use loadSound to load each external mp3 in this object.

    There is a button for each piece with a switch inside the key.
    The script to play the song is on each button.

    (3) I create the same sound object ("music") on each button.
    Wouldn't be better to create the sound object time on frame1 of the whole site
    and have all the songs that reference external .swfs this sound object existing?
    Is how important it?

    I'm ready to completely rebuild if anyone has a better structure for how to do this.

    You can also observe:
    (4) I also have a problem with the toggle button (glitch, but the music of fixation is more important).
    When you click on the second song, I can't figure out how to get the rocker on the first song
    to go back to it's usual State 'play '.

    Thank you.

    FIXED!

    I put the code that creates the sound object on the first image of the whole of the site.

    var music: Sound = new Sound();
    music.onLoad = function() {}

    Then, on each place of the site where I have a button to start the mp3, I have
    using loadSound in this object 'music' created in the beginning.

    No more skipping.
    No more double play.

  • I burned the music on a CD RW and when I put it in my CD player, it goes to the 1st track, start counting the seconds, but there is no sound.

    I made a music playlist and saved.  It was not the first time that I did.  I then burned this playlist to a CD RW.  When I put the CD in my CD drive, the display shows the track # and seconds count, but I have NO sound.  What I am doing wrong?

    Thank you.  Bebop_911

    Hello

    (1) windows operating system you are using?

    (2) what music player do you used to save the playlist?

    (3) the playlist saved in what format?

    (4) program which has been burning the CD from?

    (5) you have the sound on the computer?

    Suggestions for a question on the help forums

    http://support.Microsoft.com/kb/555375

    Response to us with information required for you help to solve the problem.

  • A custom stop time affects the total duration of a track?

    In iTunes 12.5.1.21, if I use Get Info/Options to put a checkmark in the option "stop time" and to reduce the time of track 10 seconds playlist that I burn on a CD will be shorter than 10 seconds? Thank you.

    Yes.

    TT2

  • synchronize an MP3 to another

    I want to copy songs from an mp3 player and put it on another using windows media player, but it wont even show that there are two mp3 players plugged in. is possible to do?

    Hi bigirimana Cassidy,.

    Can not synchronize two MP3 player via windows media player.

    Try the following steps to copy the file from an mp3 player to another in windows Explorer.

    Step: 1

    a. Select the files to be copied

    b. right-click on these files and click on copy

    c. then open the second mp3 player

    d. paste these files on the second mp3 player directly.

  • Current length of track using mm_renderer

    Hello

    IM writing my own MediaPlayer using the API of Client for the multimedia rendering engine. How can I implement a getDuration() method (which must returns the duration of the current track in seconds) using this API? Is it still possible? AFAIK the default MediaPlayer - bb/multimedia/MediaPlayer encapsulates the ROR, so there must be a way to achieve

    Thanks in advance

    Hello iksarp,

    You can make use of the mm-converter of event management new mechanism to achieve this. It is located in the header file: 'mm/renderer/events.h. ' You would have to wait for the events of mm-rendering engine and look in the Dictionary object that it returns for different events. Specifically, for the field "Duration", it is returned in milliseconds and I am pasting a few snippets below:

    
        // At first, set up everything for the mm-renderer context to run
        // The set up steps should be similar to the existing sample application (https://github.com/blackberry/NDK-Samples/blob/next/VideoPlayback/main.c) but WITHOUT THE BPS EVENT HANDLING for mm-renderer
        // That is, you DO NOT need to do handle BPS event handling if you do the following event handling with "mm/renderer/evenths.h"
    
        // Now, do the event handling
        int errorWait;
        const mmr_event_t* event;
    
        for (;;)  {
            errorWait = mmr_event_wait( mmr_context );
    
            if (errorWait != 0 ) {
                //TODO: Error handling
            }
            // now, get the actual event
            event = mmr_event_get( mmr_context);
    
            switch (event->type) {
            // TODO: Handle all other switch cases, for the event types
            case 6:
                //metadata
                printf("###### event->type = 6 = MMR_EVENT_METADATA\n");
    
                const char *duration = strm_dict_find_value( event->data, "md_title_duration");
                fprintf(stdout, "duration= %s\n", duration);
    
                break;
            } // switch
    
            fflush(stdout);
        } // for
    

    Essentially, for each event from mm-rendering engine, a set of attributes are exposed as elements of dictionary (in the 'data' field), to reflect the current state of the mm-engine rendering context (for example, read status, title, duration, etc.).

    What's new with Beta 3 and the documentation is still not published correctly. We apologize for this; I have raised this issue with the documentation teams and I'll try to get them to publish

    Hope this helps and please let us know if you need anything that anyone else.

    See you soon,.

    Rashid

  • Soundtrack message is missing when the track is selectable in app?

    I get this message that the soundtrack is "missing because it has been moved or deleted from the device", but this is and I bought the track a second time to be sure. Ugh. I just installed and spin 2.0.3. I also deleted from my phone and iPad and reinstalled and the issue remains the same on both devices. I can choose only the 10 titles provided by Adobe. It is personal and non-commercial, and I want a specific song for sentimental reasons. Help, please?

    Hey sherilynpage !

    Are you still facing this problem? Please, try to update your application and let me know. If the song is on your device through a cloud (Apple music, iCloud etc.) service then it will not show in the first Clip. If you have in iTunes locally on your device, it should work!

    Let me know

    -Kathleen

  • Point of the track is super slow when parsing

    Hi I have a little problem with the Track Motion function. Whenever I press the button 'Look forward', it starts monitoring, the eye in this case, but very very very slowly. I look at the various tutorials on youtube and all follow them pretty quickly. I am tracking 7 seconds of video, but it takes about an hour or two.

    Video: mp4. h.264 (Iphone 6 clip) of 1920 * 1080. However, I tried to restore to .avi or .wmw, but still too slow.

    My PC: Win 7 x 64, Intel i7 4970 K, 16 GB of RAM DDR3, Gtx 970

    Why is it so slow?

    Depends on your system and how you set up the tracker. A screenshot of your configuration of monitoring would be useful. A lot of noise, movements of camera, followed by the major areas, research areas, slow down all the follow-up.

  • onSoundComplete MP3 & quot; Reset & quot; question

    Hello. Any help is greatly appreciated. I worked hard to get this working by roaming the net forever, and it works well, except for a final touch.

    I have two MP3s that I played as background music on my site. They broadcast automatically at startup of the site, and it works. A play, when it's done, the second begins. Then it stops. I had a little problem with the second a restart (loop), so I added the last piece of code //my_sound.onSoundComplete = function () {my_sound.stop () / / to prevent that, and that works fine.}

    My problem is twofold. First, the stop button does not work at all. It does nothing (and it worked fine until I added this piece of code 'my_sound.stop'. If I remove this code, the stop button works again, but the second MP3 goes back into loop mode.) What I'm wanting to accomplish a simple code as possible, as both have MP3s playing one after the other and then stops. Of course the stop button would do it's thing, and with the Start button, I need, once the two MP3s were completed, to 'reset' so if you click on it after playing all MP3s, he will leave with the first MP3. At the present time, if the first MP3 plays and you click Start, it takes the first MP3 and if you hit the departure during the second MP3 playing, he starts the second MP3 (I like the way that it works.) but when they both end, and there is no music, if you click Start It only reads the second MP3, not the first. Make sense? Hopefully, I can be confusing. Here's the code. Thank you very much! :-)

    its code.
    var my_sound:Sound = new Sound();
    my_sound.loadSound ("Morningstar.mp3", true);
    my_sound.onSoundComplete = function () {}
    my_sound. Stop();
    my_sound.loadSound ("Limpid.mp3", true);
    my_sound. Start();
    my_sound.onSoundComplete = function () {my_sound.stop)
    };
    };

    code on Start button.
    on (release) {}
    my_sound. Start();
    }

    code on the stop button.
    on (release) {}
    my_sound. Stop();
    }

    Yes, it won't work because your sound continuously.

    Try:

  • The transaction is no longer active - Transaction has expired after 30 seconds

    We have an intermittent error here, and I'm a rookie. The error will cause a 500 sent to the client every 10-20 POSTS and only occurs under heavy load. Heavy load exceeds for the day, but he'll be back.

    My first suspicion was the app work transaction code and database performance problems. But the app is not transactional and database is fine. The firm (4) server nodes all the problems at equal rates, and other applications on the farm are very well, so it seems to be specific app rather than rooted in the State of the server or database.

    I watched the battery a little closer and it seems to be some kind of internal persistence problem, but a completely alien to me. We have no persistent store configured, so I don't know where to start on this puppy.

    EJB Exception occurred during invocation of the House: weblogic.ejb.container.internal.StatelessEJBLocalHomeImpl@d1e1f4 threw the exception: < 1.0.0 not fatal General error > org.apache.openjpa.persistence.PersistenceException: operation is not active - status: ' marked rollback. [Reason = weblogic.transaction.internal.TimedOutException: Transaction has expired after 30 seconds]
    BEA1-32AE928C966AC66F424D]'. No other JDBC access is allowed in this transaction.
    < 1.0.0 not fatal General error > org.apache.openjpa.persistence.PersistenceException: operation is not active - status: ' marked rollback. [Reason = weblogic.transaction.internal.TimedOutException: Transaction has expired after 30 seconds]
    BEA1-32AE928C966AC66F424D]'. No other JDBC access is allowed in this transaction.
    at org.apache.openjpa.jdbc.sql.DBDictionary.newStoreException(DBDictionary.java:3784)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:97)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:83)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:59)
    at org.apache.openjpa.jdbc.kernel.SelectResultObjectProvider.handleCheckedException(SelectResultObjectProvider.java:155)
    to org.apache.openjpa.lib.rop.EagerResultList. < init > (EagerResultList.java:40)
    at org.apache.openjpa.kernel.QueryImpl.toResult(QueryImpl.java:1219)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:987)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:839)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:770)
    at kodo.kernel.KodoQuery.execute(KodoQuery.java:47)
    at org.apache.openjpa.kernel.DelegatingQuery.execute(DelegatingQuery.java:525)
    at org.apache.openjpa.persistence.QueryImpl.execute(QueryImpl.java:229)
    at org.apache.openjpa.persistence.QueryImpl.getResultList(QueryImpl.java:269)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactionsExcludingApplication(ApproveApplicationHelper.java:167)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactions(ApproveApplicationHelper.java:129)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.stageAction(ApproveApplicationHelper.java:74)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean.performAction(ApproveApplicationSessionBean.java:348)
    at sun.reflect.GeneratedMethodAccessor2150.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:281)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at weblogic.ejb.container.injection.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:68)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)
    to $Proxy365.performAction (Unknown Source)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.performAction(ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.java:148)
    at com.company.buapp.si.ApplicationWS.performAction(ApplicationWS.java:114)
    at sun.reflect.GeneratedMethodAccessor2149.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:50)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:42)
    at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:247)
    at com.sun.xml.ws.server.sei.SEIInvokerPipe.process(SEIInvokerPipe.java:97)
    at weblogic.wsee.jaxws.MonitoringPipe.process(MonitoringPipe.java:98)
    at com.sun.xml.ws.protocol.soap.ServerMUPipe.process(ServerMUPipe.java:62)
    to com.sun.xml.ws.server.WSEndpointImpl$ 1.process(WSEndpointImpl.java:139)
    to com.sun.xml.ws.transport.http.HttpAdapter$ HttpToolkit.handle (HttpAdapter.java:153)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:235)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:97)
    at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:36)
    at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:218)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3395)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs (unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    java.sql.SQLException: the operation is not active - status: ' marked rollback. [Reason = weblogic.transaction.internal.TimedOutException: Transaction has expired after 30 seconds]
    BEA1-32AE928C966AC66F424D]'. No other JDBC access is allowed in this transaction.
    at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:178)
    at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:188)
    at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:57)
    at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.next (unknown Source)
    at org.apache.openjpa.lib.jdbc.DelegatingResultSet.next(DelegatingResultSet.java:106)
    at org.apache.openjpa.jdbc.sql.ResultSetResult.nextInternal(ResultSetResult.java:210)
    to org.apache.openjpa.jdbc.sql.SelectImpl$ SelectResult.nextInternal (SelectImpl.java:2209)
    at org.apache.openjpa.jdbc.sql.AbstractResult.next(AbstractResult.java:168)
    at org.apache.openjpa.jdbc.kernel.SelectResultObjectProvider.next(SelectResultObjectProvider.java:99)
    to org.apache.openjpa.lib.rop.EagerResultList. < init > (EagerResultList.java:35)
    at org.apache.openjpa.kernel.QueryImpl.toResult(QueryImpl.java:1219)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:987)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:839)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:770)
    at kodo.kernel.KodoQuery.execute(KodoQuery.java:47)
    at org.apache.openjpa.kernel.DelegatingQuery.execute(DelegatingQuery.java:525)
    at org.apache.openjpa.persistence.QueryImpl.execute(QueryImpl.java:229)
    at org.apache.openjpa.persistence.QueryImpl.getResultList(QueryImpl.java:269)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactionsExcludingApplication(ApproveApplicationHelper.java:167)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactions(ApproveApplicationHelper.java:129)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.stageAction(ApproveApplicationHelper.java:74)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean.performAction(ApproveApplicationSessionBean.java:348)
    at sun.reflect.GeneratedMethodAccessor2150.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:281)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at weblogic.ejb.container.injection.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:68)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)
    to $Proxy365.performAction (Unknown Source)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.performAction(ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.java:148)
    at com.company.buapp.si.ApplicationWS.performAction(ApplicationWS.java:114)
    at sun.reflect.GeneratedMethodAccessor2149.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:50)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:42)
    at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:247)
    at com.sun.xml.ws.server.sei.SEIInvokerPipe.process(SEIInvokerPipe.java:97)
    at weblogic.wsee.jaxws.MonitoringPipe.process(MonitoringPipe.java:98)
    at com.sun.xml.ws.protocol.soap.ServerMUPipe.process(ServerMUPipe.java:62)
    to com.sun.xml.ws.server.WSEndpointImpl$ 1.process(WSEndpointImpl.java:139)
    to com.sun.xml.ws.transport.http.HttpAdapter$ HttpToolkit.handle (HttpAdapter.java:153)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:235)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:97)
    at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:36)
    at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:218)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3395)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs (unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

    It was actually my first conclusion as well. But when I went to the Source of data for this connection, I found that it is a driver not transactional. It's what made me go back and give the track a second look. I don't see any reference to the Source of the data in question. It is OpenJPA tips and tricks Session persistence.

    Non - XA drivers can still participate in an XA transaction through a variety of options for a JDBC data source - for example, "1PC" and "WURA" marked on the console. (If you want to understand the search terms "JTS" or "WURA" in the edocs JDBC).

    You seem to suggest that perhaps the adjustment can be made in a doc config, possibly of the application itself, right?

    Right. EJB have a transaction-timeout attribute.

    Rather than put in the console.

    WebLogic is a domain wide transaction-timeout by default that can be set on the console, but I tend to not recommend to use it. In addition, there is what is called a 'plan of deployment', which can be used to replace some of the common attributes EJB through the configuration, but I know personally use.

    But is not steam setting, if we use a nonXA driver?

    Laughing out loud

    I wonder if this thing could not tell me that he has to wait on the next available persistence subsystem to store simple session data?

    Sometimes, the problem is that there are applications app more complex/superiors of other periodicals. Sometimes the system is simply overloaded and takes 30 seconds to honour a request that can take normally 10 seconds.

    This other application is all about persistence. What happens if app2 suck a dry persistence subsystem and app 1 expected just to store session data?

    Could be.

    If the nonXA thing really doesn't kill not the quick workaround solution timeout, how could I-health check of the persistence subsystem?

    Don't know. At a wild guess I check for CPU 100% on all the parties concerned is used and review database statistics.

  • No control with Audio mixing - HELP!

    I am a novice and do movies famly. I have CS3 and use Premier Pro to a 6th grade graduation neices.

    I did all the splicing, transitions, titles, etc. and have one last step to add the overlay background music to tie together. I followed the instructions to use the Audio Mixer Panel, add a second sound track from a .mp3 file and try to change the volume in this unique way. It won't work. Can I change both volume of titles 1 and 2 while listening, but he will not save these changes. The recorded change is full volume in two ways.

    Instructions to speak with key points. I can go into the rails and place the key points, but none are defined automatically as described. When I put then, I can't edit them. I can't even take a stretch between the key points and set all settings.

    I have searched for the sections of the forum and support here and have found no help.

    My version of CS3 or the part of the Audio Mixer Panel does not work, or somewhere, I have disabled something and don't know how to get it.

    Help, please.

    Read modes of automation (touch, writing, etc.):

    http://livedocs.Adobe.com/en_US/PremierePro/3.0/WS95755873-1FF3-4970-B173-0C76D3382254.htm l

    If does not, mode that you use?

  • Photos closes unexpectedly

    Opens the photos and then crashes, report below the quantity.  I have fixed the photo library, started without danger, downloaded the new OS X.  Configure another account of Photo that doesn't crash.  Thanks in advance for any advice.  Jim

    Process: Photos [394]

    Path: /Applications/Photos.app/Contents/MacOS/Photos

    ID: com.apple.Photos

    Version: 1.5 (370.42.0)

    Generation information: PhotoApp-370042000000000 ~ 1

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Officials: Photos [394]

    User ID: 501

    Date/time: 2016-09-22 14:20:40.174-0400

    OS version: Mac OS X 10.11.6 (15-1004)

    Report Version: 11

    Anonymous UUID: E93E9457-BC44-6358-241F-C5E9D72068CA

    Time since started awake: 330 seconds

    Integrity of system protection: enabled

    Crashed thread: 1 dispatch queue: com.apple.faces.GroupsManagerQueue

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    Saving photos of the Foundation:

    2016-09-22 14:20:28.970: impossible to replay changes to help persistent marker. Falling back to playback of all. (__48-[RKFaceChangesHandler startListeningForChanges] _block_invoke:118)

    with exception of type std::runtime_error eception termination: the size of the distance matrix is not correct

    Abort() called

    Global tracking buffer (second chronological reverse):

    31.755450 PAImaging 0x00000001118a160d previewMaker - versionId (reduced) image load = 2843, type = 2, subtype = 20, specialType = 0

    Thread 0: Dispatch queue: com.apple.main - wire

    0 libsystem_kernel.dylib 0x0000000117d48f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x0000000117d483b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00000001152131c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x000000011521268c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x0000000115211ed8 CFRunLoopRunSpecific + 296

    5 com.apple.HIToolbox 0x000000011d5cc935 RunCurrentEventLoopInMode + 235

    6 com.apple.HIToolbox 0x000000011d5cc76f ReceiveNextEventCommon + 432

    7 com.apple.HIToolbox 0x000000011d625606 AcquireNextEventInMode + 54

    8 com.apple.HIToolbox 0x000000011d622f94 IsUserStillTracking (MenuSelectData *, unsigned char *) + 173

    9 com.apple.HIToolbox 0x000000011d74a427 TrackMenuCommon (MenuSelectData &, unsigned char *, SelectionData *, MenuResult *, MenuResult *) + 1719

    10 com.apple.HIToolbox 0x000000011d60dad6 PopUpMenuSelectCore (MenuData *, Point, double, decimal, unsigned short, unsigned int const Rect *, unsigned short, unsigned, int const Rect *, const Rect *, const __CFDictionary *, __CFString const *, OpaqueMenuRef *, unsigned short *) + 1623

    11 com.apple.HIToolbox 0x000000011d60cc5c _HandlePopUpMenuSelection8 (OpaqueMenuRef *, OpaqueEventRef *, unsigned int, tip, unsigned short, unsigned int const Rect *, unsignedShort, const * rect, const Rect *, const __CFDictionary *, __CFString const *, OpaqueMenuRef *, unsigned short *) + 610

    12 com.apple.HIToolbox 0x000000011d60c853 _HandlePopUpMenuSelectionWithDictionary + 287

    13 com.apple.AppKit 0x0000000113fe4c6c _NSSLMPopUpCarbonMenu3 + 6168

    14 com.apple.AppKit 0x0000000113fe3442 _NSPopUpCarbonMenu3 + 153

    15 com.apple.AppKit 0x0000000113fe339a-[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 356

    16 com.apple.AppKit 0x00000001140660df-[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 559

    17 com.apple.AppKit 0x0000000113f6aae8-[NSControl mouseDown:] + 669

    18 com.apple.AppKit 0x00000001144bf3c9-[NSWindow _handleMouseDownEvent:isDelayedEvent:] + 6322

    19 com.apple.AppKit 0x00000001144c03ad-[NSWindow _reallySendEvent:isDelayedEvent:] + 212

    20 com.apple.AppKit 0x0000000113eff539-[NSWindow sendEvent:] + 517

    21 com.apple.AppKit 0x0000000113e7fa38-[NSApplication sendEvent:] + 2540

    22 com.apple.AppKit 0x0000000113ce6df2-[NSApplication run] + 796

    23 com.apple.AppKit 0x0000000113cb0368 NSApplicationMain + 1176

    24 libdyld.dylib 0x0000000117b735ad start + 1

    Thread 1 crashed: Dispatch queue: com.apple.faces.GroupsManagerQueue

    0 libsystem_kernel.dylib 0x0000000117d4ef06 __pthread_kill + 10

    1 libsystem_pthread.dylib 0x0000000117ec74ec pthread_kill + 90

    2 libsystem_c.dylib 0x0000000117c456df demolition + 129

    3 libc ++ abi.dylib 0x00000001179f7c11 abort_message + 257

    4 libc ++ abi.dylib 0x0000000117a1ddff default_terminate_handler() + 243

    libobjc 5. A.dylib 0x00000001138604a6 _objc_terminate() + 124

    6 libc ++ abi.dylib 0x0000000117a1b00e std::__terminate (void (*) ()) + 8

    7 libc ++ abi.dylib 0x0000000117a1b083 std::terminate() + 51

    8 libdispatch.dylib 0x0000000117b1b41f _dispatch_client_callout + 28

    libdispatch.dylib 9 0x0000000117b2e1f9 _dispatch_after_timer_callback + 77

    10 libdispatch.dylib 0x0000000117b1b40b _dispatch_client_callout + 8

    11 libdispatch.dylib 0x0000000117b2b675 _dispatch_source_latch_and_call + 2235

    12 libdispatch.dylib 0x0000000117b1fa83 _dispatch_source_invoke + 983

    13 libdispatch.dylib 0x0000000117b20200 _dispatch_queue_drain + 1207

    14 libdispatch.dylib 0x0000000117b26707 _dispatch_queue_invoke + 549

    15 libdispatch.dylib 0x0000000117b1ed53 _dispatch_root_queue_drain + 538

    16 0x0000000117b1eb00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    17 libsystem_pthread.dylib 0x0000000117ec44de _pthread_wqthread + 1129

    18 libsystem_pthread.dylib 0x0000000117ec2341 start_wqthread + 13

    Is there a reason you do not want to update the current software - OS X Sierra 10.12 and Photos 2.0? Who should settle things and is probably a good thing - if you don't want to put the hold down the key weight while throwing pictures and create a new empty library and import pictures inot it works?

    LN

  • Mail crashes at launch after installing the new OS (10.11.5)

    Mail blocks less than a second launch. I had upgraded to El Capitan in early 2016, and all worked very well. Then my hard drive crashed, I've swapped and performed a clean installation of El Capitan (as before). The first launch, email accounts and e-mails from the time any machine, after completion, mail crashes and freezes constantly within a fraction of a second. I use no Add-ons with the mail. I know that this question and reports of similar incidents have been asked here before, but none of the suggested corrective work (e.g. removal of envelope files, reindexing, reconstruction, disabling problematic accounts, disabling wi - fi). No solution that requires the launch of Mail what either disable or change preferences will probably help as I'm even not at this stage and mail cannot be started in safe mode. I can even reinstalled El Capitan to try to not import the email accounts of time machine, but the Mail does not provide an option to do it manually. The only account that seems to be listed in the accident report is Gmail, and I could even do without Gmail (which I use only for services related to Google and I could use the version of webmail of it).

    Can anyone advise me on what seems to be the problem? All suggestions and info would be very appreciated.

    MacBook Pro 13 ", mid-2012, 2.5 GHz, Intel Core i5

    Process: Mail [1347]

    Path: /Applications/Mail.app/Contents/MacOS/Mail

    ID: com.apple.mail

    Version: 9.3 (3124)

    Generation information: Mail-3124000000000000 ~ 2

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Manager: Mail [1347]

    User ID: 501

    Date/time: 09:15:23.056 2016-06-29 + 0200

    OS version: Mac OS X 10.11.5 (15F34)

    Report Version: 11

    Anonymous UUID: 725E4137-C9BE-2B21-93F8-4130815C57B9

    Sleep/wake UUID: 46D4487E-C285-4B3D-BA24-CDE784032546

    Time since started awake: 3700 seconds

    Wake time: 19 seconds

    Integrity of system protection: enabled

    Crashed Thread: the queue on the expedition 19: NSOperationQueue 0x7fe38d019ba0: NSOperation 0x7fe38d00cb20 (QOS: LEGACY)

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    Reason for termination due to an untrapped exception "NSInvalidArgumentException" app,: ' + entityForName: no one is not a legal NSPersistentStoreCoordinator for entity name search ' Action "

    Abort() called

    ending with an exception uncaught of print type

    Specific application Backtrace 1:

    0 CoreFoundation 0x00007fff8fe004f2 __exceptionPreprocess + 178

    1 libobjc. A.dylib 0x00007fff8c9e673c objc_exception_throw + 48

    2 CoreData 0x00007fff8be6a81b + [NSEntityDescription entityForName:inManagedObjectContext:] + 251

    3 CoreData 0x00007fff8be6be39-[NSFetchRequest (_NSInternalMethods) _resolveEntityWithContext:] + 73

    4 CoreData 0x00007fff8be6ab99-[NSManagedObjectContext executeFetchRequest:error:] + 153

    5 0x00007fff8d0a2949 __47-[MSExternalUpdatesManager processLocalActions] _block_invoke + 344 MailService

    6 Foundation 0x00007fff8b9b28d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    7 Foundation 0x00007fff8b9b2595-[major NSBlockOperation] + 100

    8 Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    Foundation 9 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    10 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    11 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    12 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    13 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    14 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    15 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    16 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Global tracking buffer (second chronological reverse):

    1.114742 CFNetwork 0x00007fff91cb83cb TCP 0x7fe38ce22070 SSL Handshake Conn MADE

    1.278106 CFNetwork 0x00007fff91cb83cb TCP 0x7fe38cf45210 SSL Handshake Conn MADE

    1.570938 SSL handshake at the start of CFNetwork 0x00007fff91cb82a7 TCP Conn 0x7fe38ce22070

    1.571204 all 0x00007fff91cb6c71 TCP Conn 0x7fe38ce22070 CFNetwork. FD: 84, err: 0

    1.571276 event TCP Conn 0x7fe38ce22070 CFNetwork 0x00007fff91d4554b 1. Err: 0

    1.589958 CFNetwork TCP Conn 0x7fe38ce22070 0x00007fff91cb5f43 started

    1.595389 SSL handshake at the start of CFNetwork 0x00007fff91cb82a7 TCP Conn 0x7fe38cf45210

    1.599440 all 0x00007fff91cb6c71 TCP Conn 0x7fe38cf45210 CFNetwork. FD: 78, err: 0

    1.599650 event TCP Conn 0x7fe38cf45210 CFNetwork 0x00007fff91d4554b 1. Err: 0

    1.844070 CFNetwork TCP Conn 0x7fe38cf45210 0x00007fff91cb5f43 started

    2.223520 CFNetwork 0x00007fff91cb83cb TCP 0x7fe38c9d11a0 SSL Handshake Conn MADE

    2.550743 CFNetwork 0x00007fff91cb83cb TCP 0x7fe38ca5eed0 SSL Handshake Conn MADE

    2.558227 CFNetwork 0x00007fff91cb83cb TCP 0x7fe38a7c65f0 SSL Handshake Conn MADE

    2.890982 SSL handshake at the start of CFNetwork 0x00007fff91cb82a7 TCP Conn 0x7fe38c9d11a0

    3.051035 SSL handshake at the start of CFNetwork 0x00007fff91cb82a7 TCP Conn 0x7fe38a7c65f0

    3.052524 all 0x00007fff91cb6c71 TCP Conn 0x7fe38c9d11a0 CFNetwork. FD: 33, err: 0

    3.052524 event TCP Conn 0x7fe38c9d11a0 CFNetwork 0x00007fff91d4554b 1. Err: 0

    3.052688 all 0x00007fff91cb6c71 TCP Conn 0x7fe38a7c65f0 CFNetwork. FD: 31, err: 0

    3.052688 event TCP Conn 0x7fe38a7c65f0 CFNetwork 0x00007fff91d4554b 1. Err: 0

    3.058593 SSL handshake at the start of CFNetwork 0x00007fff91cb82a7 TCP Conn 0x7fe38ca5eed0

    3.106435 all 0x00007fff91cb6c71 TCP Conn 0x7fe38ca5eed0 CFNetwork. FD: 29, err: 0

    3.106435 event TCP Conn 0x7fe38ca5eed0 CFNetwork 0x00007fff91d4554b 1. Err: 0

    3.161058 CFNetwork TCP Conn 0x7fe38a7c65f0 0x00007fff91cb5f43 started

    3.183095 CFNetwork TCP Conn 0x7fe38c9d11a0 0x00007fff91cb5f43 started

    3.204129 CFNetwork TCP Conn 0x7fe38ca5eed0 0x00007fff91cb5f43 started

    Thread 0: Dispatch queue: com.apple.main - wire

    0 libsystem_kernel.dylib 0x00007fff90999f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff909993b3 mach_msg + 55

    2 libsystem_kernel.dylib 0x00007fff90994635 semaphore_destroy + 88

    3 libdispatch.dylib 0x00007fff8cef8f53 _dispatch_semaphore_dispose + 40

    4 libdispatch.dylib 0x00007fff8cef138a _dispatch_dispose + 35

    5 libdispatch.dylib 0x00007fff8cef1342-[OS_dispatch_object _xref_dispose] + 48

    6 libxpc.dylib 0x00007fff8c1bebc3 xpc_connection_send_message_with_reply_sync + 244

    7 com.apple.LaunchServices 0x00007fff89109e5b _LSSetApplicationInformation + 270

    8 com.apple.LaunchServices 0x00007fff8911b2de _LSSetApplicationInformationItem + 98

    9 com.apple.mail 0 x 0000000100674318 0x1005e8000 + 574232

    10 com.apple.Foundation 0x00007fff8b9e1fde __NSThreadPerformPerform + 279

    11 com.apple.CoreFoundation 0x00007fff8fd95881 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17

    12 com.apple.CoreFoundation 0x00007fff8fd74fbc __CFRunLoopDoSources0 + 556

    13 com.apple.CoreFoundation 0x00007fff8fd744df __CFRunLoopRun + 927

    14 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    15 com.apple.HIToolbox 0x00007fff984ae935 RunCurrentEventLoopInMode + 235

    16 com.apple.HIToolbox 0x00007fff984ae76f ReceiveNextEventCommon + 432

    17 com.apple.HIToolbox 0x00007fff984ae5af _BlockUntilNextEventMatchingListInModeWithFilter + 71

    18 com.apple.AppKit 0x00007fff84fc5df6 _DPSNextEvent + 1067

    19 com.apple.AppKit 0x00007fff84fc5226-[NSApplication _nextEventMatchingEventMask:untilDate:inMode: dequeue:] + 454

    20 com.apple.AppKit 0x00007fff84fb9d80-[NSApplication run] + 682

    21 com.apple.AppKit 0x00007fff84f83368 NSApplicationMain + 1176

    22 libdyld.dylib 0x00007fff8a6b85ad start + 1

    Thread 1: dispatch queue: queue IMAPNetworkTaskHandler: NSOperation 0x7fe38a65d2e0 (QOS: UTILITY)

    0 libsystem_coretls.dylib 0x00007fff94b89e31 SSLComputeMac + 1239

    1 libsystem_coretls.dylib 0x00007fff94b8a560 SSLVerifyMac + 79

    2 libsystem_coretls.dylib 0x00007fff94b8a4c3 SSLDecryptRecord + 770

    3 libsystem_coretls.dylib 0x00007fff94b8acc4 tls_record_decrypt + 383

    4 com.apple.security 0x00007fff98d854e5 SSLRecordReadInternal + 390

    5 com.apple.security 0x00007fff98d4fc5b SSLReadRecord + 20

    6 com.apple.security 0x00007fff98d532c9 SSLRead + 352

    7 com.apple.CFNetwork 0x00007fff91d48349 SocketStream::securityRead_NoLock (unsigned char *, long, unsigned char *, unsigned char *) + 105

    8 com.apple.CFNetwork 0x00007fff91d481b6 SocketStream::securityBufferedRead_NoLock() + 208

    com.apple.CFNetwork 9 0x00007fff91cb9418 SocketStream::socketCallbackReadLocked(SocketStreamSignalHolder*) + 140

    10 com.apple.CFNetwork 0x00007fff91cb7b07 SocketStream::socketCallback (__CFSocket *, unsigned long, __CFData const *, const void *) + 183

    11 com.apple.CFNetwork 0x00007fff91cb7a14 SocketStream::_SocketCallBack_stream (__CFSocket *, unsigned long __CFData const *, const void *, void *) + 70

    12 com.apple.CoreFoundation 0x00007fff8fdb4514 __CFSocketPerformV0 + 996

    13 com.apple.CoreFoundation 0x00007fff8fd95881 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17

    14 com.apple.CoreFoundation 0x00007fff8fd74fbc __CFRunLoopDoSources0 + 556

    15 com.apple.CoreFoundation 0x00007fff8fd744df __CFRunLoopRun + 927

    16 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    17 com.apple.Foundation 0x00007fff8b98fed9-[NSRunLoop (NSRunLoop) runMode:beforeDate:] + 270

    18 com.apple.MailCore 0x00007fff93a6f8cb-[torque readBytes:maxLength:error:] + 876

    19 com.apple.MailCore 0x00007fff939ec226-[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 126

    20 com.apple.MailCore 0x00007fff939eba81-[MCConnection _fillBuffer:] + 347

    21 com.apple.MailCore 0x00007fff939eb6e2-[MCConnection _readLineIntoData:error:] + 216

    22 com.apple.IMAP 0x00007fff8aabd59e-[IMAPConnection _readLineIntoData:error:] + 54

    23 com.apple.IMAP 0x00007fff8aac800c-[IMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    com.apple.IMAP 24 0x00007fff8aaf5c6f + [IMAPResponse newIMAPResponseWithConnection:error:] + 101

    25 com.apple.IMAP 0x00007fff8aabd6d1-[IMAPConnection _copyNextServerResponse:fetchResponseLog:] + 49

    26 com.apple.IMAP 0x00007fff8aabd955-[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 312

    27 com.apple.IMAP 0x00007fff8aac5afe-[IMAPConnection _responseFromSendingCommand:receivedExists:] + 1493

    28 com.apple.IMAP 0x00007fff8aabc6b9-[IMAPConnection executeClientCommand:] + 60

    29 com.apple.IMAP 0x00007fff8aabc52f-[IMAPConnection prepareAndExecuteCommand:] + 220

    30 com.apple.IMAP 0x00007fff8aaf97f9-[IMAPServerInterface executeClientCommand:] + 1144

    31 com.apple.IMAP 0x00007fff8aab925a-[IMAPCommandPipeline failureResponsesFromSendingCommandsToServer:responseHandler:highPriority:] + 256

    32 com.apple.IMAP 0x00007fff8aafb223-[major IMAPSyncBodiesOperation] + 1264

    33 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    34 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    35 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    36 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    37 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    38 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    39 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    40 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    41 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 2: Dispatch queue: com.apple.libdispatch - Manager

    0 libsystem_kernel.dylib 0x00007fff909a0efa kevent_qos + 10

    1 libdispatch.dylib 0x00007fff8cef5165 _dispatch_mgr_invoke + 216

    2 libdispatch.dylib 0x00007fff8cef4dcd _dispatch_mgr_thread + 52

    Thread 3: Dispatch queue: MCTaskManager utilityQueue: NSOperation 0x7fe38cf3f180 (QOS: UTILITY)

    0 libsystem_platform.dylib 0x00007fff929b85a7 _platform_memmove$ OPTION$ Nehalem + 71

    1 com.apple.CFNetwork 0x00007fff91d56241 SocketStream::bufferedRead_NoLock (unsigned char *, long) + 85

    2 com.apple.CFNetwork 0x00007fff91d55e4a SocketStream::read (__CFReadStream *, unsigned char *, long, CFStreamError *, unsigned char *) + 894

    3 com.apple.CoreFoundation 0x00007fff8fd6b9c5 CFReadStreamRead + 389

    4 com.apple.MailCore 0x00007fff93a6fa54-[torque readBytes:maxLength:error:] + 1269

    5 com.apple.MailCore 0x00007fff939ec226-[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 126

    6 com.apple.MailCore 0x00007fff939eba81-[MCConnection _fillBuffer:] + 347

    7 com.apple.MailCore 0x00007fff939eb6e2-[MCConnection _readLineIntoData:error:] + 216

    8 com.apple.IMAP 0x00007fff8aabd59e-[IMAPConnection _readLineIntoData:error:] + 54

    9 com.apple.IMAP 0x00007fff8aac800c-[IMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    10 com.apple.IMAP 0x00007fff8aaf5c6f + [IMAPResponse newIMAPResponseWithConnection:error:] + 101

    11 com.apple.IMAP 0x00007fff8aabd6d1-[IMAPConnection _copyNextServerResponse:fetchResponseLog:] + 49

    12 com.apple.IMAP 0x00007fff8aabd955-[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 312

    13 com.apple.IMAP 0x00007fff8aac5afe-[IMAPConnection _responseFromSendingCommand:receivedExists:] + 1493

    14 com.apple.IMAP 0x00007fff8aac18f6-[IMAPConnection executeLogin:] + 248

    15 com.apple.IMAP 0x00007fff8aabc52f-[IMAPConnection prepareAndExecuteCommand:] + 220

    16 com.apple.IMAP 0x00007fff8aac1524-[IMAPConnection _authenticateWithPlainTextSchemes] + 879

    17 com.apple.MailCore 0x00007fff939ea935-[MCConnection authenticate] + 884

    18 com.apple.IMAP 0x00007fff8aabf996-[IMAPConnection authenticate] + 64

    19 com.apple.Mail.framework 0x00007fff8b3b2df9-[MFIMAPAccount connectAndAuthenticate:] + 930

    20 com.apple.IMAP 0x00007fff8ab01376-[IMAPTaskManager _createNewConnection] + 96

    21 com.apple.IMAP 0x00007fff8ab012b6 __71-[IMAPTaskManager _createNewConnectionSynchronously:isFirstConnection:] + 31 _block_invoke

    22 com.apple.Foundation 0x00007fff8b9b28d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    23 com.apple.Foundation 0x00007fff8b9b2595-[major NSBlockOperation] + 100

    com.apple.Foundation 24 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    25 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    26 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    27 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    28 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    29 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    30 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    31 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    32 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 4: Dispatch queue: queue MCTaskHandler: NSOperation 0x7fe38cd611f0 (QOS: UTILITY)

    0 com.apple.Mail.framework 0x00007fff8b3d2c6c MFLibraryFlagsForMessage + 1

    1 com.apple.Mail.framework 0x00007fff8b413e15-[_MFDataCollector setData:] + 431

    com.apple.Mail.framework 2 0x00007fff8b4012c8 + [MFLibrary setData:forMessage:isPartial:hasCompleteText:] + 134

    com.apple.Mail.framework 3 0x00007fff8b401231 + [MFLibrary setData:forMessage:isPartial:] + 63

    4 com.apple.IMAP 0x00007fff8aae14ca-[IMAPMessageDownload collectDataAndWriteToDisk:] + 2537

    5 com.apple.IMAP 0x00007fff8aaf018d-[major IMAPPersistBodiesOperation] + 804

    6 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    7 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    8 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    libdispatch.dylib 9 0x00007fff8cef403b _dispatch_queue_drain + 754

    10 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    11 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    12 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    13 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    14 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Wire 5:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 6: Dispatch queue: queue IMAPNetworkTaskHandler: NSOperation 0x7fe38c8099c0 (QOS: UTILITY)

    0 com.apple.CoreFoundation 0x00007fff8febf7ce DYLD STUB$ $objc_assign_strongCast + 0

    1 com.apple.CoreFoundation 0x00007fff8fd69f3b-[__NSDictionaryM copyWithZone:] + 283

    libobjc 2. A.dylib 0x00007fff8c9e5a6c + 39 objc_setProperty_nonatomic_copy

    3 com.apple.IMAP 0x00007fff8aaecdff-[IMAPParseContext _parseStatusResponse] + 1124

    4 com.apple.IMAP 0x00007fff8aae8549-[IMAPParseContext _createResponseUsingMask:] + 1091

    5 com.apple.IMAP 0x00007fff8aae80f9-[IMAPParseContext _createResponseWithoutTag:] + 268

    6 com.apple.IMAP 0x00007fff8aae7e6c-[IMAPParseContext parseIntoResponse] + 130

    7 com.apple.IMAP 0x00007fff8aaf5ce4 + [IMAPResponse newIMAPResponseWithConnection:error:] + 218

    8 com.apple.IMAP 0x00007fff8aabd6d1-[IMAPConnection _copyNextServerResponse:fetchResponseLog:] + 49

    9 com.apple.IMAP 0x00007fff8aabd955-[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 312

    com.apple.IMAP 10 0x00007fff8aac5afe-[IMAPConnection _responseFromSendingCommand:receivedExists:] + 1493

    11 com.apple.IMAP 0x00007fff8aac3589-[IMAPConnection executeAggregateStatus:] + 375

    12 com.apple.IMAP 0x00007fff8aabc52f-[IMAPConnection prepareAndExecuteCommand:] + 220

    13 com.apple.IMAP 0x00007fff8aaf97f9-[IMAPServerInterface executeClientCommand:] + 1144

    14 com.apple.IMAP 0x00007fff8aacedcb-[major IMAPFetchMailboxStatusOperation] + 796

    15 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    16 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    17 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    18 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    19 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    20 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    21 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    22 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    23 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 7:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 8:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Wire 9:-queue [MFIMAPAccount _synchronizeMailboxListDuringMailCheck] sent: NSOperationQueue 0x7fe38ca13ff0: NSOperation 0x7fe38a61a8b0 (QOS: UTILITY)

    0 libsystem_kernel.dylib 0x00007fff9099fdb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff99527728 _pthread_cond_wait + 767

    2 com.apple.Foundation 0x00007fff8b9a0fc8-[NSCondition waiting] + 240

    3 com.apple.MailCore 0x00007fff93a740c5-[MCTask waitUntilFinished] + 97

    4 com.apple.IMAP 0x00007fff8ab02cf2-[IMAPTaskManager _doCommandBlockForMailbox:block:async:ifSelected:priority:description:] + 1533

    5 com.apple.IMAP 0x00007fff8ab026d2-[IMAPTaskManager doCommandBlockForMailbox: synchronous mode: priority: description: block:] + 109

    6 com.apple.IMAP 0x00007fff8ab0538c-[IMAPTaskManager subscribedListingForMailbox:options:listingInfo:] + 216

    7 com.apple.Mail.framework 0x00007fff8b3b7602-[MFIMAPAccount _listingForMailbox:listAllChildren:onlySubscribed:highPriority:] + 573

    8 com.apple.Mail.framework 0x00007fff8b3b85e9-[MFIMAPAccount _listingForMailbox:listAllChildren:highPriority:] + 104

    9 com.apple.Mail.framework 0x00007fff8b3b6751-[MFIMAPAccount _synchronizeMailboxListHighPriority:] + 71

    com.apple.Mail.framework 10 0x00007fff8b3b7375-[MFIMAPAccount _synchronizeMailboxListDuringMailCheck] + 310

    11 com.apple.CoreFoundation 0x00007fff8fd71a6c __invoking___ + 140

    12 com.apple.CoreFoundation 0x00007fff8fd718fe-[French invoke] + 286

    13 com.apple.MailCore 0x00007fff93a46f4e-[MCMonitoredInvocation invoke] + 245

    14 com.apple.MailCore 0x00007fff93a7986a-[major MCThrowingInvocationOperation] + 48

    15 com.apple.MailCore 0x00007fff93a02be2-[major _MCInvocationOperation] + 426

    16 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    17 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    18 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    19 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    20 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    21 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 22 libdispatch.dylib

    23 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    24 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 10:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Wire 11:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    12 wire:-queue [MFIMAPAccount _synchronizeMailboxListDuringMailCheck] sent: NSOperationQueue 0x7fe38ca13ff0: NSOperation 0x7fe38ca6def0 (QOS: UTILITY)

    0 libsystem_kernel.dylib 0x00007fff9099fdb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff99527728 _pthread_cond_wait + 767

    2 com.apple.Foundation 0x00007fff8b9a0fc8-[NSCondition waiting] + 240

    3 com.apple.MailCore 0x00007fff93a740c5-[MCTask waitUntilFinished] + 97

    4 com.apple.IMAP 0x00007fff8ab02cf2-[IMAPTaskManager _doCommandBlockForMailbox:block:async:ifSelected:priority:description:] + 1533

    5 com.apple.IMAP 0x00007fff8ab026d2-[IMAPTaskManager doCommandBlockForMailbox: synchronous mode: priority: description: block:] + 109

    6 com.apple.IMAP 0x00007fff8ab0538c-[IMAPTaskManager subscribedListingForMailbox:options:listingInfo:] + 216

    7 com.apple.Mail.framework 0x00007fff8b3b7602-[MFIMAPAccount _listingForMailbox:listAllChildren:onlySubscribed:highPriority:] + 573

    8 com.apple.Mail.framework 0x00007fff8b3b85e9-[MFIMAPAccount _listingForMailbox:listAllChildren:highPriority:] + 104

    9 com.apple.Mail.framework 0x00007fff8b3b6751-[MFIMAPAccount _synchronizeMailboxListHighPriority:] + 71

    com.apple.Mail.framework 10 0x00007fff8b3b7375-[MFIMAPAccount _synchronizeMailboxListDuringMailCheck] + 310

    11 com.apple.CoreFoundation 0x00007fff8fd71a6c __invoking___ + 140

    12 com.apple.CoreFoundation 0x00007fff8fd718fe-[French invoke] + 286

    13 com.apple.MailCore 0x00007fff93a46f4e-[MCMonitoredInvocation invoke] + 245

    14 com.apple.MailCore 0x00007fff93a7986a-[major MCThrowingInvocationOperation] + 48

    15 com.apple.MailCore 0x00007fff93a02be2-[major _MCInvocationOperation] + 426

    16 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    17 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    18 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    19 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    20 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    21 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 22 libdispatch.dylib

    23 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    24 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 13:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 14: Dispatch queue: queue IMAPNetworkTaskHandler: NSOperation 0x7fe38ce4f170 (QOS: UTILITY)

    0 libsystem_kernel.dylib 0x00007fff90999f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff909993b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff8fd751c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8fd7468c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff8b98fed9-[NSRunLoop (NSRunLoop) runMode:beforeDate:] + 270

    6 com.apple.MailCore 0x00007fff93a6f8cb-[torque readBytes:maxLength:error:] + 876

    7 com.apple.MailCore 0x00007fff939ec226-[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 126

    8 com.apple.MailCore 0x00007fff939eba81-[MCConnection _fillBuffer:] + 347

    9 com.apple.MailCore 0x00007fff939eb6e2-[MCConnection _readLineIntoData:error:] + 216

    com.apple.IMAP 10 0x00007fff8aabd59e-[IMAPConnection _readLineIntoData:error:] + 54

    11 com.apple.IMAP 0x00007fff8aac800c-[IMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    com.apple.IMAP 12 0x00007fff8aaf5c6f + [IMAPResponse newIMAPResponseWithConnection:error:] + 101

    13 com.apple.IMAP 0x00007fff8aabd6d1-[IMAPConnection _copyNextServerResponse:fetchResponseLog:] + 49

    14 com.apple.IMAP 0x00007fff8aabd955-[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 312

    15 com.apple.IMAP 0x00007fff8aac5afe-[IMAPConnection _responseFromSendingCommand:receivedExists:] + 1493

    16 com.apple.IMAP 0x00007fff8aac4e62-[IMAPConnection executeFetch:] + 57

    17 com.apple.IMAP 0x00007fff8aabc52f-[IMAPConnection prepareAndExecuteCommand:] + 220

    18 com.apple.IMAP 0x00007fff8aaf97f9-[IMAPServerInterface executeClientCommand:] + 1144

    19 com.apple.IMAP 0x00007fff8aafd3e7-[major IMAPSyncUIDsFlagsAndLabelsOperation] + 599

    20 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    21 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    22 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    23 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    24 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    25 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    26 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    27 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    28 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 15:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    16 wire:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 17:

    start_wqthread 0 0x00007fff99524334 + 0 libsystem_pthread.dylib

    18 wire:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 19 crashed: dispatch queue: NSOperationQueue 0x7fe38d019ba0: NSOperation 0x7fe38d00cb20 (QOS: LEGACY)

    0 libsystem_kernel.dylib 0x00007fff9099ff06 __pthread_kill + 10

    1 libsystem_pthread.dylib 0x00007fff995294ec pthread_kill + 90

    2 libsystem_c.dylib 0x00007fff85d9f6e7 demolition + 129

    3 libc ++ abi.dylib 0x00007fff99af2f81 abort_message + 257

    4 libc ++ abi.dylib 0x00007fff99b18a47 default_terminate_handler() + 267

    libobjc 5. A.dylib 0x00007fff8c9ea491 _objc_terminate() + 103

    6 libc ++ abi.dylib 0x00007fff99b1619e std::__terminate (void (*) ()) + 8

    7 libc ++ abi.dylib 0x00007fff99b16213 std::terminate() + 51

    8 libdispatch.dylib 0x00007fff8ceef41f _dispatch_client_callout + 28

    libdispatch.dylib 9 0x00007fff8cef403b _dispatch_queue_drain + 754

    10 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    11 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    12 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    13 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    14 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 20: Dispatch queue: MCTaskManager utilityQueue: NSOperation 0x7fe38cbbccd0 (QOS: UTILITY)

    0 libsystem_kernel.dylib 0x00007fff90999f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff909993b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff8fd751c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8fd7468c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff8b98fed9-[NSRunLoop (NSRunLoop) runMode:beforeDate:] + 270

    6 com.apple.MailCore 0x00007fff93a6f8cb-[torque readBytes:maxLength:error:] + 876

    7 com.apple.MailCore 0x00007fff939ec226-[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 126

    8 com.apple.MailCore 0x00007fff939eba81-[MCConnection _fillBuffer:] + 347

    9 com.apple.MailCore 0x00007fff939eb6e2-[MCConnection _readLineIntoData:error:] + 216

    com.apple.IMAP 10 0x00007fff8aabd59e-[IMAPConnection _readLineIntoData:error:] + 54

    11 com.apple.IMAP 0x00007fff8aac800c-[IMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    com.apple.IMAP 12 0x00007fff8aaf5c6f + [IMAPResponse newIMAPResponseWithConnection:error:] + 101

    13 com.apple.IMAP 0x00007fff8aabd6d1-[IMAPConnection _copyNextServerResponse:fetchResponseLog:] + 49

    14 com.apple.IMAP 0x00007fff8aabd955-[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 312

    15 com.apple.IMAP 0x00007fff8aac5afe-[IMAPConnection _responseFromSendingCommand:receivedExists:] + 1493

    16 com.apple.IMAP 0x00007fff8aabf372-[IMAPConnection executeID:] + 56

    17 com.apple.IMAP 0x00007fff8aabc52f-[IMAPConnection prepareAndExecuteCommand:] + 220

    18 com.apple.IMAP 0x00007fff8aabf27f-[IMAPConnection sendIDIfNeeded] + 110

    19 com.apple.Mail.framework 0x00007fff8b3b2d11-[MFIMAPAccount connectAndAuthenticate:] + 698

    20 com.apple.IMAP 0x00007fff8ab01376-[IMAPTaskManager _createNewConnection] + 96

    21 com.apple.IMAP 0x00007fff8ab012b6 __71-[IMAPTaskManager _createNewConnectionSynchronously:isFirstConnection:] + 31 _block_invoke

    22 com.apple.Foundation 0x00007fff8b9b28d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    23 com.apple.Foundation 0x00007fff8b9b2595-[major NSBlockOperation] + 100

    com.apple.Foundation 24 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    25 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    26 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    27 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    28 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    29 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    30 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    31 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    32 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 21:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 22:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 23: Dispatch queue: NSOperationQueue 0x7fe38cca5410: NSOperation 0x7fe38cca5510 (QOS: UTILITY)

    0 libsystem_platform.dylib 0x00007fff929b8521 _platform_memmove$ OPTION$ Ivybridge + 1

    1 com.apple.CoreFoundation 0x00007fff8fcf1292 __CFStringCreateImmutableFunnel3 + 2978

    2 com.apple.CoreFoundation 0x00007fff8fcf06dd CFStringCreateWithCString + 93

    3 com.apple.CoreFoundation 0x00007fff8fd0b35b _CFIterateDirectory + 779

    4 com.apple.CoreFoundation 0x00007fff8fd4271a _CFBundleReadDirectory + 330

    5 com.apple.CoreFoundation 0x00007fff8fd41624 _createQueryTableAtPath + 836

    6 com.apple.CoreFoundation 0x00007fff8fd3fb9b _copyQueryTable + 331

    7 com.apple.CoreFoundation 0x00007fff8fd3f372 _copyResourceURLsFromBundle + 370

    8 com.apple.CoreFoundation 0x00007fff8fd3e8c6 _CFBundleCopyFindResources + 1206

    com.apple.CoreFoundation 0x00007fff8fd90dbc 9 CFBundleCopyResourceURLForLocalization + 60

    10 com.apple.LaunchServices 0x00007fff89122b5e _LSCopyBundleStringsForLocale + 29

    11 com.apple.LaunchServices 0x00007fff89130fec _LSCopyBundleStringDictionariesForLocales + 141

    12 com.apple.LaunchServices 0x00007fff89130d0e _LSBundleCopyStringDictionaryForKey + 601

    13 com.apple.LaunchServices 0x00007fff8912f8a7 _LSCopyNodeAttribute_DisplayKindLocalizationDictionary (e LSNodeAttributeStateCach *) + 114

    14 com.apple.LaunchServices 0x00007fff891180cc _LSCopyNodeAttributeWithState (LSNodeAttributeStateCache *, __CFString const *) + 72

    15 com.apple.LaunchServices 0x00007fff8911e0b4 _LSCopyNodeAttributes + 187

    16 com.apple.LaunchServices 0x00007fff8911de47 _LSFindBundleAndCopyNodeAttributes + 188

    17 com.apple.LaunchServices 0x00007fff8911dcb2 copyAttributeValueForKey (_LSOnDemandContext &, FSNode *, __FileCache *, __CFString const *, const void *, __CFError *) + 225

    18 com.apple.LaunchServices 0x00007fff891cc6ec prepareLocalizedTypeDescriptionDictionaryValue (_LSOnDemandContext &, FSNode *, __FileCache *, const __CFString *, __CFError *) + 90

    19 com.apple.LaunchServices 0x00007fff89112f60 LSPropertyProviderPrepareValues (const __CFURL *, __FileCache *, __CFString const * const *, const void *, long, const void *, __CFError *) + 195

    20 com.apple.CoreServicesInternal 0x00007fff9a2496f7 prepareValuesForBitmap (const __CFURL *, __FileCache *, _FilePropertyBitmap *, __CFError *) + 227

    21 com.apple.CoreServicesInternal 0x00007fff9a24788b _FSURLCopyResourcePropertiesForKeysInternal (__CFURL const *, __CFArray const *, void *, __CFError *, unsigned char) + 1018

    22 com.apple.CoreFoundation 0x00007fff8fd87ff1 CFURLCopyResourcePropertiesForKeys + 113

    23 com.apple.Metadata 0x00007fff95d410da _MDSetMailMessageAttributesAtTime + 3230

    com.apple.CoreSpotlight 24 0x00007fff8fcd058b-[CSSearchableIndex _setMailMessageAttributes:] + 412

    25 com.apple.CoreSpotlight 0x00007fff8fccec94-[CSSearchableIndex indexSearchableItems:deleteSearchableItemsWithIdentifiers:clientState:clientSta teName:protectionClass:forBundleID:options:completionHandler:] + 734

    26 com.apple.CoreSpotlight 0x00007fff8fcce978-[CSSearchableIndex indexSearchableItems:deleteSearchableItemsWithIdentifiers:clientState:protectio nClass:forBundleID:options:completionHandler:] + 224

    27 com.apple.CoreSpotlight 0x00007fff8fcce5a7-[CSSearchableIndex indexSearchableItems:deleteSearchableItemsWithIdentifiers:clientState:completio nHandler:] + 207

    28 com.apple.CoreSpotlight 0x00007fff8fcce40c-[CSSearchableIndex indexSearchableItems:completionHandler:] + 286

    29 com.apple.Mail.framework 0x00007fff8b3de454 __88 + [MFLibrary _sendAttributesToCoreSpotlightForMessage:replaceExisting:calculateSnippets:] _bl ock_invoke + 308

    30 com.apple.Foundation 0x00007fff8b9b28d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    31 com.apple.Foundation 0x00007fff8b9b2595-[major NSBlockOperation] + 100

    32 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    33 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    34 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    35 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    36 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    37 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    38 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    39 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    40 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 24:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 25:-queue [MailApp _setSourceOnGmailLabels] sent: NSOperationQueue 0x7fe38ca13ff0: NSOperation 0x7fe38a79f9f0 (QOS: UTILITY)

    0 libsystem_platform.dylib 0x00007fff929b8c2c _os_lock_handoff_lock + 23

    1 libobjc. A.dylib 0x00007fff8c9e015e objc_sync_enter + 16

    0x00007fff8b4825a1-[MFMailbox criteria] + 63 2 com.apple.Mail.framework

    3 com.apple.Mail.framework 0x00007fff8b47ff5c-[MFMailbox _URLStringIsSyncable:] + 94

    com.apple.Mail.framework 4 0x00007fff8b3efb8d + [MFLibrary _getActiveAccountURLs:andActiveMailboxURLs:] + 1192

    com.apple.Mail.framework 5 0x00007fff8b40d9e2 + [MFLibrary executeBlock:isWriter:useTransaction:isPrivileged:] + 1054

    com.apple.Mail.framework 6 0x00007fff8b40d13b + [MFLibrary mailboxIDForMailbox:loadIfNotPresent:] + 526

    7 com.apple.Mail.framework 0x00007fff8b3d8679 + [MFLibrary _mailboxIDsStringForMailboxes:] + 227

    8 com.apple.Mail.framework 0x00007fff8b3d715b + [MFLibrary setSourceMailbox:forMailboxes:] + 151

    9 com.apple.mail 0x000000010063d70a 0x1005e8000 + 349962

    10 com.apple.CoreFoundation 0x00007fff8fd71a6c __invoking___ + 140

    11 com.apple.CoreFoundation 0x00007fff8fd718fe-[French invoke] + 286

    12 com.apple.MailCore 0x00007fff93a7986a-[major MCThrowingInvocationOperation] + 48

    13 com.apple.MailCore 0x00007fff93a02be2-[major _MCInvocationOperation] + 426

    14 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    15 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    16 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    17 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    18 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    19 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    20 0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    21 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    22 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 26:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Thread 27:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 28:-queue [MFIMAPAccount _synchronizeMailboxListDuringMailCheck] sent: NSOperationQueue 0x7fe38ca13ff0: NSOperation 0x7fe38c973e20 (QOS: UTILITY)

    0 libsystem_kernel.dylib 0x00007fff9099fdb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff99527728 _pthread_cond_wait + 767

    2 com.apple.Foundation 0x00007fff8b9a0fc8-[NSCondition waiting] + 240

    3 com.apple.MailCore 0x00007fff93a740c5-[MCTask waitUntilFinished] + 97

    4 com.apple.IMAP 0x00007fff8ab02cf2-[IMAPTaskManager _doCommandBlockForMailbox:block:async:ifSelected:priority:description:] + 1533

    5 com.apple.IMAP 0x00007fff8ab026d2-[IMAPTaskManager doCommandBlockForMailbox: synchronous mode: priority: description: block:] + 109

    6 com.apple.IMAP 0x00007fff8ab05190-[IMAPTaskManager listingForMailbox:options:listingInfo:] + 216

    7 com.apple.Mail.framework 0x00007fff8b3b7602-[MFIMAPAccount _listingForMailbox:listAllChildren:onlySubscribed:highPriority:] + 573

    8 com.apple.Mail.framework 0x00007fff8b3b8621-[MFIMAPAccount _listingForMailbox:listAllChildren:highPriority:] + 160

    9 com.apple.Mail.framework 0x00007fff8b3b6751-[MFIMAPAccount _synchronizeMailboxListHighPriority:] + 71

    com.apple.Mail.framework 10 0x00007fff8b3b7375-[MFIMAPAccount _synchronizeMailboxListDuringMailCheck] + 310

    11 com.apple.CoreFoundation 0x00007fff8fd71a6c __invoking___ + 140

    12 com.apple.CoreFoundation 0x00007fff8fd718fe-[French invoke] + 286

    13 com.apple.MailCore 0x00007fff93a46f4e-[MCMonitoredInvocation invoke] + 245

    14 com.apple.MailCore 0x00007fff93a7986a-[major MCThrowingInvocationOperation] + 48

    15 com.apple.MailCore 0x00007fff93a02be2-[major _MCInvocationOperation] + 426

    16 com.apple.Foundation 0x00007fff8b9b0c7a-[__NSOperationInternal _start:] + 654

    17 com.apple.Foundation 0x00007fff8b9acc64 __NSOQSchedule_f + 194

    18 libdispatch.dylib 0x00007fff8ceef40b _dispatch_client_callout + 8

    19 libdispatch.dylib 0x00007fff8cef403b _dispatch_queue_drain + 754

    20 libdispatch.dylib 0x00007fff8cefa707 _dispatch_queue_invoke + 549

    21 libdispatch.dylib 0x00007fff8cef2d53 _dispatch_root_queue_drain + 538

    0x00007fff8cef2b00 _dispatch_worker_thread3 + 91 22 libdispatch.dylib

    23 libsystem_pthread.dylib 0x00007fff995264de _pthread_wqthread + 1129

    24 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    Line 29:

    0 libsystem_kernel.dylib 0x00007fff909a05e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff99526578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff99524341 start_wqthread + 13

    30 wire: com.apple.NSURLConnectionLoader

    0 libsystem_kernel.dylib 0x00007fff90999f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff909993b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff8fd751c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8fd7468c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    5 com.apple.CFNetwork 0x00007fff91c7d095 + [NSURLConnection (Loader) _resourceLoadLoop:] + 412

    6 com.apple.Foundation 0x00007fff8b9a0e64 __NSThread__start__ + 1351

    7 libsystem_pthread.dylib 0x00007fff9952699d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff9952691a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff99524351 thread_start + 13

    31 phone: com.apple.CFSocket.private

    0 libsystem_kernel.dylib 0x00007fff909a007a __select + 10

    1 com.apple.CoreFoundation 0x00007fff8fdb24fa __CFSocketManager + 762

    2 libsystem_pthread.dylib 0x00007fff9952699d _pthread_body + 131

    3 libsystem_pthread.dylib 0x00007fff9952691a _pthread_start + 168

    4 libsystem_pthread.dylib 0x00007fff99524351 thread_start + 13

    Line 32: com.apple.NSEventThread

    0 libsystem_kernel.dylib 0x00007fff90999f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff909993b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff8fd751c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8fd7468c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff8fd73ed8 CFRunLoopRunSpecific + 296

    5 com.apple.AppKit 0x00007fff8511bd95 _NSEventThread + 149

    6 libsystem_pthread.dylib 0x00007fff9952699d _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff9952691a _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff99524351 thread_start + 13

    Thread 19 crashed with X 86 State of Thread (64-bit):

    Rax: 0 x 0000000000000000 rbx: 0000000000000006 rcx 0 x: 0 x 0000700000946768 rdx: 0 x 0000000000000000

    RDI: 0x000000000000fb07 rsi: 0 x 0000000000000006 PBR: RER 0x0 0000700000946790: x 0000700000946768

    R8: 0 x 0000000000000003 r9: 0x00007fff99b19a7c r10: 0x000000000c000000 r11: 0 x 0000000000000206

    R12: 0x00007000009468f0 r13: 0 x 0000000000000000 r14: r15 x 0 0000700000947000: 0x00007000009467d0

    RIP: 0x00007fff9099ff06 rfl: 0 x 0000000000000206 cr2: 0x0000000102c82000

    Logical CPU: 0

    Error code: 0x0100001f

    Trap number: 133

    Binary images:

    0x1005e8000 - 0x1009a2fff (9, 3-3124) com.apple.mail < C485BED8-C430-31C0-B2B9-19A1C46A3837 > /Applications/Mail.app/Contents/MacOS/Mail

    0x103f7f000 - 0x103f7ffe7 + cl_kernels (?) < 88509F81-71C7-4EE9-9164-1F366406A0A8 > cl_kernels

    0x1055a9000 - 0x1055b1fff com.apple.SyncedDefaults /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults < 46C56671-735B-3909-88AD-EBF87CE6ED46 > (2.0 - 235)

    0x1055d4000 - 0x1055d5fff com.apple.AddressBook.LocalSourceBundle (9.0 - 1679.10) < C1A946FD-35A4-378D-ABF4-14A9DC63C8A3 > system/library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource

    0x1055e9000 - 0x1055edfff com.apple.DirectoryServicesSource (9.0 - 1679.10) < FE5744DA-3DA5-3DC7-ADD3-0BFA18D51E84 > system/library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices

    0x1055f7000 - 0x105645ff3 com.apple.AddressBook.CardDAVPlugin (10: 9 - 512.1) < 9C3BFB73-9C06-3BF9-82A8-E50C5BC2254F > system/library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin

    0x1063f6000 - 0x106459fff com.apple.driver.AppleIntelHD4000GraphicsMTLDriver (10.14.66 - 10.1.4) < 20C07530-5873-379E-B5BF-621470874BEB > /System/Library/Extensions/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/Ma cOS / AppleIntelHD4000GraphicsMTLDriver

    0 x 106579000 - 0x10657aff7 + cl_kernels (?) < 0E033A55-2062-454D-91B8-90E4585D7287 > cl_kernels

    0x10674f000 - 0x106751fff apop.so (188) < 8543B50E-91F2-30CD-96A3-AC0DA7738B97 > /usr/lib/sasl2/apop.so

    0 x 106758000 - 0x106759fff atoken.so (188) < EB7AB66D-C0D1-3B63-8625-3D7472B8DE29 > /usr/lib/sasl2/atoken.so

    0 x 106761000 - 0x106771ffb dhx.so (188) < E5729195-E010-385F-A418-43CE585BDD35 > /usr/lib/sasl2/dhx.so

    0 x 106782000 - 0x10678afff digestmd5WebDAV.so (188) < 0C074938-0D2F-3B98-93A8-002E296B671E > /usr/lib/sasl2/digestmd5WebDAV.so

    0 x 106794000 - 0x106796fff libanonymous.2.so (209) < CC03F1A3-E1B7-3D3E-BB63-58C7FA65BFCF > /usr/lib/sasl2/libanonymous.2.so

    0x10679c000 - 0x10679efff libcrammd5.2.so (209) < CED4DBAB-7D07-31B5-A1A9-4F1F5594D757 > /usr/lib/sasl2/libcrammd5.2.so

    0x1067a5000 - 0x1067aefff libdigestmd5.2.so (209) < 50461C8A-2EEB-3B0E-AFA9-7D281E054E13 > /usr/lib/sasl2/libdigestmd5.2.so

    0x1067b6000 - 0x1067bbfff libgssapiv2.2.0.18.so (209) < 61FACDF0-992B-3795-9788-6239E601FD80 > /usr/lib/sasl2/libgssapiv2.2.0.18.so

    0x1067c7000 - 0x1067ccfff libntlm.so (209) < BFBDDA88-A675-3C8F-9F51-622DF7A96E61 > /usr/lib/sasl2/libntlm.so

    0x1067d3000 - 0x1067d5fff libplain.2.so (209) < FE3CCD59-3597-36A0-91E2-6F837E1DCC1B > /usr/lib/sasl2/libplain.2.so

    0x1067dc000 - 0x1067defff login.so (209) < 8648ED73-6217-3489-AD30-521219C803E0 > /usr/lib/sasl2/login.so

    0x1067e6000 - 0x1067e9ff7 mschapv2.so (188) < EDEDD67E-40DB-3C12-B395-E9347A9B0EF1 > /usr/lib/sasl2/mschapv2.so

    0x1067ef000 - 0x10680fffb com.apple.DirectoryService.PasswordServerFramework (10.11 - 45) < 63E789C1-FCAC-36E1-880A-B32C7510B795 > /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS Server

    0 x 106823000 - 0x10682cfff com.apple.DirectoryServer (62 - 10.11) < 6004588D-B3D3-3307-9E2B-DA17E2167CFD > /System/Library/PrivateFrameworks/DirectoryServer.framework/Versions/A/Director yServer

    0 x 106836000 - 0x106842fff com.apple.directoryserver.CFDirectoryServer (62 - 10.11) < 1E38F620-BA21-3AAB-963F-C06F8AD77F61 > /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirect oryServer.framework/Versions/A/CFDirectoryServer

    0 x 106850000 - 0x106857ff7 com.apple.HeimODAdmin /System/Library/PrivateFrameworks/HeimODAdmin.framework/Versions/A/HeimODAdmin < 7858DF7D-1095-3DA3-8F0F-882FADDC0229 > (4.0 - 2.0)

    0 x 106868000 - 0x10686afff oauthbearer.so (188) < 2899B743-3008-38F0-933E-E016565F28BF > /usr/lib/sasl2/oauthbearer.so

    0 106871000 x - plain 0x106872fff - clienttoken.so (188) < 7DB4EA45-B1BF-38D2-BDCB-17C2D655BB98 > /usr/lib/sasl2/plain-clienttoken.so

    0 x 106877000 - 0x106879fff pwauxprop.so (421) < 1811BAF9-DA13-3EF9-BFC3-CC2660D07A46 > /usr/lib/sasl2/pwauxprop.so

    0 x 106882000 - 0x106884fff shadow_auxprop.so (188) < 0754FA5B-943F-3B0F-911C-EAB6AF949890 > /usr/lib/sasl2/shadow_auxprop.so

    0x10688b000 - 0x10688efff smb_ntlmv2.so (188) < E7CBBBAD-CAB8-3A4F-8473-A47D4894EBE9 > /usr/lib/sasl2/smb_ntlmv2.so

    0 x 106896000 - 0x1068afff7 srp.so (209) < 1F11ABB4-06DB-3B20-8B84-BE161D9C9636 > /usr/lib/sasl2/srp.so

    0x10757f000 - 0x107591fff libTraditionalChineseConverter.dylib (68) < 62CEE84C-366B-3E43-821B-EE072DBF33D7 > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0x1081a6000 - 0x1081c2ff7 libJapaneseConverter.dylib (68) < D80D1583-1F6F-32A5-A683-F504A0DF973A > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0x1081c8000 - 0x1081d7ff7 libSimplifiedChineseConverter.dylib (68) < DCFEA0D3-593E-3E5C-B311-53B8ACF8A318 > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0x1081dc000 - 0x1081feff7 libKoreanConverter.dylib (68) < F29010B7-FABC-3CDA-95F5-85DC12B6C91B > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0 x 108203000 - 0x108206ff7 libLatinSuppConverter.dylib (68) < 6D921FF4-5484-326A-87C9-9A29D8CEAF54 > /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib

    0x10836d000 - 0x10836efff libArabicConverter.dylib (68) < 2FB03F3A-6E83-3AD6-A66D-80CC3242E766 > /System/Library/CoreServices/Encodings/libArabicConverter.dylib

    0x7fff69c71000 - 0x7fff69ca825f dyld (360.22) < A468D85E-D8D6-3461-8C99-49D3B9ACFC63 >/usr/lib/dyld

    0x7fff84560000 - 0x7fff84569ff7 com.apple.DisplayServicesFW (3.0 - 378) < 45BE1B99-8E10-32F0-A180-A6B6CB5883AE > /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    0x7fff8456c000 - 0x7fff845d9ff7 com.apple.imfoundation (10.0 - 1000) < 5C61D95A-BE77-3D37-AA64-9944B791826E > /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n

    0x7fff845da000 - 0x7fff848bfffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) < 2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore

    0x7fff849f0000 - 0x7fff84f12fff com.apple.QuartzComposer (5.1 - 334) < 80235264-CA1B-3E3F-96F7-5F6F52FDC5B6 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer

    0x7fff84f13000 - 0x7fff84f44ff7 libtidy. A.dylib (15,17) < 6859415D-7A43-384E-ABDD-AA6B2AA9FDCD >/usr/lib/libtidy. A.dylib

    0x7fff84f78000 - 0x7fff84f7cfff com.apple.LoginUICore (3.2 - 3.2) < 5524E4BC-4700-39F4-AF06-E53322712EE0 > /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore

    0x7fff84f7d000 - 0x7fff85ba6ff7 com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < F3411F6E-DD87-34D0-8C68-C69B2205E41D > (6, 9 - 1404.47)

    0x7fff85baa000 - 0x7fff85bdeff7 com.apple.CoreVideo (1, 8-191, 3) < 1AA24A1B-CB84-3F6B-B6DE-11494542649C > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff85bdf000 - 0x7fff85be7fff libcopyfile.dylib (127) < A48637BC-F3F2-34F2-BB68-4C65FD012832 > /usr/lib/system/libcopyfile.dylib

    0x7fff85be8000 - 0x7fff85be8ff7 libkeymgr.dylib (28) < 8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0 > /usr/lib/system/libkeymgr.dylib

    0x7fff85c7c000 - 0x7fff85d35ff7 libvMisc.dylib (563.5) < BF612F7D-FA3B-3F9F-8BE7-8D1BCB21ECC5 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib

    0x7fff85d41000 - 0x7fff85dcefff (1082.50.1) libsystem_c.dylib < B552D565-B798-3B9B-AE63-F623B42A5F01 > /usr/lib/system/libsystem_c.dylib

    0x7fff85dd5000 - 0x7fff85ec0ff7 com.apple.QuickLookUIFramework (5.0 - 696.7) < 5A4AAFEC-D38C-3DA0-9361-CBF1D4C6B376 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f EPI/Versions/A/QuickLookUI

    0x7fff85ec2000 - 0x7fff85f51ff7 (517.50.1) libCoreStorage.dylib < E6283FE9-B5AC-3110-8D4C-8E2BF185983E > /usr/lib/libCoreStorage.dylib

    0x7fff85f52000 - 0x7fff85f63ff7 libz.1.dylib (61.20.1) < B3EBB42F-48E3-3287-9F0D-308E04D407AC > /usr/lib/libz.1.dylib

    0x7fff85f64000 - 0x7fff85fc7fff libAVFAudio.dylib (161,2) < 1A98DBF3-490B-37FB-928A-AB1E36E6E5DD > /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib

    0x7fff85fde000 - 0x7fff86052ff3 com.apple.securityfoundation (6.0 - 55126) < 130656AE-2711-3914-8736-D8B021C93FE0 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun Foundation

    0x7fff860b3000 - 0x7fff86111fff com.apple.MailUI (9.3 - 3124) < E95149F2-2DC7-34E7-BFD7-52728C1554C9 > /System/Library/PrivateFrameworks/MailUI.framework/Versions/A/MailUI

    0x7fff86112000 - 0x7fff8611efff com.apple.CommerceCore (1.0 - 463, 9) < 92A641CE-2740-3B7A-B69D-E5CE1426B7DE > /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore

    0x7fff8611f000 - 0x7fff86152fff com.apple.framework.accountsui (1.0 - 33.1) < 2679CC21-0C98-3340-9C42-780B11A70226 > /System/Library/PrivateFrameworks/AccountsUI.framework/Versions/A/AccountsUI

    0x7fff86153000 - 0x7fff86175ff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing < DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8 >

    0x7fff86176000 - 0x7fff86186fff libbsm.0.dylib (34) < 7E14504C-A8B0-3574-B6EB-5D5FABC72926 > /usr/lib/libbsm.0.dylib

    0x7fff86187000 - com.apple.CalendarPersistence (8.0 - 378, 5) < BDEE7522-C15E-3957-BE87-6B2EF79A38B6 > 0x7fff863ddfff /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence

    0x7fff863de000 - 0x7fff86402ff7 libJPEG.dylib (1450) < 33C07EEE-95CB-33F7-87C1-09CE82F1E478 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff86403000 - 0x7fff8644fff7 com.apple.corelocation /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation < 6336CFC5-9D7D-3B76-B263-56DD6EBD0B8D > (1486.17 - 1615.38)

    0x7fff864c4000 - 0x7fff864d7fff com.apple.contacts.ContactsPersistence (1.0 - 2137.1) < 71232F20-11BD-370D-9F43-F262BFE46C93 > /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/Cont actsPersistence

    0x7fff864d8000 - 0x7fff864dcfff libGIF.dylib (1450) < 49D45D41-11AD-38DC-BDC5-9EC57E3B8E30 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff8652b000 - 0x7fff8653cff7 (201.10.3) libsystem_trace.dylib < F00E92E4-DBDA-3749-B5B3-0C3FBBABA1CB > /usr/lib/system/libsystem_trace.dylib

    0x7fff8663e000 - 0x7fff8664dfff com.apple.AccountPolicy (icy of < 3AA9BA1F-7670-3028-A389-970941725A46 > /System/Library/PrivateFrameworks/AccountPolicy.framework/Versions/A/AccountPol 1.0 - 1.).

    0x7fff86747000 - 0x7fff86776ffb libsystem_m.dylib (3105) < 08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4 > /usr/lib/system/libsystem_m.dylib

    0x7fff867ec000 - 0x7fff86a0dff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1 >

    0x7fff86a0e000 - 0x7fff86a7cff7 com.apple.ApplicationServices.ATS (377-394, 4) < 9779E916-0788-3CAC-B1EC-F68BCB12A2B6 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    0x7fff86a7d000 - 0x7fff86a93ff7 com.apple.geokit /System/Library/PrivateFrameworks/GeoKit.framework/Versions/A/GeoKit < BC60A03D-8720-3C88-9642-4B84CE9A3ED2 > (2.2 - 2.2)

    0x7fff86a97000 - 0x7fff86aeaff7 libc ++.1.dylib (120,1) < 8FC3D139-8055-3498-9AC5-6467CB7F4D14 > /usr/lib/libc++.1.dylib

    0x7fff86aeb000 - 0x7fff86b00fff com.apple.ToneKit (< 6D5AD263-308F-3F70-8D86-7027569D2694 > /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit 1.0 - 1.).

    0x7fff86b01000 - 0x7fff86b1eff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) < 41378C0B-B56A-3A73-9BD0-E06FA1F87B8C > /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

    0x7fff86b81000 - 0x7fff86bf6fff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < A509D3AE-9D48-31B7-89C7-326A7A2007B2 >

    0x7fff86bf7000 - 0x7fff86e04fff libicucore. A.dylib (551.51.3) < 5BC80F94-C90D-3175-BD96-FF1DC222EC9C >/usr/lib/libicucore. A.dylib

    0x7fff86e30000 - 0x7fff86e4bfff com.apple.aps.framework (4.0 - 4.0) < CAD47B6E-A581-3B35-885B-67B206F41D5E > /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService

    0x7fff86e4c000 - 0x7fff86e4dfff libDiagnosticMessagesClient.dylib (100) < 4243B6B4-21E9-355B-9C5A-95A216233B96 > /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff86fb5000 - 0x7fff86ff7ff7 com.apple.Metal /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 2B2C0F78-20B8-3878-B9B1-DE18BB92919D > (56, 6-56, 6)

    0x7fff86ffe000 - 0x7fff86ffeff7 (765.50.8) liblaunch.dylib < 834ED605-5114-3641-AA4D-ECF31B801C50 > /usr/lib/system/liblaunch.dylib

    0x7fff86fff000 - 0x7fff8703cff3 (14, 0-193, 7) com.apple.bom < 9B8AE30B-24A3-37AB-B04E-4CE67AED4775 > /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

    0x7fff87081000 - 0x7fff87082ffb libSystem.B.dylib (1226.10.1) < C5D09FE1-CC70-383E-AC27-18602F2EDEC4 > /usr/lib/libSystem.B.dylib

    0x7fff87083000 - 0x7fff87086ff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) < 6932B5EC-0EA9-333D-BF7E-665047392FEC > /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo

    0x7fff87087000 - 0x7fff87127fff com.apple.ViewBridge /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge < D8131B7E-DFC9-3FDD-9D56-49821C1D1521 > (159-159)

    0x7fff8712a000 - 0x7fff88217ffb com.apple.WebCore (11601 - 11601.6.17) < A715DA96-B504-36A3-88DD-13485DE8BA2D > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    0x7fff88218000 - 0x7fff882c3fff com.apple.PDFKit (3.1 - 3.1) < 27AF3C85-1C0B-389C-856C-2E527620C195 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit

    0x7fff882c4000 - 0x7fff882c4ff7 com.apple.CloudPhotosConfigurationXPC (1.5 - 370.42.0) < E1825828-6544-3C11-BDF8-0AF1791D6FB8 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotosConfigurationXPC.framework/Versions/A/CloudPhotosConfigurationX PC

    0x7fff882c5000 - 0x7fff882f2ff7 com.apple.PassKit (1.0 - 55.1) < D31E95EB-BC60-3A35-B9AB-4FE531A60400 > /System/Library/PrivateFrameworks/PassKit.framework/Versions/A/PassKit

    0x7fff882f3000 - 0x7fff88348fff com.apple.AE (701-701) < AD492742-F884-386B-A450-FAC281B9FFA4 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE

    0x7fff8877b000 - 0x7fff887adff7 com.apple.iCalendar /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar < 2D12DD0E-D062-3D75-A86D-543F73A5BD72 > (7.0 - 240)

    0x7fff887ae000 - 0x7fff887faffb com.apple.HIServices (1.22 - 550) < 6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices

    0x7fff887fb000 - 0x7fff88807fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) < 6BA06290-D4A3-351C-87F9-B61EF61FF055 > /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore

    0x7fff88808000 - 0x7fff88808fff com.apple.Accelerate.vecLib (vecLib - 3.10 3.10) < 848125D3-AF14-3526-8745-FFCDB200CD76 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib

    0x7fff88809000 - 0x7fff88843fff com.apple.QD (3.12 - 302) < 0FE53180-2895-3D14-A1E7-F82DE1D106E1 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD

    0x7fff88877000 - 0x7fff88fa9ff7 com.apple.VectorKit (1.0 - 1156.38.0.1) /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit < 622EC7F5-118E-3F16-BD3D-137BA85BABD9 >

    0x7fff88fb6000 - 0x7fff88fb9fff com.apple.Mangrove (< 2D86B3AD-64C3-3BB4-BC66-1CFD0C90E844 > /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 1.0 - 1.).

    0x7fff88fba000 - 0x7fff88fbafff (600.0.44.1) libmetal_timestamp.dylib < 6576F284-BACA-332A-A6E7-FA1C347636E3 > /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dyli b

    0x7fff89105000 - 0x7fff8922afff com.apple.LaunchServices (728.12 - 728.12) < F5AB56CD-CF33-33F0-A48D-372551714E77 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices

    0x7fff8922b000 - 0x7fff89236fff (517.50.1) libcsfde.dylib < 52F0DB6A-13B8-355E-ADFD-72834D3CA183 > /usr/lib/libcsfde.dylib

    0x7fff8927b000 - 0x7fff89286ff7 libChineseTokenizer.dylib (16) < 79B8C67A-3061-3C78-92CD-4650719E68D4 > /usr/lib/libChineseTokenizer.dylib

    0x7fff89287000 - 0x7fff89289ffb libutil.dylib (43) < 4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C > /usr/lib/libutil.dylib

    0x7fff8928a000 - 0x7fff892edff7 com.apple.WhitePagesFramework (10.7.0 - 141.0) < 876DF49A-E015-3E20-8C61-214EF07F51A4 > /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages

    0x7fff892ee000 - 0x7fff892eefff com.apple.quartzframework /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz < 5DC3D0D9-9E3F-3AA5-92F1-F229907A49B9 > (1, 5-21)

    0x7fff892f0000 - 0x7fff892f2ff7 com.apple.xpc.ServiceManagement (1.0-1) < D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5 > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage lie

    0x7fff892f3000 - 0x7fff89305fff com.apple.CloudPhotoServicesConfiguration (1.5 - 370.42.0) < CDD720AF-F4C0-31CE-91DD-D2F4E0DEC109 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotoServicesConfiguration.framework/Versions/A/CloudPhotoServicesCon figuration

    0x7fff89c77000 - 0x7fff89c93fff com.apple.GenerationalStorage (2.0 - 239, 1) < 8C821448-4294-3736-9CEF-467C93785CB9 > /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage

    0x7fff89d1b000 - com.apple.CalendarFoundation (8.0 - 406, 1) < 3CC88B32-3EC8-3D7F-BDB0-663F5D691CC0 > 0x7fff89d6bff7 /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation

    0x7fff89d6c000 - 0x7fff89d98fff com.apple.framework.SystemAdministration (1.0 - 1.0) < 1318B6A5-FFC3-3615-914D-95CBFE5BA727 > /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration

    0x7fff89d99000 - 0x7fff89da0fff com.apple.WeatherKit /System/Library/PrivateFrameworks/WeatherKit.framework/Versions/A/WeatherKit < 30C77573-24C6-3BB5-B915-DD8E97369280 > (2.0 - 150)

    0x7fff89da1000 - 0x7fff89ddbff7 (132-132) com.apple.DebugSymbols < 23A42C53-B941-3871-9EE2-4C87A46005B5 > /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s

    0x7fff89ddc000 - 0x7fff89de5fff com.apple.icloud.FindMyDevice (1.0-1) < B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E > e /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic

    0x7fff89de6000 - 0x7fff89e38fff com.apple.CalDAV /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV < 78741BC8-D22E-33D1-86FD-F88F05952D38 > (8.0 - 234)

    0x7fff89e42000 - 0x7fff89e94fff com.apple.AppleVAFramework (5.0.32 - 5.0.32) < 271ED7A9-73E5-3595-A8D6-28594C9F3C9D > /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff89e95000 - 0x7fff89e97fff libsystem_coreservices.dylib (19.2) < 1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D > /usr/lib/system/libsystem_coreservices.dylib

    0x7fff89eef000 - 0x7fff89eeffff com.apple.Cocoa /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa < 807787AB-D231-3F51-A99B-A9314623C571 > (6.11 - 22)

    0x7fff89ef0000 - 0x7fff89f23ff7 com.apple.MediaKit (16-809) < BF8032FE-6645-37F6-A622-BC7EEE3EAABF > /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x7fff89f24000 - 0x7fff89f28fff 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

    0x7fff89f29000 - 0x7fff89f43ff3 liblzma.5.dylib (10) < CC03591B-FA57-3CA5-AC81-0D76033AC0CE > /usr/lib/liblzma.5.dylib

    0x7fff89f44000 - 0x7fff89f5efff com.apple.Kerberos (< 1B4744BF-E5AE-38E2-AA56-E22D3270F2E8 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 3.0 - 1).

    0x7fff8a63e000 - 0x7fff8a6b2ff7 com.apple.Heimdal /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal < 5D365381-8B5E-3259-8867-FC4A7D307BDE > (4.0 - 2.0)

    0x7fff8a6b3000 - 0x7fff8a6b4fff libsystem_secinit.dylib (20) < 32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B > /usr/lib/system/libsystem_secinit.dylib

    0x7fff8a6b5000 - 0x7fff8a6b8ffb libdyld.dylib (360.22) < CC088C2A-D407-33E7-A6B6-B06E0D4AD999 > /usr/lib/system/libdyld.dylib

    0x7fff8a6b9000 - 0x7fff8a6c4fff com.apple.AppSandbox (4.0 - 261.40.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox < 52766210-B6EB-3B73-AB1B-42E0A9AD2EE8 >

    0x7fff8a6c5000 - 0x7fff8a6d4ff7 com.apple.ContactsAutocompleteUI (1.0-1) < E3C1F61B-1AD5-362D-A278-BBBC68D65CC2 > /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/Versions/A/C ontactsAutocompleteUI

    0x7fff8a6d5000 - 0x7fff8a6d7fff libCGXType.A.dylib (957) < B901C222-E779-32EB-96C2-5A707A09FC5B > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy EP. A.dylib

    0x7fff8a6d8000 - 0x7fff8a77cfff com.apple.Bluetooth (4.4.5 - 4.4.5f3) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < 141F2C36-70B6-32D3-A556-7A605832CDB3 >

    0x7fff8a77d000 - 0x7fff8a796fe7 libcompression.dylib (28) < F83F421D-115D-3457-A9AA-1BEB5070A30B > /usr/lib/libcompression.dylib

    0x7fff8aaa6000 - 0x7fff8aaaafff libpam.2.dylib (20) < CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A > /usr/lib/libpam.2.dylib

    0x7fff8aaab000 - 0x7fff8ab25fff com.apple.IMAP (9.3 - 3124) < 47BE2587-509E-3309-9F62-E530FE698275 > /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP

    0x7fff8ab26000 - 0x7fff8ab95fff com.apple.SearchKit (1.4.0 - 1.4.0) < F159A888-34CA-36F1-AC8E-EB1B38C9DFB3 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit

    0x7fff8abb0000 - 0x7fff8abb0fff com.apple.Accelerate (1.10 - 1.10 accelerate) < 5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff8abcb000 - 0x7fff8ac16ff7 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < 2FAE3CC1-145C-37AB-A836-E5D93A02BA23 > (703, 0-4791)

    0x7fff8ac17000 - 0x7fff8acfdff7 (59.40.2) libcrypto.0.9.8.dylib < 2486D801-C756-3488-B519-1AA6807E8948 > /usr/lib/libcrypto.0.9.8.dylib

    0x7fff8acfe000 - 0x7fff8ad2dfff com.apple.securityinterface (10.0 - 55065.40.1) < 1BB39B19-DD74-347E-A344-0E6781773577 > /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face

    0x7fff8ad3e000 - 0x7fff8aee4ff7 com.apple.audio.toolbox.AudioToolbox /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox < 082319FC-59F2-3D36-AC9B-94759724E302 > (1.13 - 1.13)

    0x7fff8aefd000 - 0x7fff8b2d5fef com.apple.CoreAUC (214.0.0 - 214.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC < F80C19CA-6CD0-3052-9C22-0288A257CCC8 >

    0x7fff8b2df000 - 0x7fff8b2e6ff7 libcompiler_rt.dylib (62) < A13ECF69-F59F-38AE-8609-7B731450FBCD > /usr/lib/system/libcompiler_rt.dylib

    0x7fff8b30f000 - 0x7fff8b5d6fff com.apple.Mail.framework (9.3 - 3124) < 0688E8B2-6B3B-344D-939A-A42DC30C231C > /System/Library/PrivateFrameworks/Mail.framework/Versions/A/Mail

    0x7fff8b78c000 - 0x7fff8b78efff com.apple.CFAccountPolicy (1.0-1) < 075A9B36-9D7F-32EE-89EB-812EEFCC1D79 > /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountP olicy.framework/Versions/A/CFAccountPolicy

    0x7fff8b7ae000 - 0x7fff8b7b1ff7 com.apple.help (1.3.3 - 46) < 35DA4D48-0BC2-35A1-8D7C-40905CDF4F64 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/help

    0x7fff8b7b2000 - 0x7fff8b7b2fff libOpenScriptingUtil.dylib (169,1) < AD0DAC8A-9849-3077-999F-9AEC6112BDAB > /usr/lib/libOpenScriptingUtil.dylib

    0x7fff8b909000 - 0x7fff8b95bfff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs < 5FD9138D-09D9-3B97-BBAD-5692E1687F30 > (1.0 - 383.13)

    0x7fff8b96b000 - 0x7fff8bcbffff com.apple.Foundation (6: 9-1259) < 71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff8bcc3000 - 0x7fff8bcd1ff7 libbz2.1.0.dylib (38) < 28E54258-C0FE-38D4-AB76-1734CACCB344 > /usr/lib/libbz2.1.0.dylib

    0x7fff8bcd2000 - 0x7fff8bd30fff com.apple.CoreServices.OSServices (728.12 - 728.12) < 776EBD4F-7052-377F-A70D-E2FDBD465A5E > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices

    0x7fff8bd31000 - 0x7fff8bd68ff7 com.apple.LDAPFramework (2.4.28 - 194,5) < 9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69 > /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff8bd69000 - 0x7fff8be4ffef unorm8_bgra.dylib (2.7.3) < B315AE9C-9E09-3D9F-9513-EC2195908516 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib

    0x7fff8be50000 - 0x7fff8c0f6ff7 com.apple.CoreData (120-641, 3) < A29A5491-6169-372B-828F-84EE0CFD4BC4 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff8c0f7000 - 0x7fff8c1b0ff7 com.apple.cloudkit.CloudKit /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit < E235B37E-1491-3857-BDE8-38450D4FE8D0 > (482.29 - 482.29)

    0x7fff8c1b4000 - 0x7fff8c1ddff7 (765.50.8) libxpc.dylib < 54D1328E-054E-3DAA-89E2-375722F9D18F > /usr/lib/system/libxpc.dylib

    0x7fff8c24e000 - com.apple.DictionaryServices (1.2 - 250, 3) < 30250542-CBAA-39C1-91AA-B57A5DE17594 > 0x7fff8c27dff7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices

    0x7fff8c27e000 - 0x7fff8c27efff com.apple.SafariDAVNotifier (1.1.1 - 1) < 4AE03738-AAC2-365E-80DA-6FB78903E508 > /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier

    0x7fff8c27f000 - 0x7fff8c2cdfff libcurl.4.dylib (90) < 12E01E4B-24C9-394C-9D2C-85CF85D5F459 > /usr/lib/libcurl.4.dylib

    0x7fff8c72b000 - 0x7fff8c77bff7 com.apple.ExchangeWebServices (6.0 - 243) < 2F2827B5-9884-3593-9AD8-CB1B3C5FE83D > /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices

    0x7fff8c77c000 - 0x7fff8c9c8ff7 com.apple.AddressBook.framework /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook < 24F823D3-C3FC-3AF9-B8B3-C166539DBD11 > (9.0 - 1679.10)

    0x7fff8c9c9000 - 0x7fff8c9d1fff com.apple.frameworks.CoreDaemon /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon < CC53DC12-9231-3C4F-921B-9A770D463323 > (1.3 - 1.3)

    0x7fff8c9d4000 - 0x7fff8cd3f657 libobjc. A.dylib (680) < D55D5807-1FBE-32A5-9105-44D7AFE68C27 >/usr/lib/libobjc. A.dylib

    0x7fff8cd40000 - 0x7fff8ceecfff com.apple.avfoundation (2.0 - 1046.9.11) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < 399D8273-E3CD-3358-9B80-64E6A5CBE278 >

    0x7fff8ceed000 - 0x7fff8cf1afff (501.40.12) libdispatch.dylib < C7499857-61A5-3D7D-A5EA-65DCC8C3DF92 > /usr/lib/system/libdispatch.dylib

    0x7fff8cf1b000 - 0x7fff8cf1dfff com.apple.EFILogin /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin < 38150198-DD7F-3C73-BCAA-C74BB376393A > (2.0 - 2)

    0x7fff8cf1e000 - 0x7fff8cf7efff com.apple.QuickLookFramework /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook < ECD33169-5EB1-3783-AF9E-1AB9240F8358 > (5.0 - 696.7)

    0x7fff8cf7f000 - 0x7fff8d071ff7 libiconv.2.dylib (44) < F05A0A5A-92A9-3668-8F20-F27CBDA26BE9 > /usr/lib/libiconv.2.dylib

    0x7fff8d072000 - 0x7fff8d080fff com.apple.ToneLibrary (< AF05AF34-9BC4-3BA6-81C1-7420F22C9D7D > /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary 1.0 - 1.).

    0x7fff8d081000 - com.apple.ProtocolBuffer (1-243) 0x7fff8d091ff3 < BAE5E5C9-DD59-3BB8-9741-EEFC5E3046EE > /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer

    0x7fff8d092000 - 0x7fff8d092fff com.apple.ApplicationServices (48-48) < ADD57D3A-142F-3EF5-BFD8-EACD82164884 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services

    0x7fff8d093000 - 0x7fff8d09dfff com.apple.corerecents (< 38A216F0-6C91-3CA3-94D5-B6242B1F90D0 > /System/Library/PrivateFrameworks/CoreRecents.framework/Versions/A/CoreRecents 1.0 - 1.).

    0x7fff8d09e000 - 0x7fff8d0a4fff com.apple.MailService (9.3 - 3124) < 6746CEFE-400D-3455-90B8-D8D7A253F3D5 > /System/Library/PrivateFrameworks/MailService.framework/Versions/A/MailService

    0x7fff8d0a5000 - 0x7fff8d265ffb libBLAS.dylib (1162.2) < B4C21826-5EB3-3C6D-B75D-CA4886E2B6A6 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib

    0x7fff8d2a0000 - 0x7fff8d4abfff libFosl_dynamic.dylib (16.24) < 5F9DB82D-FD4B-3952-8531-CE020F93ED49 > /usr/lib/libFosl_dynamic.dylib

    0x7fff8ed9d000 - 0x7fff8eecefff com.apple.syncservices /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices < 3FF7FE43-2822-3E59-A687-D74E4B0ACD0A > (8.1 - 724)

    0x7fff8eecf000 - 0x7fff8ef16ff7 com.apple.AOSAccounts (1.3.1 - 1.10.02) /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts < FFD13410-D077-3EAF-8EFB-5A4F99AE2113 >

    0x7fff8ef1c000 - 0x7fff8ef3efff com.apple.IconServices (68, 1-68, 1) < CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949 > /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s

    0x7fff8ef3f000 - 0x7fff8ef4bff7 com.apple.commonutilities (8.0 - 900) < 18D60822-654D-3532-A47E-A2239EF4E301 > /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ite

    0x7fff8ef56000 - 0x7fff8f124ff3 com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < 076BDE58-8AED-3D47-84FD-548CF8E8EDB9 > (1.11 - 410.14)

    0x7fff8f125000 - 0x7fff8f144ff7 com.apple.ContactsUI /System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI < 445945EB-D7FC-38BA-8A67-5ABB44EF9987 > (9.0 - 1679.10)

    0x7fff8f2df000 - 0x7fff8f57afff com.apple.AOSKit /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit < 301C9141-CD8E-3AEC-95AE-36E70F7CB880 > (1.07 - 233)

    0x7fff8f57b000 - 0x7fff8f5d7fff com.apple.Suggestions /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions < 450BCB58-786F-37DC-9AC7-2E3D13198032 > (5.0 - 180)

    0x7fff8f5d8000 - 0x7fff8f5e0ff7 com.apple.CloudServices (1.0 - 154.50.9) these /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi < CA10E6A3-36AA-3513-90AE-B71B6B1C0094 >

    0x7fff8f5e1000 - 0x7fff8fa7cffb com.apple.GeoServices (1.0 - 1151.49.1) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices < 2D887517-B73D-30FF-91DC-AF6AD91F96B9 >

    0x7fff8fa7d000 - 0x7fff8fabeff7 libGLU.dylib (12.1) < CD7A5916-3E3C-3EF3-A275-B281016B99CB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff8fabf000 - 0x7fff8fae8ff7 libxslt.1.dylib (14.2) < 6E8D0F06-9086-32D3-9D87-3870A1CE9E99 > /usr/lib/libxslt.1.dylib

    0x7fff8fae9000 - 0x7fff8faf4fff com.apple.DirectoryService.Framework /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi < 6F827D0E-0F02-3B09-B2A8-252865EECA7F > (10.11 - 194) this

    0x7fff8fb82000 - 0x7fff8fb9fff7 com.apple.pluginkit.framework (< 0BA96479-0451-3DA9-A2AC-FE1D86D383AB > /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit 1.0 - 1.).

    0x7fff8fbe5000 - 0x7fff8fbf8fff com.apple.CoreBluetooth (< E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E > /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 1.0 - 1.).

    0x7fff8fbf9000 - 0x7fff8fc81fff com.apple.CoreSymbolication (3.1 - 58048.1) < 4730422E-4178-34F9-8550-BB92F2A4F44B > /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication

    0x7fff8fc82000 - 0x7fff8fcaffff com.apple.facetimeservices /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices < 4CA7BA98-BECA-3062-BADC-3BEEAAF66D3B > (10.0 - 1000)

    0x7fff8fcb0000 - 0x7fff8fcb2fff com.apple.CoreDuetDebugLogging (1.0-1) < 7C932160-AC9C-3173-900F-98138E829CB3 > /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging

    0x7fff8fcb3000 - 0x7fff8fceaff7 com.apple.CoreSpotlight (1.0 - 81, 4) < C1F47729-FB13-32FF-A569-C63FA6C278E9 > /System/Library/PrivateFrameworks/CoreSpotlight.framework/Versions/A/CoreSpotli ght

    0x7fff8fceb000 - 0x7fff90161fff com.apple.CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation < 943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D > (6: 9 - 1258.1)

    0x7fff90171000 - 0x7fff9017aff3 (150.40.1) libsystem_notify.dylib < D48BDE34-0F7E-34CA-A0FF-C578E39987CC > /usr/lib/system/libsystem_notify.dylib

    0x7fff90989000 - 0x7fff909a7ff7 (3248.50.21) libsystem_kernel.dylib < 78E54D59-D2B0-3F54-9A4A-0A68D671F253 > /usr/lib/system/libsystem_kernel.dylib

    0x7fff909ab000 - 0x7fff909d4ffb libRIP.A.dylib (957) < 5F18F20D-5921-3314-A9F8-F1B1CB62C83D > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib

    0x7fff909d5000 - 0x7fff909daff7 com.apple.AssetCacheServices (14.1 - 14.1) < 5F249F84-660A-3E94-B073-6729E7ED56D9 > /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/Asset CacheServices

    0x7fff90bf0000 - 0x7fff90d1dff3 com.apple.CoreText /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText < 08E8640E-6602-3A00-BC28-94235FD311B4 > (352.0 - 494.11)

    0x7fff90d24000 - 0x7fff90d2cfff libGFXShared.dylib (12.1) < 5A0C2493-200C-30BE-97D5-8E8C0B8E604D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib

    0x7fff90d2d000 - 0x7fff90ef6ff7 com.apple.ImageIO.framework (3.3.0 - 1450) < 14333D7C-1DB1-3928-AF9C-9470235ED2CF > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff90fb5000 - 0x7fff91222fff (2: 6-932) com.apple.imageKit < FAE317B8-DF15-3096-AFAC-464913BF2F3B > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit

    0x7fff91223000 - 0x7fff91232fe7 com.apple.AppleFSCompression (81.20.2 - 1.0) < 2FE122A9-5265-320A-9600-FFC5CE4DE197 > /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression

    0x7fff91233000 - 0x7fff91251ff7 com.apple.frameworks.preferencepanes /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes < 6D9A4009-DCE8-3FC5-91E4-01433C63E4A6 > (16, 0-16, 0)

    0x7fff91255000 - 0x7fff912bbff7 (583.50.1) libsystem_network.dylib < B52DAB73-92DC-3DA7-B9F4-B899D66445C1 > /usr/lib/system/libsystem_network.dylib

    0x7fff912d5000 - 0x7fff912daff7 libmacho.dylib (875.1) < 318264FA-58F1-39D8-8285-1F6254EE410E > /usr/lib/system/libmacho.dylib

    0x7fff912f0000 - 0x7fff912f1fff libsystem_blocks.dylib (65) < 1244D9D5-F6AA-35BB-B307-86851C24B8E5 > /usr/lib/system/libsystem_blocks.dylib

    0x7fff912f2000 - 0x7fff912f4ff7 libRadiance.dylib (1450) < 0C0DACDA-2040-3D22-A8E7-7035AB624E4A > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib

    0x7fff912f5000 - 0x7fff912fdfef libcldcpuengine.dylib (2.7.3) < 511DF05F-B3A1-3810-9901-1F5C1EA278C4 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib

    0x7fff91360000 - 0x7fff91407fff com.apple.LanguageModeling (1.0-1) < 58C18A47-BDE7-3CBE-81C0-797029D170A1 > /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling

    0x7fff91408000 - 0x7fff9154dfff com.apple.QTKit (7.7.3 - 2943.10) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit < 9D0EA81D-7BDE-3B47-B300-5C53C5EE4846 >

    0x7fff91576000 - 0x7fff91626fff com.apple.backup.framework (1.7.4 - 1.7.4) < F304E9D1-991A-379E-9659-BF85C35B4808 > /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff916c6000 - 0x7fff916c8fff com.apple.OAuth /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth < B147CF79-A687-3466-BCAE-F05243DE71F7 > (25-25)

    0x7fff918b0000 - 0x7fff918b5fff com.apple.DiskArbitration /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration < F55902AA-5316-3255-A701-FDED5B553065 > (2.7 - 2.7)

    0x7fff918df000 - 0x7fff91946fff com.apple.framework.CoreWiFi /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi < 993592F1-B3F1-3FAD-87BD-EA83C361BCCF > (11, 0 - 1101.20)

    0x7fff91947000 - 0x7fff91972fff com.apple.idsfoundation (10.0 - 1000) < 4735029B-DAE5-31E4-AD40-C5C52E328B31 > /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion

    0x7fff9199c000 - 0x7fff919b2fff com.apple.CoreMediaAuthoring (2.2 - 953) < DAC012D0-276D-3AF6-A6E9-EA32E692B923 > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring

    0x7fff919b3000 - 0x7fff919ebff7 com.apple.Accounts /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts < 8A356D32-2E81-3470-AFA2-8C4FA7F1DA0C > (113-113)

    0x7fff919ec000 - 0x7fff91a05fff com.apple.openscripting (1.7.1 - 169.1) < 36EBF6A7-334A-3197-838F-E8C7B27FCDBB > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting

    0x7fff91a80000 - 0x7fff91a80fff com.apple.AOSMigrate (< 17A49E04-567B-3B4F-9975-E8F83AE8357D > /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 1.0 - 1.).

    0x7fff91a85000 - 0x7fff91ac3ff7 libGLImage.dylib (12.1) < BB1F1A93-5101-3906-AB17-8D83FCB200F9 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib

    0x7fff91ac4000 - 0x7fff91ac5ffb libremovefile.dylib (41) < 552EF39E-14D7-363E-9059-4565AC2F894E > /usr/lib/system/libremovefile.dylib

    0x7fff91ac6000 - 0x7fff91accfff com.apple.XPCService (< 5E2122D6-FFA2-3552-BF16-9FD3F36B40DB > /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 2.0 - 1).

    0x7fff91ad9000 - 0x7fff91af5ff7 (67.40.1) libsystem_malloc.dylib < 5748E8B2-F81C-34C6-8B13-456213127678 > /usr/lib/system/libsystem_malloc.dylib

    0x7fff91af6000 - 0x7fff91c74fff com.apple.UIFoundation (1.0 - 436.1) < AABB5267-E7B7-3D75-B051-E665BDA8DEF4 > /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n

    0x7fff91c75000 - 0x7fff91efcff3 com.apple.CFNetwork (760.5.1 - 760.5.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < EE9426D1-F11C-3DD4-AE08-EA29AEB27177 >

    0x7fff91efd000 - 0x7fff91f2aff7 com.apple.CalendarUIKit (1.0 - 124, 1) < C48C9632-400F-3277-A589-20932A18E8A1 > /System/Library/PrivateFrameworks/CalendarUIKit.framework/Versions/A/CalendarUI Kit

    0x7fff91f30000 - 0x7fff91f4cff7 libextension.dylib (78) < FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E > /usr/lib/libextension.dylib

    0x7fff91f4d000 - 0x7fff921bcfff com.apple.AuthKit (< E32E0955-FE8D-3215-9349-C34BEE4AA550 > /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 1.0 - 1.).

    0x7fff921bd000 - 0x7fff9220ffff com.apple.ImageCaptureCore /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo < 9F3123D8-29D2-332F-AD6B-AB9BF1A58022 > (7.0 to 7.0) re

    0x7fff92210000 - com.apple.CalendarAgentLink (8.0 - 250) < EA60A52B-6005-312B-99E0-0DD4F479EF8A > /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink 0x7fff92229fff

    0x7fff923e5000 - 0x7fff92436fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < EA7D4F3B-062B-3C81-A98C-C89264D00D48 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff92442000 - 0x7fff9245dff7 libCRFSuite.dylib (34) < 078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3 > /usr/lib/libCRFSuite.dylib

    0x7fff9245e000 - 0x7fff929b6ff7 com.apple.MediaToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < BD296DBD-BEC9-3B25-B859-E88A009BB879 >

    0x7fff929b7000 - 0x7fff929bffef libsystem_platform.dylib (74.40.2) < 29A905EF-6777-3C33-82B0-6C3A88C4BA15 > /usr/lib/system/libsystem_platform.dylib

    0x7fff929c0000 - 0x7fff929c2ff7 libquarantine.dylib (80) < 0F4169F0-0C84-3A25-B3AE-E47B3586D908 > /usr/lib/system/libquarantine.dylib

    0x7fff929c3000 - 0x7fff929d5fff libsasl2.2.dylib (209) < 11C7D200-0CA5-30F4-A19A-178CA81D48FE > /usr/lib/libsasl2.2.dylib

    0x7fff929d6000 - 0x7fff929d6fff libenergytrace.dylib (10.40.1) < 0A491CA7-3451-3FD5-999A-58AB4362682B > /usr/lib/libenergytrace.dylib

    0x7fff929d7000 - 0x7fff929d7fff com.apple.IOPlatformPluginFamily (1.0-1) < 61D1D438-9DE8-34A0-ADC0-9789517515E8 > /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/I OPlatformPluginFamily

    0x7fff929d8000 - 0x7fff92a47fff com.apple.datadetectorscore (7.0 - 460) < FA46DEE8-B25B-3E84-B067-6A31193A0885 > /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    0x7fff92a48000 - 0x7fff92aa6fff com.apple.SystemConfiguration (1, 14 - 1.14) < D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747 > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi setting

    0x7fff92aaf000 - 0x7fff92c15fff com.apple.MapKit (1.0 - 1651.44.2) /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit < 1D96793D-AB70-326E-85EA-65DE75973623 >

    0x7fff92c16000 - 0x7fff92c81ff7 com.apple.framework.CoreWLAN /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN < 3B35C543-7FCE-333F-80C1-432FA41DDCDE > (11, 0 - 1101.20)

    0x7fff92c82000 - 0x7fff92cf9feb (335.50.1) libcorecrypto.dylib < B5C05FD7-A540-345A-87BF-8E41848A3C17 > /usr/lib/system/libcorecrypto.dylib

    0x7fff92d0a000 - 0x7fff92d0dff7 libCoreFSCache.dylib (119.5) < 2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib

    0x7fff92d0e000 - 0x7fff92d1cfff com.apple.IntlPreferences (2.0 - 192) < A170BA4F-D39C-378C-99B5-CCB7C4F154C1 > /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences

    0x7fff92d1d000 - 0x7fff92da6ff7 com.apple.PerformanceAnalysis (1.0-1) < 2064F7E8-5C3D-3E18-8029-2D832D13E2A2 > /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis

    0x7fff92da7000 - 0x7fff93265fcf com.apple.vImage (8.0 - 8, 0) < 85FB412E-EB30-3433-A79B-B3970FC83580 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework, Versions, A, vImage

    0x7fff93304000 - 0x7fff933e4ff7 unorm8_rgba.dylib (2.7.3) < 9EB6C346-CFF6-32D7-B4A1-2409DFBCB216 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib

    0x7fff933e5000 - 0x7fff933edfff com.apple.NetFS /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS < 842A5346-24C3-3F22-9ECF-E586A10EA1F2 > (6.0 - 4.0)

    0x7fff933f7000 - 0x7fff93405fff com.apple.opengl (12.1.0 - 12.1.0) < BBC4458E-12FC-3C9B-BF7E-6985D61C7A67 > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff93406000 - 0x7fff93409fff com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface < A0037B0A-277A-393E-9BF6-688595BD564D >

    0x7fff9340a000 - 0x7fff9341ffff com.apple.AppContainer (4.0 - 261.40.2) < F220E702-1C00-3BD2-9943-C7E75C3B4418 > /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r

    0x7fff93615000 - 0x7fff9361aff3 libunwind.dylib (35.3) < F6EB48E5-4D12-359A-AB54-C937FBBE9043 > /usr/lib/system/libunwind.dylib

    0x7fff93664000 - 0x7fff93664fff com.apple.Carbon /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon < 8F6ED602-5943-3E29-A793-BC331E2C183D > (154 to 157)

    0x7fff9368c000 - 0x7fff936a0fff com.apple.CoreDuetDaemonProtocol (1.0-1) < 1D60D60C-914A-3BAB-8607-79F68F4C712E > /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol

    0x7fff936a1000 - 0x7fff936a8ff7 com.apple.phonenumbers (1.1.1 - 105) < A616AFB5-2336-385A-B058-16A423D2B21B > /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s

    0x7fff93780000 - 0x7fff93783fff (460.50.4) libsystem_sandbox.dylib < 150A9D3D-F69E-32F7-8C7B-8E72CAAFF7E4 > /usr/lib/system/libsystem_sandbox.dylib

    0x7fff93784000 - 0x7fff937adfff com.apple.ProtectedCloudStorage (1.0-1) < 7436B2B3-943A-3500-B099-80F133B3E002 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage

    0x7fff93915000 - 0x7fff939cffff com.apple.DiscRecording (9.0.1 - 9010.4.3) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording < 540853B2-B123-3560-8023-C92EE229051A >

    0x7fff939d0000 - 0x7fff93aa4fff com.apple.MailCore (9.3 - 3124) < 85CFA708-4BB5-3DB2-A85E-B7AEF5AC0E3C > /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore

    0x7fff93aa5000 - 0x7fff93aa7fff com.apple.loginsupport (1.0-1) < 9B2F5F9B-ED38-313F-B798-D2B667BCD6B5 > /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport

    0x7fff93c86000 - 0x7fff93cd5ff7 com.apple.opencl (2.7.0 - 2.7.0) < C3AFF6D2-90FE-3108-A2D5-A1EBCFC5D627 > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff93cd9000 - 0x7fff93d04ffb (33.20.2) libarchive.2.dylib < 6C370A21-63FD-3A68-B4B3-5333F24B770B > /usr/lib/libarchive.2.dylib

    0x7fff93d11000 - 0x7fff93fa7fff libmecabra.dylib (696.5) < EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9 > /usr/lib/libmecabra.dylib

    0x7fff93fa8000 - 0x7fff94011fff com.apple.framework.internetaccounts (2.1 - 210) < 063FF467-215F-3E81-B02B-02E8B9750F24 > /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts

    0x7fff94020000 - 0x7fff940addd7 com.apple.AppleJPEG (< 558ACADA-C41F-3EEF-82A0-C2D7B13C5428 > /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 1.0 - 1.).

    0x7fff940ae000 - 0x7fff940bffff libcmph.dylib (6) < BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF > /usr/lib/libcmph.dylib

    0x7fff940c0000 - 0x7fff940d5ff3 libCGInterfaces.dylib (317.9) < 473434E1-5269-3077-A047-D05E024AE631 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Libraries/libCGInterfaces.dylib

    0x7fff940d6000 - 0x7fff94775ff7 com.apple.JavaScriptCore (11601 - 11601.6.13) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < 93B52DD9-7810-3562-8605-B97965F6DB94 >

    0x7fff94790000 - 0x7fff947dcfff 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

    0x7fff947dd000 - 0x7fff947dffff com.apple.SecCodeWrapper (4.0 - 261.40.2) < 1F832591-59A8-3B3F-943F-D6D827463782 > /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper

    0x7fff947e0000 - 0x7fff947e2ff7 com.apple.securityhi (9.0 - 55006) < 1E7BE52B-97EA-371A-AECA-1EE2AD246D8A > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI

    0x7fff9480d000 - 0x7fff9480efff liblangid.dylib (122) < 9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822 > /usr/lib/liblangid.dylib

    0x7fff9480f000 - 0x7fff9481effb 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

    0x7fff9481f000 - 0x7fff94836fff libmarisa.dylib (4) < E4919B03-D9BD-3AF8-B436-C415C98E3F0A > /usr/lib/libmarisa.dylib

    0x7fff94837000 - 0x7fff94838ff7 libodfde.dylib (23) < F84CB160-D638-3190-B6F5-A262E9AF09F6 > /usr/lib/libodfde.dylib

    0x7fff94b20000 - 0x7fff94b4eff7 (460.50.4) libsandbox.1.dylib < C6797DA3-DF51-3774-9D02-31670A820D18 > /usr/lib/libsandbox.1.dylib

    0x7fff94b4f000 - 0x7fff94b76fff com.apple.ChunkingLibrary (167-167) < AD7F285C-005E-36BB-98A3-5826413533BE > /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking library

    0x7fff94b79000 - 0x7fff94b90ff7 (83.40.5) libsystem_coretls.dylib < C90DAE38-4082-381C-A185-2A6A8B677628 > /usr/lib/system/libsystem_coretls.dylib

    0x7fff94b91000 - 0x7fff94b9cfff libGL.dylib (12.1) < 70D51643-04AC-3400-8F11-A6FC25985289 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff94bbf000 - 0x7fff94bcbff7 com.apple.OpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory < 31A67AD5-5CC2-350A-96D7-821DF4BC4196 > (10.11 - 194)

    0x7fff94bcc000 - 0x7fff94c5bfff com.apple.CorePDF /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF < 849BBFF6-0700-3ED1-98DF-A6E93B9B707F > (4.0 - 4)

    0x7fff94c8a000 - 0x7fff94d60ffb com.apple.DiskImagesFramework (10.11.4 - 417,4) < 6D26E255-D7BB-3A9D-8B6F-E07D2DBB68AE > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x7fff94d84000 - 0x7fff94d86ff7 (802.40.13) libsystem_configuration.dylib < 3DEB7DF9-6804-37E1-BC83-0166882FF0FF > /usr/lib/system/libsystem_configuration.dylib

    0x7fff94da9000 - 0x7fff94eb7ff3 com.apple.desktopservices (1.10.3 - 1.10.3) < 3A6906D4-C0B8-30D1-B589-0466E5E42B69 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv

    0x7fff94ec0000 - 0x7fff94fddfff libsqlite3.dylib (216,4) < DC3D59E7-91A3-374F-957C-6699729CD82B > /usr/lib/libsqlite3.dylib

    0x7fff94fde000 - com.apple.EmailAddressing (9.0 - 3007) < FD3686F1-981C-3B59-BFE4-8B64ACF3E7A4 > 0x7fff94fe3fff pressure /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd

    0x7fff94fe4000 - 0x7fff94fedff7 com.apple.CommonAuth /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth < 4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF > (4.0 - 2.0)

    0x7fff94ff1000 - 0x7fff94ff9fff com.apple.AppleSRP (< 840A5C20-6452-36BB-ACF7-29BA6CBF7C48 > /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 5.0 - 1).

    0x7fff95859000 - 0x7fff95955ff7 libFontParser.dylib (158.6) < 267A9AE4-4138-3112-8D73-BDFDC96568FF > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib

    0x7fff95956000 - 0x7fff95956ff7 libunc.dylib (29) < DDB1E947-C775-33B8-B461-63E5EB698F0E > /usr/lib/system/libunc.dylib

    0x7fff95957000 - 0x7fff9597bfff com.apple.MultitouchSupport.framework (304.12 - 304.12) < 65CB7653-EACD-3ADB-ABB6-2E0671708301 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport

    0x7fff9597c000 - 0x7fff9597fff7 com.apple.iChat.InstantMessage (8.0 - 5017) < 989738B4-0269-3DD6-AAEC-2B712FB765D5 > /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage

    0x7fff95980000 - 0x7fff959dbff7 libTIFF.dylib (1450) < 5BB63D48-B807-31FB-B13F-05C60584707E > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff959dc000 - 0x7fff959e4fff (385.40.36) libsystem_networkextension.dylib < 66095DC7-6539-38F2-95EE-458F15F6D014 > /usr/lib/system/libsystem_networkextension.dylib

    0x7fff95b49000 - 0x7fff95c0cfff com.apple.imcore /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore < C3F22E18-ECB0-32B7-A596-A5EFCF84B192 > (10.0 - 1000)

    0x7fff95c12000 - 0x7fff95d24fef libvDSP.dylib (563.5) < 5702650E-DF08-3D58-B16F-9EF0A28702B3 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

    0x7fff95d25000 - 0x7fff95dc5fff com.apple.Metadata (10.7.0 - 972.34) a.framework/Versions/A/Metadata /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat < A93B485D-094C-3024-8CBB-D9E035FB83C4 >

    0x7fff95e06000 - 0x7fff95e09ffb libScreenReader.dylib (426.42) < 16FC79D1-4573-3E90-945F-CBA22D5185FD > /usr/lib/libScreenReader.dylib

    0x7fff95e0a000 - 0x7fff95e85fff com.apple.accounts.AccountsDaemon (113-113) < 75054597-D576-3830-A731-82F04184172A > /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD Nicolas

    0x7fff95e93000 - 0x7fff962c1fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) < E54028EA-4217-3078-A2B1-C52E4214D59E > /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff962e3000 - 0x7fff9632dfff com.apple.sociald.Social (?) < 48CEAEF0-38F3-3736-A504-64A59C101FE6 > /System/Library/Frameworks/Social.framework/Versions/A/Social

    0x7fff9632e000 - 0x7fff96339fff com.apple.CrashReporterSupport (10.11 - 718) < 05892B57-F2CD-3C84-B984-0417F6B361DB > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport

    0x7fff9633a000 - 0x7fff9633cff7 com.apple.SafariServices.framework (11601 - 11601.6.17) vices /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer < 98035563-BCB5-3BCA-A519-FB27B4F02998 >

    0x7fff9633d000 - 0x7fff963f5ff7 com.apple.CoreDuet (< FC1EAEE1-73A4-3B13-A634-1D2A94D0C0B7 > /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 1.0 - 1.).

    0x7fff967e6000 - 0x7fff96817fff com.apple.contacts.ContactsAutocomplete (1.0 - 57: 3) < B39C9840-8EE6-3B42-AD6A-B4506AB98641 > /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/Versions/A/Con tactsAutocomplete

    0x7fff96818000 - 0x7fff968adfff (10, 9-214) com.apple.ink.framework < 1F76CF36-3F79-36B8-BC37-C540AF34B338 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

    0x7fff968ae000 - 0x7fff968b8fff com.apple.NetAuth /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth < D692B1EF-534F-3892-8E2F-2BBA7C8AFD74 > (6.0 - 6.0)

    0x7fff9693e000 - 0x7fff9696eff3 com.apple.CoreAVCHD (5.8.0 - 5800.4.2) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD < 4AAFB1C4-3708-30F9-ACFA-90564347204C >

    0x7fff969ce000 - 0x7fff96b18ff7 com.apple.coreui (2.1 - 366.1) < 8138636F-A0A7-31C7-896C-5F5747FA1B2A > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff96b2a000 - 0x7fff96b7bff7 libcups.2.dylib (435.2) < 91584A40-214D-33E8-A613-CE22289037C8 > /usr/lib/libcups.2.dylib

    0x7fff96b7c000 - 0x7fff96b82fff com.apple.IOAccelerator (205, 10-205, 10) < E46ED853-C2CC-3F29-A7DD-5E9351A2E754 > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor

    0x7fff96bc4000 - 0x7fff96bdaff7 (1162.2) libLinearAlgebra.dylib < FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib

    0x7fff96be6000 - 0x7fff96beafff libcache.dylib (75) < 9548AAE9-2AB7-3525-9ECE-A2A7C4688447 > /usr/lib/system/libcache.dylib

    0x7fff96bfe000 - 0x7fff96d31fff com.apple.ical.EventKit (3.0 - 487, 4) < B71B80DB-1D9D-38FB-9467-8ED5CE1E804C > /System/Library/Frameworks/EventKit.framework/Versions/A/EventKit

    0x7fff96d32000 - 0x7fff97f9aff7 com.apple.CoreGraphics (1.600.0 - 957) < 0AD5EC17-569E-3864-A637-AD720F5AE0BE > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff97fae000 - 0x7fff97fb6fff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) s.framework/Versions/A/FSEvents /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent < 7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A >

    0x7fff97fb7000 - 0x7fff97fbffff libMatch.1.dylib (27) < 3AC0BFB8-7E69-3DBE-A175-7F3946FC4554 > /usr/lib/libMatch.1.dylib

    0x7fff97fc0000 - 0x7fff97fc1fff com.apple.TrustEvaluationAgent (2.0 - 25) < 0239494E-FEFE-39BC-9FC7-E251BA5128F1 > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent

    0x7fff97fc2000 - 0x7fff97fc3ff3 com.apple.print.framework.Print (10.0 - 266) < 3E85F70C-D7D4-34E1-B88A-C1F503F99CDA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print

    0x7fff98028000 - 0x7fff98049ff7 com.apple.persistentconnection (1.0 - 1.0) < 00A24D59-1664-3F2C-8272-85B877EA7821 > /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/Per sistentConnection

    0x7fff9804a000 - 0x7fff983c5ffb com.apple.VideoToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < 2B21F9B2-66A2-3900-84A5-0AB66F8056E4 >

    0x7fff983c6000 - 0x7fff983c6fff com.apple.audio.units.AudioUnit /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit < 93C1D642-37D4-3692-AD35-DCAD04F9610B > (1.13 - 1.13)

    0x7fff983c7000 - 0x7fff983dffff com.apple.login /System/Library/PrivateFrameworks/login.framework/Versions/A/login < E02F6100-10F5-3574-9F9F-11709CC4D1C8 > (3.0 - 3.0)

    0x7fff983e0000 - 0x7fff98403ff7 com.apple.speech.LatentSemanticMappingFramework (2.12.1 - 2.12.1) < DB9F6DE8-5FD1-33DC-B010-33BEA74764CB > /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping

    0x7fff9847e000 - 0x7fff98773fff com.apple.HIToolbox (2.1.1 - 807.2) < 36413C45-36AF-34EF-9C0E-F18B31D1E565 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra framework/Versions/A/HIToolbox

    0x7fff98774000 - 0x7fff9880afff com.apple.ColorSync (4.9.0 - 4.9.0) < 8FC37E20-6579-3CB2-9D49-BC39FC38DF87 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync

    0x7fff9880b000 - 0x7fff98811ff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) < 9E5A980A-F455-32D5-BBEE-3BD6018CC45E > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition

    0x7fff9881a000 - 0x7fff98aaaff7 com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < F14992BD-D9D8-36EE-8A51-989A220E1846 > (6.19 - 844)

    0x7fff98ab0000 - 0x7fff98ad5ff7 libPng.dylib (1450) < EB65B96A-B190-36A8-9F9D-F3A3020B267D > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff98b41000 - 0x7fff98b79ff7 com.apple.RemoteViewServices (2.0 - 101) < B2881449-8CFE-3D1C-B4BF-155640392533 > /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices

    0x7fff98b90000 - 0x7fff98cecff3 com.apple.WebKitLegacy (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy < 3F9A3DDF-AA37-388E-8C96-CFF86DB0D16E >. framework/Versions/A/WebKitLegacy

    0x7fff98cfe000 - 0x7fff98d03fff com.apple.ImageCapture /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture < ACECF0B7-7D92-3A22-BF47-E8FADF4C5378 > (9, 0-9, 0). framework/Versions/A/ImageCapture

    0x7fff98d04000 - 0x7fff98f9eff3 com.apple.security (7.0 - 57337.50.23) /System/Library/Frameworks/Security.framework/Versions/A/Security < 8B6CF71D-A63E-34C9-9227-0AACAB643584 >

    0x7fff98fec000 - 0x7fff99005fff com.apple.CFOpenDirectory (10.11 - 194) < 11F95672-55E0-3F9D-9171-5E8C56AEE948 > /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory

    0x7fff99006000 - 0x7fff99408fff libLAPACK.dylib (1162.2) < 42238ED4-6B7A-39D0-BFF2-304A0C287213 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib

    0x7fff99409000 - 0x7fff9942bff7 com.apple.framework.familycontrols (4.1 - 410) < 36DCC2B7-4FDF-397D-BB14-36CACED9E946 > /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon three

    0x7fff9942c000 - 0x7fff9943afff libxar.1.dylib (302) < 03207F66-2C4A-3DBD-8D81-70F4C85903C4 > /usr/lib/libxar.1.dylib

    0x7fff9943b000 - 0x7fff99446fff (3248.50.21) libkxld.dylib < 99195052-038E-3490-ACF8-76F9AC43897E > /usr/lib/system/libkxld.dylib

    0x7fff99447000 - 0x7fff9944afff libCoreVMClient.dylib (119.5) < 560D70FB-709F-3030-96C9-F249FCB7DA6D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib

    0x7fff994cd000 - 0x7fff994d7fff com.apple.KerberosHelper (4.0 - 1.0) < 67D88B2C-A54B-34FF-ABF3-2D3736879730 > /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper

    0x7fff99523000 - 0x7fff9952cff7 (138.10.4) libsystem_pthread.dylib < 3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559 > /usr/lib/system/libsystem_pthread.dylib

    0x7fff9952d000 - 0x7fff99532ff7 libheimdal - asn1.dylib (453.40.10) < 981DE40B-FA16-36F7-BE92-8C8A115D6CD9 > /usr/lib/libheimdal-asn1.dylib

    0x7fff99533000 - 0x7fff99543fff (1162.2) libSparseBLAS.dylib < 6F591A0F-80D0-384D-8304-B035C4ED1BBD > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libSparseBLAS.dylib

    0x7fff99544000 - 0x7fff995eafff com.apple.CoreUtils /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils < 60A9A7F3-EB0E-3CCF-8925-D18A9CD4B94D > (4.0 - 400.28)

    0x7fff995f8000 - 0x7fff996e7fff libxml2.2.dylib (29.7) < 32BBF51E-B084-3FC2-AE9C-C008BE84102B > /usr/lib/libxml2.2.dylib

    0x7fff996e8000 - 0x7fff996fffff com.apple.iCal.CalendarDraw (8.0 - 1833) < 61117986-E873-3FEB-96A4-EFC3D2D8CA40 > /System/Library/PrivateFrameworks/CalendarDraw.framework/Versions/A/CalendarDra w

    0x7fff99700000 - 0x7fff99770fff com.apple.ids /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS < 12F08B55-D23E-351A-BB2C-B9D691D4044F > (10.0 - 1000)

    0x7fff99771000 - 0x7fff99773fff com.apple.marco /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco < FA3176F5-4C71-3CB7-B384-9662513E9B4B > (10.0 - 1000)

    0x7fff997c9000 - 0x7fff997d1ffb (625.50.5) libsystem_dnssd.dylib < 4D10E12B-59B5-386F-82DA-326F18028F0A > /usr/lib/system/libsystem_dnssd.dylib

    0x7fff997d2000 - 0x7fff99803fff com.apple.GSS /System/Library/Frameworks/GSS.framework/Versions/A/GSS < B490333A-3B3E-397A-AD75-68846E9A9140 > (4.0 - 2.0)

    0x7fff99804000 - 0x7fff99849ff3 libFontRegistry.dylib (155,2) < A70DD497-35F3-34DA-9C19-F4B90080E961 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff99a6d000 - 0x7fff99a89ff3 libresolv.9.dylib (60) < A650B5C8-1950-36A0-86D1-0B2465318BFA > /usr/lib/libresolv.9.dylib

    0x7fff99af2000 - 0x7fff99b1bfff libc ++ abi.dylib (125) < DCCC8177-3D09-35BC-9784-2A04FEC4C71B > /usr/lib/libc++abi.dylib

    0x7fff99b1c000 - 0x7fff99c0eff7 libJP2.dylib (1450) < 8337298A-7911-3B56-85C7-BBA2D8D844EE > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff99c66000 - 0x7fff99c91ff7 com.apple.AddressBook.ContactsFoundation (8.0 - 2137.1) < BAE70E9D-BCC8-3650-B554-6D646388EDEF > /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation

    0x7fff99c92000 - 0x7fff99db4fff com.apple.CalendarUI /System/Library/PrivateFrameworks/CalendarUI.framework/Versions/A/CalendarUI < C98F5199-F00B-34C2-96F3-14057D4776B1 > (8.0 - jd367.3)

    0x7fff99db5000 - 0x7fff99ddefff (477.50.4) libsystem_info.dylib < FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D > /usr/lib/system/libsystem_info.dylib

    0x7fff99ddf000 - 0x7fff99dfeff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < 90477FAE-B835-3931-80FB-FDFF02B21D9D >

    0x7fff99ef2000 - 0x7fff9a232fff com.apple.WebKit (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit < F54752A4-B5AA-3993-BA9A-83F4B3AA176E >

    0x7fff9a234000 - 0x7fff9a262ff7 com.apple.CoreServicesInternal (248, 2-248, 2) < 6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B > /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal

    0x7fff9a263000 - 0x7fff9a287fff 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

    0x7fff9a288000 - 0x7fff9a288fff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < A4FFF004-53B0-3EAC-A13F-5416BFFD8886 > (728.12 - 728.12)

    0x7fff9a2bd000 - 0x7fff9a2c2fff com.apple.MediaAccessibility (1.0 - 79) < C5E61B45-1967-3602-A48C-31E132B998B2 > /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi responsibility

    0x7fff9a2c3000 - 0x7fff9a2c5fff libCVMSPluginSupport.dylib (12.1) < D81B3D8D-B83F-3918-BD4B-6C794A30AF9F > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib

    0x7fff9a2c6000 - 0x7fff9a2ddff7 (323.50.1) libsystem_asl.dylib < 41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9 > /usr/lib/system/libsystem_asl.dylib

    0x7fff9a2de000 - 0x7fff9a3b7fff com.apple.CoreMedia (1.0 - 1731.15.204) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < 4BFDD68E-9411-3358-8679-BB3EDA94F9A2 >

    0x7fff9a3ca000 - 0x7fff9a40eff7 com.apple.CoreSuggestions (1.0 - 356.21) < 8B342288-66DB-3DF2-90E4-714AD483B4F6 > linked /System/Library/PrivateFrameworks/CoreSuggestions.framework/Versions/A/CoreSugg

    0x7fff9a4bf000 - 0x7fff9a4caff7 (60075.50.1) libcommonCrypto.dylib < 93732261-34B4-3914-B7A2-90A81A182DBA > /usr/lib/system/libcommonCrypto.dylib

    0x7fff9a4cb000 - 0x7fff9a51bff7 com.apple.Symbolication (1.4 - 58044) < F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2 > /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion

    0x7fff9ab2b000 - 0x7fff9aba2ff7 com.apple.MMCS (1.3 - 357, 1) < 549FBEFC-55F7-3101-BF51-A0B1F7CF2B46 > /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS

    0x7fff9aba3000 - 0x7fff9aba6ff3 libCGXCoreImage.A.dylib (957) < D561A978-8876-3C15-998A-5C6A4827B680 > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib

    0x7fff9aba7000 - 0x7fff9abecff7 (24, 4-24, 5) com.apple.coreservices.SharedFileList < 1D2AD77B-778F-3253-A295-3D0A32A8121C > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedF ileList.framework/Versions/A/SharedFileList

    0x7fff9abed000 - 0x7fff9ac48fff com.apple.coredav (1.0.1 - 307) < D1BDC4FC-44F8-31F7-9C8D-4422A1641BF6 > /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV

    0x7fff9ac49000 - 0x7fff9ac51fff com.apple.xpcobjects /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects < 820D71C8-B9DB-3214-97CD-204A2FE6CD6E > (103-103)

    0x7fff9ac52000 - 0x7fff9ac5efff 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

    0x7fff9ac5f000 - 0x7fff9aca5ff7 libauto.dylib (186) < 999E610F-41FC-32A3-ADCA-5EC049B65DFB > /usr/lib/libauto.dylib

    0x7fff9aca6000 - 0x7fff9acd5ffb com.apple.datadetectors (5.0 - 308) < 1949868C-BDCD-3772-BDBD-D7E9F2CC1451 > t /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect

    0x7fff9acde000 - 0x7fff9ace3fff com.apple.TCC (< F5EEB2D3-9517-3975-97BE-22CB8E11B8A3 > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x7fff9ace4000 - 0x7fff9ace7fff libspindump.dylib (197,1) < 48F4C673-9F0C-38BE-B550-88241E812518 > /usr/lib/libspindump.dylib

    0x7fff9ae17000 - 0x7fff9ae83ff7 com.apple.contacts.Contacts /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts < 2726B3FB-7A00-34E0-8BBF-7E5395C35527 > (1.0 - 2137.1)

    0x7fff9ae84000 - 0x7fff9ae86ff7 com.apple.diagnosticlogcollection (10.0 - 1000) < 80160173-9F22-300C-BD1A-1CDBB1C39FC6 > /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection

    0x7fff9ae87000 - 0x7fff9ae9fff7 com.apple.CalendarStore (8.0 - 1479) < 4B38242B-8D2F-3130-97F7-3F4BAA69FAEC > /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore

    0x7fff9aeb2000 - 0x7fff9aed1ff7 com.apple.contacts.vCard /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard < 41529BD9-1BCC-3A62-92BA-2A7110867355 > (1.0 - 2137.1)

    Summary of the external change:

    Calls made by other processes for this process:

    task_for_pid: 1

    thread_create: 0

    thread_set_state: 0

    Calls made by this process:

    task_for_pid: 0

    thread_create: 0

    thread_set_state: 0

    Calls made by all processes on this machine:

    task_for_pid: 1965

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

    ReadOnly part of libraries: Total = M = 0 K (0%) swapped_out_or_unallocated=330.6M(100% resident 330.6)

    Regions in writing: Total = 1.1 G written = 0 K (0%) resident = 0 K (0%) swapped_out = 0 K (0%) unallocated=1.1G(100%)

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

    ===========                       =======  =======

    Accelerate.Framework 128K 2

    2048K 2 follow-up activity

    CG backup stores 224K 3

    CG image 320 K 58

    CG shared images 240K 6

    CoreAnimation 4652 K 103

    CoreData Object ID 4100 K 3

    CoreUI 1020 K 15 image data

    CoreUI file 288K 7 frame

    Ship 8192 K 2 continuations

    Foundation 4K 2

    IO picture 64K 17

    JS JIT generated code 8K 3

    JS JIT generated code (reserved) 1.0 G 2 reserved address space VM (not assigned)

    Kernel Alloc once 8 K 3

    MALLOC 74.4 M 27

    MALLOC 32K 7 cover page

    Tag memory 242 12K 2

    Tag 251 92K 3 memory

    OpenCL                                24K        4

    Corpse process Info 2048 K 2

    SQLite page cache 1920K 12

    BATTERY GUARD 56.1 M 34

    The stack of 23.8 M 36

    VM_ALLOCATE K 84, 14

    WebKit Malloc 4132 K 4

    __DATA 36.7 M 373

    __IMAGE                              528K        2

    __LINKEDIT 92.5 M 40

    __TEXT 238,1 380 M

    __UNICODE 552K 2

    mapped file 46.2 M 35

    16.3 shared memory M 11

    ===========                       =======  =======

    TOTAL 1.6 G 1183

    TOTAL, less reserved VM space 614,2 M 1183

    Model: MacBookPro9 2, MBP91.00D3.B0D of BootROM, 2 processors, Intel Core i5, 2.5 GHz, 16 GB, MSC 2.2f44

    Graphics card: Intel Graphics HD 4000, 4000, Intel HD graphics card integrated

    Memory module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0 x 0198, 0x393955353432382D3036332E4130304C4620

    Memory module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0 x 0198, 0x393955353432382D3036332E4130304C4620

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.21.95.175.1a6)

    Bluetooth: Version 4.4.5f3 17904, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi, AirPort, en1

    Serial ATA Device: WDC WD10JPVX-22JC3T0, 1 TB

    Serial ATA Device: HL-DT-ST DVD - RW GS31N

    USB device: USB 2.0 Bus

    USB device: Hub

    USB device: Hub

    USB device: Apple keyboard / Trackpad

    USB Device: IR receiver

    USB device: Hub BRCM20702

    USB Device: USB Bluetooth host controller

    USB device: USB 2.0 Bus

    USB device: Hub

    USB device: FaceTime HD camera (built-in)

    USB device: USB 3.0 Bus

    Bus crush: MacBook Pro, Apple Inc., 25.1

    The new version of Mail stores its database in a different format that the old, so the database must be converted before Mail can use it. Sometimes, the conversion fails because the old database is damaged, or because of a bug in the conversion code.

    What you should do depends on what type of e-mail accounts, you have (IMAP, POP, or Exchange). If you are unsure, open Mail's preferences window, select the tab accounts and then select an account from the list on the left. Under account information, the account type is indicated.

    The first step, no matter what you do, is to save all the data, if you don't have a current backup.

    Please read this post in full before anything else. If this is unclear, ask for clarification before taking a step. If you're not convinced that you can follow instructions, stop, don't change anything.

    A. Si you have IMAP or Exchange only e-mail accounts

    The easy way to recover is to delete the old database and start over. You can do this without losing all the messages, provided that all the following conditions are met:

    1. All your incoming mail accounts are IMAP or Exchange type.
    2. You store sent messages on the server.
    3. You have no mailboxes "on my Mac".

    If you meet the requirements, continue with this step. Otherwise, proceed to step B below.

    Quit Mail runs.

    Open your home folder's library folder by pressing the option key and selection

    Go ▹ library

    in the Finder menu bar. Inside, it is a subfolder named "mail". Move this folder on the desktop. You do not move the e-mail application; you move a folder named "mail".

    Launch of Mail. The mailboxes must be restored automatically. The messages will be downloaded from the servers, so it can take a long time if you have very large mailboxes.

    Some people have the mailboxes in the gigabyte range, and maybe it's a problem is noted for the use of the Internet or the connection is slow. If these concerns apply to you, consider taking the step B instead of this step.

    If the mailboxes are restored successfully, you can delete the folder that you moved to the desktop. You may have to re-create your rules, signatures and custom stationery Mail. If it's important for you not to have to do these things, ask for instructions before you delete the folder.

    B. Si you have boxes POP mailbox and/or "on my Mac".

    Move the mail on the desktop folder as in step A and open it.

    Press the key combination command + F to search. In the line of chips to search along the upper part of the window, select "Mail". Below, defined as the search criteria

    The name ends with mbox

    Results of the research will be a list of folders with a name ending with '.mbox '. Each of them represents a box the letters.

    Launch of Mail. All mailboxes will be empty at the beginning, but if you have any IMAP or Exchange mailbox (including iCloud), they must fill out automatically after a delay, as in step A. If you have now all the messages you want to keep, you can stop here. Otherwise, import from mailboxes in the search results. The article of support related, select

    Apple Mail

    as import format. You'll probably want to jump boxes to letters with names such as "Deleted Messages", "Junk", "Spam", or "Trash". Some may be duplicates of what you already; those that you can remove.

    In some cases, a mailbox may fail with an error to import. If this happens, thanks for posting your results.

    If all the mailboxes that you want to import do successfully, you can delete the mail on the desktop folder.

  • 'Notes' keep crashing

    Whenever I try to open the "Notes" application it tries to synchronize with iCloud and then the program quits.  I have no problem on my other devices, only the iMac.  The LONG message:

    Process: Note [964]

    Path: /Users/USER/Desktop/Notes.app/Contents/MacOS/Notes

    ID: com.apple.Notes

    Version: 4.2 (549.10.1)

    Generation information: Notes-549010001000000 ~ 4

    Code type: X 86-64 (Native)

    Parent process:? [1]

    Background: Notes [964]

    User ID: 501

    Date/time: 2016-05-30 14:08:40.049-0400

    OS version: Mac OS X 10.11.5 (15F34)

    Report Version: 11

    Anonymous UUID: 40E87286-E77F-61AC-7921-3FE82EFA1C51

    Sleep/wake UUID: DADACD7E-DDBD-47D4-9E15-99E7F3527D2B

    Time since started awake: 8200 seconds

    Wake time: 61 seconds

    Integrity of system protection: enabled

    Crashed thread: 0 dispatch queue: com.apple.main - wire

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    Reason for termination due to an untrapped exception "NSInvalidArgumentException" app,: '-[NSTemporaryObjectID_default mediaAttachments]: unrecognized selector sent to instance 0x7f9f3c362100'

    Abort() called

    ending with an exception uncaught of print type

    Specific application Backtrace 1:

    0 CoreFoundation 0x00007fff890d34f2 __exceptionPreprocess + 178

    1 libobjc. A.dylib 0x00007fff8a80473c objc_exception_throw + 48

    2 CoreFoundation 0x00007fff8913d1ad-[NSObject (NSObject) doesNotRecognizeSelector:] + 205

    3 CoreFoundation 0x00007fff89043571 ___forwarding___ + 1009

    4 CoreFoundation 0x00007fff890430f8 _CF_forwarding_prep_0 + 120

    5 tickets to 0x0000000107e2af84 + 556932

    CoreFoundation 6 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12 0x00007fff8905ebbc

    CoreFoundation 7 0x00007fff8905eb4f ___CFXRegistrationPost_block_invoke + 63

    8 CoreFoundation 0x00007fff8905eac7 _CFXRegistrationPost + 407

    CoreFoundation 9 0x00007fff8905e832 ___CFXNotificationPost_block_invoke + 50

    10 CoreFoundation 0x00007fff8901b5e2-[_CFXNotificationRegistrar search: object: Observer: enumerator:] + 1922

    11 CoreFoundation 0x00007fff8901a835 _CFXNotificationPost + 693

    12 Foundation 0x00007fff869fb17a-[NSNotificationCenter postNotificationName:object:userInfo:] + 66

    13 NotesShared 0x00007fff8fd710f8 __60-[NSManagedObject (IC) postNotificationOnMainThreadWithName:] + 69 _block_invoke_2

    14 libdispatch.dylib 0x00007fff91bb993d _dispatch_call_block_and_release + 12

    15 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    16 libdispatch.dylib 0x00007fff91bc1c1c _dispatch_main_queue_callback_4CF + 1685

    17 0x00007fff890889e9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9 CoreFoundation

    18 CoreFoundation 0x00007fff890478dd __CFRunLoopRun + 1949

    19 CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    20 HIToolbox 0x00007fff85ca3935 RunCurrentEventLoopInMode + 235

    21 HIToolbox 0x00007fff85ca376f ReceiveNextEventCommon + 432

    22 HIToolbox 0x00007fff85ca35af _BlockUntilNextEventMatchingListInModeWithFilter + 71

    23 AppKit 0x00007fff881e5df6 _DPSNextEvent + 1067

    24 AppKit 0x00007fff881e5226-[NSApplication _nextEventMatchingEventMask:untilDate:inMode: dequeue:] + 454

    25 AppKit 0x00007fff881d9d80-[NSApplication run] + 682

    26 AppKit 0x00007fff881a3368 NSApplicationMain + 1176

    27 libdyld.dylib 0x00007fff8ac255ad start + 1

    Global tracking buffer (second chronological reverse):

    CloudKit 0x00007fff9045e245 __activity_did_finish 2.731792

    3.311792 CFNetwork 0x00007fff8e6983cb TCP 0x7f9f3c0406c0 SSL Handshake Conn MADE

    CloudKit 0x00007fff9045e245 __activity_did_finish 3.388394

    3.424990 SSL handshake at the start of CFNetwork 0x00007fff8e6982a7 TCP Conn 0x7f9f3c0406c0

    3.425094 all 0x00007fff8e696c71 TCP Conn 0x7f9f3c0406c0 CFNetwork. FD: 33, err: 0

    3.425211 event TCP Conn 0x7f9f3c0406c0 CFNetwork 0x00007fff8e72554b 1. Err: 0

    3.563177 CFNetwork TCP Conn 0x7f9f3c0406c0 0x00007fff8e695f43 started

    3.564714 default cookie storage CFNetwork 0x00007fff8e659b93 creation with the default identifier

    3.564714 Faulting CFNetwork 0x00007fff8e659b5e in CFHTTPCookieStorage singleton

    3.564714 Faulting CFNetwork 0x00007fff8e6599ed in NSHTTPCookieStorage singleton

    CloudKit 0x00007fff9045e245 __activity_did_finish 3.605892

    5.211877 all 0x00007fff8e696c71 TCP Conn 0x7f9f39eb47c0 CFNetwork. FD: 23, err: 0

    5.211917 event TCP Conn 0x7f9f39eb47c0 CFNetwork 0x00007fff8e72554b 1. Err: 0

    5.233326 CFNetwork 0x00007fff8e6983cb TCP 0x7f9f39e482d0 SSL Handshake Conn MADE

    5.248934 CFNetwork TCP Conn 0x7f9f39eb47c0 0x00007fff8e695f43 started

    5.274594 CFNetwork 0x00007fff8e6983cb TCP 0x7f9f39e47e40 SSL Handshake Conn MADE

    5.280374 CFNetwork 0x00007fff8e6983cb TCP 0x7f9f39e48760 SSL Handshake Conn MADE

    5.637895 SSL handshake at the start of CFNetwork 0x00007fff8e6982a7 TCP Conn 0x7f9f39e48760

    5.638110 SSL handshake at the start of CFNetwork 0x00007fff8e6982a7 TCP Conn 0x7f9f39e47e40

    5.638166 all 0x00007fff8e696c71 TCP Conn 0x7f9f39e48760 CFNetwork. FD: 27, err: 0

    5.638166 event TCP Conn 0x7f9f39e48760 CFNetwork 0x00007fff8e72554b 1. Err: 0

    5.638166 SSL handshake at the start of CFNetwork 0x00007fff8e6982a7 TCP Conn 0x7f9f39e482d0

    5.638308 all 0x00007fff8e696c71 TCP Conn 0x7f9f39e47e40 CFNetwork. FD: 26, err: 0

    5.638308 event TCP Conn 0x7f9f39e47e40 CFNetwork 0x00007fff8e72554b 1. Err: 0

    5.638499 all 0x00007fff8e696c71 TCP Conn 0x7f9f39e482d0 CFNetwork. FD: 20, err: 0

    5.638543 event TCP Conn 0x7f9f39e482d0 CFNetwork 0x00007fff8e72554b 1. Err: 0

    5.791880 CFNetwork TCP Conn 0x7f9f39e482d0 0x00007fff8e695f43 started

    5.791926 CFNetwork TCP Conn 0x7f9f39e48760 0x00007fff8e695f43 started

    5.792067 CFNetwork TCP Conn 0x7f9f39e47e40 0x00007fff8e695f43 started

    Thread 0 crashed: Dispatch queue: com.apple.main - wire

    0 libsystem_kernel.dylib 0x00007fff9127df06 __pthread_kill + 10

    1 libsystem_pthread.dylib 0x00007fff88dd04ec pthread_kill + 90

    2 libsystem_c.dylib 0x00007fff8fd136e7 demolition + 129

    3 libc ++ abi.dylib 0x00007fff84e36f81 abort_message + 257

    4 libc ++ abi.dylib 0x00007fff84e5ca47 default_terminate_handler() + 267

    libobjc 5. A.dylib 0x00007fff8a808491 _objc_terminate() + 103

    6 libc ++ abi.dylib 0x00007fff84e5a19e std::__terminate (void (*) ()) + 8

    7 libc ++ abi.dylib 0x00007fff84e5a213 std::terminate() + 51

    8 libdispatch.dylib 0x00007fff91bae41f _dispatch_client_callout + 28

    libdispatch.dylib 9 _dispatch_main_queue_callback_4CF + 1685 0x00007fff91bc1c1c

    10 com.apple.CoreFoundation 0x00007fff890889e9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9

    11 com.apple.CoreFoundation 0x00007fff890478dd __CFRunLoopRun + 1949

    12 com.apple.CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    13 com.apple.HIToolbox 0x00007fff85ca3935 RunCurrentEventLoopInMode + 235

    14 com.apple.HIToolbox 0x00007fff85ca376f ReceiveNextEventCommon + 432

    15 com.apple.HIToolbox 0x00007fff85ca35af _BlockUntilNextEventMatchingListInModeWithFilter + 71

    16 com.apple.AppKit 0x00007fff881e5df6 _DPSNextEvent + 1067

    17 com.apple.AppKit 0x00007fff881e5226-[NSApplication _nextEventMatchingEventMask:untilDate:inMode: dequeue:] + 454

    18 com.apple.AppKit 0x00007fff881d9d80-[NSApplication run] + 682

    19 com.apple.AppKit 0x00007fff881a3368 NSApplicationMain + 1176

    20 libdyld.dylib 0x00007fff8ac255ad start + 1

    Thread 1: dispatch queue: NSOperationQueue 0x7f9f3c15a820: NSOperation 0x7f9f3c293a10 (QOS: LEGACY)

    0 libsystem_kernel.dylib 0x00007fff91277f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff912773b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff890481c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8904768c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff86a18ed9-[NSRunLoop (NSRunLoop) runMode:beforeDate:] + 270

    6 com.apple.Notes.framework 0x00007fff8ca00edf-[ICNFMCSocket readBytes:maxLength:error:] + 646

    7 com.apple.Notes.framework 0x00007fff8c9bd14e-[ICNFMCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 129

    8 com.apple.Notes.framework 0x00007fff8c9bcc03-[ICNFMCConnection _fillBuffer:] + 682

    9 com.apple.Notes.framework 0x00007fff8c9bc736-[ICNFMCConnection _readLineIntoData:error:] + 186

    com.apple.Notes.framework 10 0x00007fff8c9c65c2-[ICNFIMAPConnection _readLineIntoData:error:] + 54

    11 com.apple.Notes.framework 0x00007fff8c9cfdca-[ICNFIMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    com.apple.Notes.framework 12 0x00007fff8c9b3c83 + [ICNFIMAPResponse newIMAPResponseWithConnection:error:] + 101

    13 com.apple.Notes.framework 0x00007fff8c9c66f2-[ICNFIMAPConnection _copyNextServerResponse:] + 46

    14 com.apple.Notes.framework 0x00007fff8c9c688d-[ICNFIMAPConnection _copyNextTaggedOrContinuationResponseForCommand: there are: receivedExists:] + 203

    15 com.apple.Notes.framework 0x00007fff8c9ce02d-[ICNFIMAPConnection _responseFromSendingOperation:receivedExists:] + 1234

    16 com.apple.Notes.framework 0x00007fff8c9c5bb5-[ICNFIMAPConnection executeClientOperation:] + 60

    17 com.apple.Notes.framework 0x00007fff8c9cbce3-[ICNFIMAPConnection executeAggregateStatus:] + 367

    18 com.apple.Notes.framework 0x00007fff8c9c5804-[ICNFIMAPConnection prepareAndExecuteOperation:outWrongState:] + 1206

    19 com.apple.Notes.framework 0x00007fff8ca1da0b-[ICNFIMAPGateway _allowClientOperationThrough:] + 1104

    20 com.apple.Notes.framework 0x00007fff8ca1d54b-[ICNFIMAPGateway allowClientOperationThrough:] + 274

    21 com.apple.Notes.framework 0x00007fff8c9a84c2-[major ICNFIMAPClientOperation] + 69

    22 com.apple.Foundation 0x00007fff86a39c7a-[__NSOperationInternal _start:] + 654

    23 com.apple.Foundation 0x00007fff86a35c64 __NSOQSchedule_f + 194

    24 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    25 libdispatch.dylib 0x00007fff91bb303b _dispatch_queue_drain + 754

    26 libdispatch.dylib 0x00007fff91bb9707 _dispatch_queue_invoke + 549

    27 libdispatch.dylib 0x00007fff91bb1d53 _dispatch_root_queue_drain + 538

    28 0x00007fff91bb1b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    29 libsystem_pthread.dylib 0x00007fff88dcd4de _pthread_wqthread + 1129

    30 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 2: Dispatch queue: com.apple.libdispatch - Manager

    0 libsystem_kernel.dylib 0x00007fff9127eefa kevent_qos + 10

    1 libdispatch.dylib 0x00007fff91bb4165 _dispatch_mgr_invoke + 216

    2 libdispatch.dylib 0x00007fff91bb3dcd _dispatch_mgr_thread + 52

    Thread 3: Dispatch queue: [NFIMAPAccountProxy remoteTaskQueue]: NSOperation 0x7f9f39d69be0 (QOS: LEGACY)

    0 libsystem_kernel.dylib 0x00007fff91277f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff912773b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff890481c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8904768c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    5 com.apple.Foundation 0x00007fff86a18ed9-[NSRunLoop (NSRunLoop) runMode:beforeDate:] + 270

    6 com.apple.Notes.framework 0x00007fff8ca00edf-[ICNFMCSocket readBytes:maxLength:error:] + 646

    7 com.apple.Notes.framework 0x00007fff8c9bd14e-[ICNFMCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 129

    8 com.apple.Notes.framework 0x00007fff8c9bcc03-[ICNFMCConnection _fillBuffer:] + 682

    9 com.apple.Notes.framework 0x00007fff8c9bc736-[ICNFMCConnection _readLineIntoData:error:] + 186

    com.apple.Notes.framework 10 0x00007fff8c9c65c2-[ICNFIMAPConnection _readLineIntoData:error:] + 54

    11 com.apple.Notes.framework 0x00007fff8c9cfdca-[ICNFIMAPConnection (MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 164

    com.apple.Notes.framework 12 0x00007fff8c9b3c83 + [ICNFIMAPResponse newIMAPResponseWithConnection:error:] + 101

    13 com.apple.Notes.framework 0x00007fff8c9c66f2-[ICNFIMAPConnection _copyNextServerResponse:] + 46

    14 com.apple.Notes.framework 0x00007fff8c9c4151-[ICNFIMAPConnection _completeConnectionWithResult:] + 75

    15 com.apple.Notes.framework 0x00007fff8c9ba800-[ICNFMCConnection connectDiscoveringBestSettings:] + 1047

    16 com.apple.Notes.framework 0x00007fff8c9d066b-[ICNFIMAPAccountProxy connectAndAuthenticate:] + 391

    17 com.apple.Notes.framework 0x00007fff8c9d3de9-[ICNFIMAPAccountProxy _recoverFromConnectionlessStateHighPriority:] + 150

    18 com.apple.Notes.framework 0x00007fff8c9d386b-[ICNFIMAPAccountProxy checkOutGatewayForMailbox:highPriority:needsCheckIn:] + 417

    19 com.apple.Notes.framework 0x00007fff8c99d1c2-[ICNFIMAPMailboxProxy updateFromServer] + 127

    20 com.apple.Notes 0x0000000107ea0173 0x107da3000 + 1036659

    21 com.apple.Foundation 0x00007fff86a3b8d7 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7

    22 com.apple.Foundation 0x00007fff86a3b595-[major NSBlockOperation] + 100

    23 com.apple.Foundation 0x00007fff86a39c7a-[__NSOperationInternal _start:] + 654

    24 com.apple.Foundation 0x00007fff86a35c64 __NSOQSchedule_f + 194

    25 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    26 libdispatch.dylib 0x00007fff91bb303b _dispatch_queue_drain + 754

    27 libdispatch.dylib 0x00007fff91bb9707 _dispatch_queue_invoke + 549

    28 libdispatch.dylib 0x00007fff91bb1d53 _dispatch_root_queue_drain + 538

    29 0x00007fff91bb1b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    30 libsystem_pthread.dylib 0x00007fff88dcd4de _pthread_wqthread + 1129

    31 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 4:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 5: Dispatch queue: NSOperationQueue 0x7f9f39c98850: NSOperation 0x7f9f3c274990 (QOS: initiated)

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce728 _pthread_cond_wait + 767

    2 com.apple.Foundation 0x00007fff86af659a-[__NSOperationInternal _waitUntilFinished:] + 131

    3 com.apple.Foundation 0x00007fff86b01408-[NSOperationQueue addOperations:waitUntilFinished:] + 192

    4 com.apple.NotesShared 0x00007fff8fd9ab81-[major ICFetchRecordChangesWrapperOperation] + 827

    5 com.apple.Foundation 0x00007fff86a39c7a-[__NSOperationInternal _start:] + 654

    6 com.apple.Foundation 0x00007fff86a35c64 __NSOQSchedule_f + 194

    7 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    8 libdispatch.dylib 0x00007fff91bb303b _dispatch_queue_drain + 754

    libdispatch.dylib 9 0x00007fff91bb9707 _dispatch_queue_invoke + 549

    10 libdispatch.dylib 0x00007fff91bb1d53 _dispatch_root_queue_drain + 538

    11 0x00007fff91bb1b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    12 libsystem_pthread.dylib 0x00007fff88dcd4de _pthread_wqthread + 1129

    13 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Line 6:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Line 7:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 8:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 9: Dispatch queue: [NFIMAPAccountProxy remoteTaskQueue]: NSOperation 0x7f9f3c000f10 (QOS: LEGACY)

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce75e _pthread_cond_wait + 821

    2 com.apple.Foundation 0x00007fff86aad960-[__NSOperationInternal _waitUntilFinishedOrTimeout: external:] + 246

    3 com.apple.Notes.framework 0x00007fff8c96b04d-[ICNFIMAPClientOperationQueue waitUntilOperationIsFinished:] + 209

    4 com.apple.Notes.framework 0x00007fff8ca1dffc-[ICNFIMAPGateway waitUntilClientOperationIsFinished:] + 162

    5 com.apple.Notes.framework 0x00007fff8ca1df35-[ICNFIMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 487

    6 com.apple.Notes.framework 0x00007fff8ca1ed80-[ICNFIMAPGateway fetchStatusForMailboxes:dataItems:] + 529

    7 com.apple.Notes.framework 0x00007fff8c9d3366-[ICNFIMAPAccountProxy updateAllMailboxContentsFromServer] + 655

    8 com.apple.Notes 0x0000000107e9f51d 0x107da3000 + 1033501

    com.apple.Foundation __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7 9 0x00007fff86a3b8d7

    com.apple.Foundation 0x00007fff86a3b595 10-[major NSBlockOperation] + 100

    11 com.apple.Foundation 0x00007fff86a39c7a-[__NSOperationInternal _start:] + 654

    12 com.apple.Foundation 0x00007fff86a35c64 __NSOQSchedule_f + 194

    13 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    14 libdispatch.dylib 0x00007fff91bb303b _dispatch_queue_drain + 754

    15 libdispatch.dylib 0x00007fff91bb9707 _dispatch_queue_invoke + 549

    16 libdispatch.dylib 0x00007fff91bb1d53 _dispatch_root_queue_drain + 538

    17 0x00007fff91bb1b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    18 libsystem_pthread.dylib 0x00007fff88dcd4de _pthread_wqthread + 1129

    19 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 10: com.apple.NSURLConnectionLoader

    0 libsystem_kernel.dylib 0x00007fff91277f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff912773b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff890481c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8904768c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    5 com.apple.CFNetwork 0x00007fff8e65d095 + [NSURLConnection (Loader) _resourceLoadLoop:] + 412

    6 com.apple.Foundation 0x00007fff86a29e64 __NSThread__start__ + 1351

    7 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff88dcb351 thread_start + 13

    Thread 11: Dispatch queue: NSOperationQueue 0x7f9f39c98850: NSOperation 0x7f9f3c132a30 (QOS: initiated)

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce728 _pthread_cond_wait + 767

    2 com.apple.Foundation 0x00007fff86af659a-[__NSOperationInternal _waitUntilFinished:] + 131

    3 com.apple.Foundation 0x00007fff86b01408-[NSOperationQueue addOperations:waitUntilFinished:] + 192

    4 com.apple.NotesShared 0x00007fff8fd9ab81-[major ICFetchRecordChangesWrapperOperation] + 827

    5 com.apple.Foundation 0x00007fff86a39c7a-[__NSOperationInternal _start:] + 654

    6 com.apple.Foundation 0x00007fff86a35c64 __NSOQSchedule_f + 194

    7 libdispatch.dylib 0x00007fff91bae40b _dispatch_client_callout + 8

    8 libdispatch.dylib 0x00007fff91bb303b _dispatch_queue_drain + 754

    libdispatch.dylib 9 0x00007fff91bb9707 _dispatch_queue_invoke + 549

    10 libdispatch.dylib 0x00007fff91bb1d53 _dispatch_root_queue_drain + 538

    11 0x00007fff91bb1b00 _dispatch_worker_thread3 + 91 libdispatch.dylib

    12 libsystem_pthread.dylib 0x00007fff88dcd4de _pthread_wqthread + 1129

    13 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Slide 12: com.apple.CFSocket.private

    0 libsystem_kernel.dylib 0x00007fff9127e07a __select + 10

    1 com.apple.CoreFoundation 0x00007fff890854fa __CFSocketManager + 762

    2 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    3 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    4 libsystem_pthread.dylib 0x00007fff88dcb351 thread_start + 13

    Line 13:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 14:

    0 libsystem_kernel.dylib 0x00007fff9127e10a __semwait_signal + 10

    1 libsystem_c.dylib 0x00007fff8fd34d17 nanosleep + 199

    2 libc ++.1.dylib 0x00007fff97953020 std::__1:this_thread:sleep_for(std::__1::chrono::duration<long_long,_std::__1::ratio<1l,_1000000000l>_>_const&) + 75

    3 com.apple.JavaScriptCore 0x00007fff98ba5917 bmalloc::Heap:scavenge(std::__1::unique_lock<bmalloc::StaticMutex>&,_std::__1::chrono::duration<long_long,_std::__1::ratio<1l,_1000l>_>) + 375

    4 com.apple.JavaScriptCore 0x00007fff98ba5494 bmalloc::Heap::concurrentScavenge() + 68

    5 com.apple.JavaScriptCore 0x00007fff98ba7a1a bmalloc::AsyncTask < bmalloc::Heap, Sub (bmalloc::Heap::*)() >: entryPoint() + 90)

    6 com.apple.JavaScriptCore 0x00007fff98ba79b9 bmalloc::AsyncTask < bmalloc::Heap, Sub (bmalloc::Heap::*)() >: pthreadEntryPoint(void*) + 9)

    7 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff88dcb351 thread_start + 13

    15 phone: JavaScriptCore::Marking

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce728 _pthread_cond_wait + 767

    2 libc ++.1.dylib 0x00007fff9791468f std::__1:condition_variable:wait(std::__1::unique_lock<std::__1::mutex>&) + 47

    3 com.apple.JavaScriptCore 0x00007fff9857c99b JSC::GCThread::waitForNextPhase() + 171

    4 com.apple.JavaScriptCore 0x00007fff9857c7e8 JSC::GCThread::gcThreadMain() + 88

    5 com.apple.JavaScriptCore 0x00007fff98572162 *: threadEntryPoint(void*) + 178

    6 com.apple.JavaScriptCore 0x00007fff9857208f *: wtfThreadEntryPoint(void*) + 15

    7 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff88dcb351 thread_start + 13

    16 wire: JavaScriptCore::Marking

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce728 _pthread_cond_wait + 767

    2 libc ++.1.dylib 0x00007fff9791468f std::__1:condition_variable:wait(std::__1::unique_lock<std::__1::mutex>&) + 47

    3 com.apple.JavaScriptCore 0x00007fff9857c99b JSC::GCThread::waitForNextPhase() + 171

    4 com.apple.JavaScriptCore 0x00007fff9857c7e8 JSC::GCThread::gcThreadMain() + 88

    5 com.apple.JavaScriptCore 0x00007fff98572162 *: threadEntryPoint(void*) + 178

    6 com.apple.JavaScriptCore 0x00007fff9857208f *: wtfThreadEntryPoint(void*) + 15

    7 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff88dcb351 thread_start + 13

    Thread 17: JavaScriptCore::Marking

    0 libsystem_kernel.dylib 0x00007fff9127ddb6 __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x00007fff88dce728 _pthread_cond_wait + 767

    2 libc ++.1.dylib 0x00007fff9791468f std::__1:condition_variable:wait(std::__1::unique_lock<std::__1::mutex>&) + 47

    3 com.apple.JavaScriptCore 0x00007fff9857c99b JSC::GCThread::waitForNextPhase() + 171

    4 com.apple.JavaScriptCore 0x00007fff9857c7e8 JSC::GCThread::gcThreadMain() + 88

    5 com.apple.JavaScriptCore 0x00007fff98572162 *: threadEntryPoint(void*) + 178

    6 com.apple.JavaScriptCore 0x00007fff9857208f *: wtfThreadEntryPoint(void*) + 15

    7 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    8 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    libsystem_pthread.dylib 9 0x00007fff88dcb351 thread_start + 13

    18 wire:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    19 phone: com.apple.NSEventThread

    0 libsystem_kernel.dylib 0x00007fff91277f72 mach_msg_trap + 10

    1 libsystem_kernel.dylib 0x00007fff912773b3 mach_msg + 55

    2 com.apple.CoreFoundation 0x00007fff890481c4 __CFRunLoopServiceMachPort + 212

    3 com.apple.CoreFoundation 0x00007fff8904768c __CFRunLoopRun + 1356

    4 com.apple.CoreFoundation 0x00007fff89046ed8 CFRunLoopRunSpecific + 296

    5 com.apple.AppKit 0x00007fff8833bd95 _NSEventThread + 149

    6 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    7 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    8 libsystem_pthread.dylib 0x00007fff88dcb351 thread_start + 13

    Line 20:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Line 21:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 22:

    0 libsystem_kernel.dylib 0x00007fff9127e5e2 __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x00007fff88dcd578 _pthread_wqthread + 1283

    2 libsystem_pthread.dylib 0x00007fff88dcb341 start_wqthread + 13

    Thread 23: com.apple.appkit - heartbeat

    0 libsystem_kernel.dylib 0x00007fff9127e10a __semwait_signal + 10

    1 libsystem_c.dylib 0x00007fff8fd34d17 nanosleep + 199

    usleep libsystem_c.dylib 2 0x00007fff8fd34c0a + 54

    3 com.apple.AppKit 0x00007fff884ce3e4-[NSUIHeartBeat _heartBeatThread:] + 2181

    4 com.apple.Foundation 0x00007fff86a29e64 __NSThread__start__ + 1351

    5 libsystem_pthread.dylib 0x00007fff88dcd99d _pthread_body + 131

    6 libsystem_pthread.dylib 0x00007fff88dcd91a _pthread_start + 168

    7 libsystem_pthread.dylib 0x00007fff88dcb351 thread_start + 13

    Thread 0 crashed with X 86 State of Thread (64-bit):

    Rax: 0 x 0000000000000000 rbx: 0000000000000006 rcx 0 x: 0x00007fff57e5aeb8 rdx: 0 x 0000000000000000

    RDI: 0x000000000000160b rsi: 0 x 0000000000000006 PBR: RER 0x00007fff57e5aee0: 0x00007fff57e5aeb8

    R8: 0 x 0000000000000003 r9: 0x00007fff84e5da7c r10: 0 x 0000000008000000 r11: 0 x 0000000000000206

    R12: 0x00007fff57e5b040 r13: 0x00000001088033c0 r14: 0x00007fff7585f000 r15: 0x00007fff57e5af20

    RIP: 0x00007fff9127df06 rfl: 0 x 0000000000000206 cr2: 0x000000010d806000

    Logical CPU: 0

    Error code: 0x0200014e

    Trap number: 133

    Binary images:

    0x107da3000 - 0x107f1aff7 com.apple.Notes (4.2 - 549.10.1) /Users/USER/Desktop/Notes.app/Contents/MacOS/Notes < 43431D88-5A21-35DA-805D-C6BAB87FACB9 >

    0x1083c5000 - 0x1083c5fe7 + cl_kernels (?) < EE9FAC42-7DBE-4ECA-8413-FB8C8A6CB86A > cl_kernels

    0x10d01f000 - 0x10d032ff7 com.apple.webcontentfilter.framework /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys < F04825CB-8934-3704-89A9-5E9F8A5899CF > (5.1 - 5.1) is

    0x10d04a000 - 0x10d04cfff apop.so (188) < 8543B50E-91F2-30CD-96A3-AC0DA7738B97 > /usr/lib/sasl2/apop.so

    0x10d051000 - 0x10d052fff atoken.so (188) < EB7AB66D-C0D1-3B63-8625-3D7472B8DE29 > /usr/lib/sasl2/atoken.so

    0x10d057000 - 0x10d067ffb dhx.so (188) < E5729195-E010-385F-A418-43CE585BDD35 > /usr/lib/sasl2/dhx.so

    0x10d074000 - 0x10d07cfff digestmd5WebDAV.so (188) < 0C074938-0D2F-3B98-93A8-002E296B671E > /usr/lib/sasl2/digestmd5WebDAV.so

    0x10d11b000 - 0x10d11dfff libanonymous.2.so (209) < CC03F1A3-E1B7-3D3E-BB63-58C7FA65BFCF > /usr/lib/sasl2/libanonymous.2.so

    0x10d122000 - 0x10d124fff libcrammd5.2.so (209) < CED4DBAB-7D07-31B5-A1A9-4F1F5594D757 > /usr/lib/sasl2/libcrammd5.2.so

    0x10d133000 - 0x10d13cfff libdigestmd5.2.so (209) < 50461C8A-2EEB-3B0E-AFA9-7D281E054E13 > /usr/lib/sasl2/libdigestmd5.2.so

    0x10d142000 - 0x10d147fff libgssapiv2.2.0.18.so (209) < 61FACDF0-992B-3795-9788-6239E601FD80 > /usr/lib/sasl2/libgssapiv2.2.0.18.so

    0x10d14d000 - 0x10d152fff libntlm.so (209) < BFBDDA88-A675-3C8F-9F51-622DF7A96E61 > /usr/lib/sasl2/libntlm.so

    0x10d158000 - 0x10d15afff libplain.2.so (209) < FE3CCD59-3597-36A0-91E2-6F837E1DCC1B > /usr/lib/sasl2/libplain.2.so

    0x10d15f000 - 0x10d161fff login.so (209) < 8648ED73-6217-3489-AD30-521219C803E0 > /usr/lib/sasl2/login.so

    0x10d166000 - 0x10d169ff7 mschapv2.so (188) < EDEDD67E-40DB-3C12-B395-E9347A9B0EF1 > /usr/lib/sasl2/mschapv2.so

    0x10d1c0000 - 0x10d1e0ffb com.apple.DirectoryService.PasswordServerFramework (10.11 - 45) < 63E789C1-FCAC-36E1-880A-B32C7510B795 > /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS Server

    0x10d1f3000 - 0x10d1fcfff com.apple.DirectoryServer (62 - 10.11) < 6004588D-B3D3-3307-9E2B-DA17E2167CFD > /System/Library/PrivateFrameworks/DirectoryServer.framework/Versions/A/Director yServer

    0x10d205000 - 0x10d211fff com.apple.directoryserver.CFDirectoryServer (62 - 10.11) < 1E38F620-BA21-3AAB-963F-C06F8AD77F61 > /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirect oryServer.framework/Versions/A/CFDirectoryServer

    0x10d21e000 - 0x10d225ff7 com.apple.HeimODAdmin /System/Library/PrivateFrameworks/HeimODAdmin.framework/Versions/A/HeimODAdmin < 7858DF7D-1095-3DA3-8F0F-882FADDC0229 > (4.0 - 2.0)

    0x10d22f000 - 0x10d231fff oauthbearer.so (188) < 2899B743-3008-38F0-933E-E016565F28BF > /usr/lib/sasl2/oauthbearer.so

    0x10d236000 - plain 0x10d237fff - clienttoken.so (188) < 7DB4EA45-B1BF-38D2-BDCB-17C2D655BB98 > /usr/lib/sasl2/plain-clienttoken.so

    0x10d23c000 - 0x10d23efff pwauxprop.so (421) < 1811BAF9-DA13-3EF9-BFC3-CC2660D07A46 > /usr/lib/sasl2/pwauxprop.so

    0x10d243000 - 0x10d245fff shadow_auxprop.so (188) < 0754FA5B-943F-3B0F-911C-EAB6AF949890 > /usr/lib/sasl2/shadow_auxprop.so

    0x10d24b000 - 0x10d24efff smb_ntlmv2.so (188) < E7CBBBAD-CAB8-3A4F-8473-A47D4894EBE9 > /usr/lib/sasl2/smb_ntlmv2.so

    0x10d254000 - 0x10d26dff7 srp.so (209) < 1F11ABB4-06DB-3B20-8B84-BE161D9C9636 > /usr/lib/sasl2/srp.so

    0x10d9d6000 - 0x10d9dafff libFontRegistryUI.dylib (155,2) < 8346E80E-5832-3944-A750-FBB9D328C2FE > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib

    0x7fff614b3000 - 0x7fff614ea25f dyld (360.22) < A468D85E-D8D6-3461-8C99-49D3B9ACFC63 >/usr/lib/dyld

    0x7fff84e36000 - 0x7fff84e5ffff libc ++ abi.dylib (125) < DCCC8177-3D09-35BC-9784-2A04FEC4C71B > /usr/lib/libc++abi.dylib

    0x7fff84e60000 - 0x7fff84e8ffff com.apple.securityinterface (10.0 - 55065.40.1) < 1BB39B19-DD74-347E-A344-0E6781773577 > /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face

    0x7fff84e94000 - 0x7fff84e97fff libCoreVMClient.dylib (119.5) < 560D70FB-709F-3030-96C9-F249FCB7DA6D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib

    0x7fff85037000 - 0x7fff8511dfef unorm8_bgra.dylib (2.7.3) < B315AE9C-9E09-3D9F-9513-EC2195908516 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib

    0x7fff85220000 - 0x7fff85238fff com.apple.login /System/Library/PrivateFrameworks/login.framework/Versions/A/login < E02F6100-10F5-3574-9F9F-11709CC4D1C8 > (3.0 - 3.0)

    0x7fff85239000 - 0x7fff85241fef libcldcpuengine.dylib (2.7.3) < 511DF05F-B3A1-3810-9901-1F5C1EA278C4 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib

    0x7fff85242000 - 0x7fff85292ff7 com.apple.ExchangeWebServices (6.0 - 243) < 2F2827B5-9884-3593-9AD8-CB1B3C5FE83D > /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices

    0x7fff85293000 - 0x7fff853a1ff3 com.apple.desktopservices (1.10.3 - 1.10.3) < 3A6906D4-C0B8-30D1-B589-0466E5E42B69 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv

    0x7fff853a2000 - 0x7fff85400fff com.apple.SystemConfiguration (1, 14 - 1.14) < D801FAD7-5A2D-3E5E-9F44-B6C9B8BEA747 > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi setting

    0x7fff85406000 - 0x7fff8542afff com.apple.MultitouchSupport.framework (304.12 - 304.12) < 65CB7653-EACD-3ADB-ABB6-2E0671708301 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport

    0x7fff8542b000 - 0x7fff85430fff com.apple.TCC (< F5EEB2D3-9517-3975-97BE-22CB8E11B8A3 > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x7fff85431000 - 0x7fff85439fff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) s.framework/Versions/A/FSEvents /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent < 7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A >

    0x7fff8553f000 - 0x7fff85562ff7 com.apple.Network (< F3CC7116-3969-31E1-8A8E-0CD4A1FE3837 > /System/Library/PrivateFrameworks/Network.framework/Versions/A/Network 1.0 - 1.).

    0x7fff85650000 - 0x7fff8577dff3 com.apple.CoreText /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText < 08E8640E-6602-3A00-BC28-94235FD311B4 > (352.0 - 494.11)

    0x7fff8577e000 - 0x7fff85a14fff libmecabra.dylib (696.5) < EF6C0BD4-5FE8-34FB-8ADF-69A53CEC97A9 > /usr/lib/libmecabra.dylib

    0x7fff85a15000 - 0x7fff85a9eff7 com.apple.PerformanceAnalysis (1.0-1) < 2064F7E8-5C3D-3E18-8029-2D832D13E2A2 > /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis

    0x7fff85a9f000 - 0x7fff85a9ffff com.apple.ApplicationServices (48-48) < ADD57D3A-142F-3EF5-BFD8-EACD82164884 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services

    0x7fff85aa0000 - 0x7fff85aefff7 com.apple.opencl (2.7.0 - 2.7.0) < C3AFF6D2-90FE-3108-A2D5-A1EBCFC5D627 > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x7fff85af0000 - 0x7fff85afafff com.apple.NetAuth /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth < D692B1EF-534F-3892-8E2F-2BBA7C8AFD74 > (6.0 - 6.0)

    0x7fff85b6d000 - 0x7fff85b91fff 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

    0x7fff85b92000 - 0x7fff85b96fff libGIF.dylib (1450) < 49D45D41-11AD-38DC-BDC5-9EC57E3B8E30 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0x7fff85b97000 - 0x7fff85b99fff com.apple.CFAccountPolicy (1.0-1) < 075A9B36-9D7F-32EE-89EB-812EEFCC1D79 > /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountP olicy.framework/Versions/A/CFAccountPolicy

    0x7fff85b9a000 - 0x7fff85b9bff3 com.apple.print.framework.Print (10.0 - 266) < 3E85F70C-D7D4-34E1-B88A-C1F503F99CDA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print

    0x7fff85ba2000 - 0x7fff85bcdff7 com.apple.AddressBook.ContactsFoundation (8.0 - 2137.1) < BAE70E9D-BCC8-3650-B554-6D646388EDEF > /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation

    0x7fff85bce000 - 0x7fff85c42ff3 com.apple.securityfoundation (6.0 - 55126) < 130656AE-2711-3914-8736-D8B021C93FE0 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun Foundation

    0x7fff85c43000 - 0x7fff85c52fff com.apple.AccountPolicy (icy of < 3AA9BA1F-7670-3028-A389-970941725A46 > /System/Library/PrivateFrameworks/AccountPolicy.framework/Versions/A/AccountPol 1.0 - 1.).

    0x7fff85c53000 - 0x7fff85c53fff com.apple.SafariDAVNotifier (1.1.1 - 1) < 4AE03738-AAC2-365E-80DA-6FB78903E508 > /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier

    0x7fff85c54000 - com.apple.CalendarAgentLink (8.0 - 250) < EA60A52B-6005-312B-99E0-0DD4F479EF8A > /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink 0x7fff85c6dfff

    0x7fff85c73000 - 0x7fff85f68fff com.apple.HIToolbox (2.1.1 - 807.2) < 36413C45-36AF-34EF-9C0E-F18B31D1E565 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra framework/Versions/A/HIToolbox

    0x7fff85f79000 - 0x7fff8637bfff libLAPACK.dylib (1162.2) < 42238ED4-6B7A-39D0-BFF2-304A0C287213 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib

    0x7fff8637c000 - 0x7fff86545ff7 com.apple.ImageIO.framework (3.3.0 - 1450) < 14333D7C-1DB1-3928-AF9C-9470235ED2CF > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x7fff86594000 - 0x7fff8659ffff (3248.50.21) libkxld.dylib < 99195052-038E-3490-ACF8-76F9AC43897E > /usr/lib/system/libkxld.dylib

    0x7fff86699000 - 0x7fff866c9ff3 com.apple.CoreAVCHD (5.8.0 - 5800.4.2) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD < 4AAFB1C4-3708-30F9-ACFA-90564347204C >

    0x7fff866ca000 - 0x7fff86876fff com.apple.avfoundation (2.0 - 1046.9.11) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < 399D8273-E3CD-3358-9B80-64E6A5CBE278 >

    0x7fff868bc000 - 0x7fff86933ff7 com.apple.MMCS (1.3 - 357, 1) < 549FBEFC-55F7-3101-BF51-A0B1F7CF2B46 > /System/Library/PrivateFrameworks/MMCS.framework/Versions/A/MMCS

    0x7fff86934000 - 0x7fff86935fff libsystem_secinit.dylib (20) < 32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B > /usr/lib/system/libsystem_secinit.dylib

    0x7fff86973000 - 0x7fff8698aff7 (323.50.1) libsystem_asl.dylib < 41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9 > /usr/lib/system/libsystem_asl.dylib

    0x7fff869f4000 - 0x7fff86d48fff com.apple.Foundation (6: 9-1259) < 71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x7fff87831000 - 0x7fff87833fff com.apple.EFILogin /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin < 38150198-DD7F-3C73-BCAA-C74BB376393A > (2.0 - 2)

    0x7fff87834000 - 0x7fff87892fff com.apple.CoreServices.OSServices (728.12 - 728.12) < 776EBD4F-7052-377F-A70D-E2FDBD465A5E > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices

    0x7fff87893000 - 0x7fff87aa0fff libicucore. A.dylib (551.51.3) < 5BC80F94-C90D-3175-BD96-FF1DC222EC9C >/usr/lib/libicucore. A.dylib

    0x7fff87aa1000 - 0x7fff87aa9ff7 com.apple.CloudServices (1.0 - 154.50.9) these /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi < CA10E6A3-36AA-3513-90AE-B71B6B1C0094 >

    0x7fff87aaa000 - 0x7fff87aaefff libcache.dylib (75) < 9548AAE9-2AB7-3525-9ECE-A2A7C4688447 > /usr/lib/system/libcache.dylib

    0x7fff87aaf000 - 0x7fff87d55ff7 com.apple.CoreData (120-641, 3) < A29A5491-6169-372B-828F-84EE0CFD4BC4 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x7fff87d78000 - 0x7fff87de5ff7 com.apple.imfoundation (10.0 - 1000) < 5C61D95A-BE77-3D37-AA64-9944B791826E > /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n

    0x7fff87de6000 - 0x7fff87df0fff com.apple.KerberosHelper (4.0 - 1.0) < 67D88B2C-A54B-34FF-ABF3-2D3736879730 > /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper

    0x7fff87df1000 - 0x7fff87e43fff com.apple.AppleVAFramework (5.0.32 - 5.0.32) < 271ED7A9-73E5-3595-A8D6-28594C9F3C9D > /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x7fff87f0a000 - 0x7fff8812bff7 com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < F5B7B115-E43A-3C61-A6AD-EFCDE7FC43A1 >

    0x7fff8812c000 - 0x7fff8819cfff com.apple.ids /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS < 12F08B55-D23E-351A-BB2C-B9D691D4044F > (10.0 - 1000)

    0x7fff8819d000 - 0x7fff88dc6ff7 com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < F3411F6E-DD87-34D0-8C68-C69B2205E41D > (6, 9 - 1404.47)

    0x7fff88dca000 - 0x7fff88dd3ff7 (138.10.4) libsystem_pthread.dylib < 3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559 > /usr/lib/system/libsystem_pthread.dylib

    0x7fff88eea000 - 0x7fff88f09ff7 com.apple.contacts.vCard /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard < 41529BD9-1BCC-3A62-92BA-2A7110867355 > (1.0 - 2137.1)

    0x7fff88f0a000 - 0x7fff88f9ffff (10, 9-214) com.apple.ink.framework < 1F76CF36-3F79-36B8-BC37-C540AF34B338 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink

    0x7fff88fa0000 - 0x7fff88fbdff7 com.apple.pluginkit.framework (< 0BA96479-0451-3DA9-A2AC-FE1D86D383AB > /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit 1.0 - 1.).

    0x7fff88fbe000 - 0x7fff89434fff com.apple.CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation < 943A1383-DA6A-3DC0-ABCD-D9AEB3D0D34D > (6: 9 - 1258.1)

    0x7fff8944a000 - 0x7fff89452fff (385.40.36) libsystem_networkextension.dylib < 66095DC7-6539-38F2-95EE-458F15F6D014 > /usr/lib/system/libsystem_networkextension.dylib

    0x7fff89453000 - 0x7fff894fefff com.apple.PDFKit (3.1 - 3.1) < 27AF3C85-1C0B-389C-856C-2E527620C195 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit

    0x7fff89532000 - 0x7fff899cdffb com.apple.GeoServices (1.0 - 1151.49.1) /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices < 2D887517-B73D-30FF-91DC-AF6AD91F96B9 >

    0x7fff899ce000 - 0x7fff899f2ff7 libJPEG.dylib (1450) < 33C07EEE-95CB-33F7-87C1-09CE82F1E478 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x7fff899f9000 - 0x7fff899ffff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) < 9E5A980A-F455-32D5-BBEE-3BD6018CC45E > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition

    0x7fff89a00000 - 0x7fff89c90ff7 com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < F14992BD-D9D8-36EE-8A51-989A220E1846 > (6.19 - 844)

    0x7fff89c91000 - 0x7fff8a0bbfff com.apple.ModelIO (< 8838E0E1-ACB3-3CE8-ABDC-C787D8B3F247 > /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO 1.0 - 1.).

    0x7fff8a0bc000 - 0x7fff8a0cefff com.apple.CloudPhotoServicesConfiguration (1.5 - 370.42.0) < CDD720AF-F4C0-31CE-91DD-D2F4E0DEC109 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotoServicesConfiguration.framework/Versions/A/CloudPhotoServicesCon figuration

    0x7fff8a0cf000 - 0x7fff8a0d1ff7 libquarantine.dylib (80) < 0F4169F0-0C84-3A25-B3AE-E47B3586D908 > /usr/lib/system/libquarantine.dylib

    0x7fff8a0e9000 - 0x7fff8a1fbfef libvDSP.dylib (563.5) < 5702650E-DF08-3D58-B16F-9EF0A28702B3 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

    0x7fff8a1fc000 - 0x7fff8a284fff com.apple.CoreSymbolication (3.1 - 58048.1) < 4730422E-4178-34F9-8550-BB92F2A4F44B > /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication

    0x7fff8a285000 - 0x7fff8a300fff com.apple.accounts.AccountsDaemon (113-113) < 75054597-D576-3830-A731-82F04184172A > /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD Nicolas

    0x7fff8a301000 - 0x7fff8a324ff7 com.apple.speech.LatentSemanticMappingFramework (2.12.1 - 2.12.1) < DB9F6DE8-5FD1-33DC-B010-33BEA74764CB > /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping

    0x7fff8a325000 - 0x7fff8a33fff3 liblzma.5.dylib (10) < CC03591B-FA57-3CA5-AC81-0D76033AC0CE > /usr/lib/liblzma.5.dylib

    0x7fff8a4cd000 - 0x7fff8a4ecff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < 90477FAE-B835-3931-80FB-FDFF02B21D9D >

    0x7fff8a7b7000 - 0x7fff8a7cdff7 (1162.2) libLinearAlgebra.dylib < FFE54EDF-F06F-3C0A-864A-4CA7BBFD4B2D > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib

    0x7fff8a7f2000 - 0x7fff8ab5d657 libobjc. A.dylib (680) < D55D5807-1FBE-32A5-9105-44D7AFE68C27 >/usr/lib/libobjc. A.dylib

    0x7fff8ab5e000 - 0x7fff8ab77fff com.apple.CFOpenDirectory (10.11 - 194) < 11F95672-55E0-3F9D-9171-5E8C56AEE948 > /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory

    0x7fff8ab78000 - 0x7fff8ab78ff7 (765.50.8) liblaunch.dylib < 834ED605-5114-3641-AA4D-ECF31B801C50 > /usr/lib/system/liblaunch.dylib

    0x7fff8ab93000 - 0x7fff8abcbff7 com.apple.Accounts /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts < 8A356D32-2E81-3470-AFA2-8C4FA7F1DA0C > (113-113)

    0x7fff8abf8000 - 0x7fff8ac21fff com.apple.ProtectedCloudStorage (1.0-1) < 7436B2B3-943A-3500-B099-80F133B3E002 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage

    0x7fff8ac22000 - 0x7fff8ac25ffb libdyld.dylib (360.22) < CC088C2A-D407-33E7-A6B6-B06E0D4AD999 > /usr/lib/system/libdyld.dylib

    0x7fff8ac26000 - 0x7fff8ac29ff7 libCoreFSCache.dylib (119.5) < 2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib

    0x7fff8ac57000 - 0x7fff8acccfff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < A509D3AE-9D48-31B7-89C7-326A7A2007B2 >

    0x7fff8ad34000 - 0x7fff8ad34fff com.apple.Accelerate (1.10 - 1.10 accelerate) < 5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x7fff8ad63000 - 0x7fff8ae03fff com.apple.Metadata (10.7.0 - 972.34) a.framework/Versions/A/Metadata /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat < A93B485D-094C-3024-8CBB-D9E035FB83C4 >

    0x7fff8ae04000 - 0x7fff8ae09ff3 libunwind.dylib (35.3) < F6EB48E5-4D12-359A-AB54-C937FBBE9043 > /usr/lib/system/libunwind.dylib

    0x7fff8ae85000 - 0x7fff8af3dff7 com.apple.CoreDuet (< FC1EAEE1-73A4-3B13-A634-1D2A94D0C0B7 > /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 1.0 - 1.).

    0x7fff8b14a000 - 0x7fff8b14afff libenergytrace.dylib (10.40.1) < 0A491CA7-3451-3FD5-999A-58AB4362682B > /usr/lib/libenergytrace.dylib

    0x7fff8b14b000 - 0x7fff8b168ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) < 41378C0B-B56A-3A73-9BD0-E06FA1F87B8C > /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA

    0x7fff8b169000 - 0x7fff8b1b7fff libcurl.4.dylib (90) < 12E01E4B-24C9-394C-9D2C-85CF85D5F459 > /usr/lib/libcurl.4.dylib

    0x7fff8b1b8000 - 0x7fff8b1c6ff7 libbz2.1.0.dylib (38) < 28E54258-C0FE-38D4-AB76-1734CACCB344 > /usr/lib/libbz2.1.0.dylib

    0x7fff8b1c9000 - 0x7fff8b1d7fff com.apple.IntlPreferences (2.0 - 192) < A170BA4F-D39C-378C-99B5-CCB7C4F154C1 > /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences

    0x7fff8b1d8000 - 0x7fff8b1e3fff libGL.dylib (12.1) < 70D51643-04AC-3400-8F11-A6FC25985289 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x7fff8b1e4000 - 0x7fff8b29dff7 libvMisc.dylib (563.5) < BF612F7D-FA3B-3F9F-8BE7-8D1BCB21ECC5 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib

    0x7fff8b324000 - 0x7fff8b469fff com.apple.QTKit (7.7.3 - 2943.10) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit < 9D0EA81D-7BDE-3B47-B300-5C53C5EE4846 >

    0x7fff8b46a000 - 0x7fff8b46dffb libScreenReader.dylib (426.42) < 16FC79D1-4573-3E90-945F-CBA22D5185FD > /usr/lib/libScreenReader.dylib

    0x7fff8b46e000 - 0x7fff8b487fff com.apple.openscripting (1.7.1 - 169.1) < 36EBF6A7-334A-3197-838F-E8C7B27FCDBB > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting

    0x7fff8b488000 - 0x7fff8b493ff7 libChineseTokenizer.dylib (16) < 79B8C67A-3061-3C78-92CD-4650719E68D4 > /usr/lib/libChineseTokenizer.dylib

    0x7fff8b494000 - 0x7fff8b4c8ff7 com.apple.CoreVideo (1, 8-191, 3) < 1AA24A1B-CB84-3F6B-B6DE-11494542649C > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x7fff8b4c9000 - 0x7fff8b4dafff libcmph.dylib (6) < BA4BF2C6-7F4E-33B8-9DD7-619C9EB83ECF > /usr/lib/libcmph.dylib

    0x7fff8b4de000 - 0x7fff8b4efff7 (201.10.3) libsystem_trace.dylib < F00E92E4-DBDA-3749-B5B3-0C3FBBABA1CB > /usr/lib/system/libsystem_trace.dylib

    0x7fff8b4f0000 - 0x7fff8b4f9ff7 com.apple.CommonAuth /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth < 4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF > (4.0 - 2.0)

    0x7fff8b573000 - 0x7fff8b5abff7 com.apple.RemoteViewServices (2.0 - 101) < B2881449-8CFE-3D1C-B4BF-155640392533 > /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices

    0x7fff8b5cb000 - 0x7fff8b5d0ff7 libheimdal - asn1.dylib (453.40.10) < 981DE40B-FA16-36F7-BE92-8C8A115D6CD9 > /usr/lib/libheimdal-asn1.dylib

    0x7fff8b5d1000 - 0x7fff8b9a9fef com.apple.CoreAUC (214.0.0 - 214.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC < F80C19CA-6CD0-3052-9C22-0288A257CCC8 >

    0x7fff8b9aa000 - 0x7fff8ba15ff7 com.apple.framework.CoreWLAN /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN < 3B35C543-7FCE-333F-80C1-432FA41DDCDE > (11, 0 - 1101.20)

    0x7fff8be42000 - 0x7fff8be43ffb libremovefile.dylib (41) < 552EF39E-14D7-363E-9059-4565AC2F894E > /usr/lib/system/libremovefile.dylib

    0x7fff8be44000 - 0x7fff8be8fff7 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < 2FAE3CC1-145C-37AB-A836-E5D93A02BA23 > (703, 0-4791)

    0x7fff8bedb000 - 0x7fff8bf03fff com.apple.GLKit /System/Library/Frameworks/GLKit.framework/Versions/A/GLKit < 6D10E27F-7175-36D2-8770-F7789F2EACBD > (1.0 - 56)

    0x7fff8bf04000 - 0x7fff8c19eff3 com.apple.security (7.0 - 57337.50.23) /System/Library/Frameworks/Security.framework/Versions/A/Security < 8B6CF71D-A63E-34C9-9227-0AACAB643584 >

    0x7fff8c4cb000 - 0x7fff8c502ff7 com.apple.LDAPFramework (2.4.28 - 194,5) < 9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69 > /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x7fff8c503000 - 0x7fff8c507fff 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

    0x7fff8c50d000 - 0x7fff8c50efff libsystem_blocks.dylib (65) < 1244D9D5-F6AA-35BB-B307-86851C24B8E5 > /usr/lib/system/libsystem_blocks.dylib

    0x7fff8c572000 - 0x7fff8c5e0ff7 com.apple.ApplicationServices.ATS (377-394, 4) < 9779E916-0788-3CAC-B1EC-F68BCB12A2B6 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS

    0x7fff8c5e1000 - 0x7fff8c747fff com.apple.MapKit (1.0 - 1651.44.2) /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit < 1D96793D-AB70-326E-85EA-65DE75973623 >

    0x7fff8c748000 - 0x7fff8c74afff com.apple.marco /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco < FA3176F5-4C71-3CB7-B384-9662513E9B4B > (10.0 - 1000)

    0x7fff8c74b000 - 0x7fff8c75efff com.apple.contacts.ContactsPersistence (1.0 - 2137.1) < 71232F20-11BD-370D-9F43-F262BFE46C93 > /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/Cont actsPersistence

    0x7fff8c781000 - 0x7fff8c8a6fff com.apple.LaunchServices (728.12 - 728.12) < F5AB56CD-CF33-33F0-A48D-372551714E77 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices

    0x7fff8c8a7000 - 0x7fff8c907fff com.apple.QuickLookFramework /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook < ECD33169-5EB1-3783-AF9E-1AB9240F8358 > (5.0 - 696.7)

    0x7fff8c908000 - 0x7fff8c918fff (1162.2) libSparseBLAS.dylib < 6F591A0F-80D0-384D-8304-B035C4ED1BBD > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libSparseBLAS.dylib

    0x7fff8c919000 - 0x7fff8c928fe7 com.apple.AppleFSCompression (81.20.2 - 1.0) < 2FE122A9-5265-320A-9600-FFC5CE4DE197 > /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression

    0x7fff8c92b000 - 0x7fff8c946ff7 libCRFSuite.dylib (34) < 078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3 > /usr/lib/libCRFSuite.dylib

    0x7fff8c94a000 - 0x7fff8caadfff com.apple.Notes.framework (4.2 - 555.10.42) /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes < 022BF798-9A2C-3E5F-A3FC-096B0CE3D3B7 >

    0x7fff8d4ba000 - 0x7fff8d4ffff7 (24, 4-24, 5) com.apple.coreservices.SharedFileList < 1D2AD77B-778F-3253-A295-3D0A32A8121C > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedF ileList.framework/Versions/A/SharedFileList

    0x7fff8d59b000 - 0x7fff8d5ccfff com.apple.GSS /System/Library/Frameworks/GSS.framework/Versions/A/GSS < B490333A-3B3E-397A-AD75-68846E9A9140 > (4.0 - 2.0)

    0x7fff8d5cd000 - 0x7fff8d5cffff com.apple.SecCodeWrapper (4.0 - 261.40.2) < 1F832591-59A8-3B3F-943F-D6D827463782 > /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper

    0x7fff8d5eb000 - 0x7fff8d600fff com.apple.AppContainer (4.0 - 261.40.2) < F220E702-1C00-3BD2-9943-C7E75C3B4418 > /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r

    0x7fff8d601000 - 0x7fff8d61bfff com.apple.Kerberos (< 1B4744BF-E5AE-38E2-AA56-E22D3270F2E8 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 3.0 - 1).

    0x7fff8d61c000 - 0x7fff8d634ff7 com.apple.CalendarStore (8.0 - 1479) < 4B38242B-8D2F-3130-97F7-3F4BAA69FAEC > /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore

    0x7fff8d635000 - 0x7fff8d64bfff com.apple.CoreMediaAuthoring (2.2 - 953) < DAC012D0-276D-3AF6-A6E9-EA32E692B923 > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring

    0x7fff8d76f000 - 0x7fff8d771ff7 com.apple.SafariServices.framework (11601 - 11601.6.17) vices /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer < 98035563-BCB5-3BCA-A519-FB27B4F02998 >

    0x7fff8d772000 - 0x7fff8d7d9fff com.apple.framework.CoreWiFi /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi < 993592F1-B3F1-3FAD-87BD-EA83C361BCCF > (11, 0 - 1101.20)

    0x7fff8d7da000 - 0x7fff8d840ff7 (583.50.1) libsystem_network.dylib < B52DAB73-92DC-3DA7-B9F4-B899D66445C1 > /usr/lib/system/libsystem_network.dylib

    0x7fff8d854000 - 0x7fff8d85cfff libGFXShared.dylib (12.1) < 5A0C2493-200C-30BE-97D5-8E8C0B8E604D > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib

    0x7fff8d862000 - 0x7fff8d97ffff libsqlite3.dylib (216,4) < DC3D59E7-91A3-374F-957C-6699729CD82B > /usr/lib/libsqlite3.dylib

    0x7fff8d980000 - 0x7fff8d997ff7 (83.40.5) libsystem_coretls.dylib < C90DAE38-4082-381C-A185-2A6A8B677628 > /usr/lib/system/libsystem_coretls.dylib

    0x7fff8d998000 - 0x7fff8d99bff7 com.apple.AppleSystemInfo (3.1.5 - 3.1.5) < 6932B5EC-0EA9-333D-BF7E-665047392FEC > /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo

    0x7fff8d9ff000 - 0x7fff8da8cdd7 com.apple.AppleJPEG (< 558ACADA-C41F-3EEF-82A0-C2D7B13C5428 > /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 1.0 - 1.).

    0x7fff8da8d000 - 0x7fff8da8dfff (600.0.44.1) libmetal_timestamp.dylib < 6576F284-BACA-332A-A6E7-FA1C347636E3 > /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dyli b

    0x7fff8daac000 - 0x7fff8dd1bfff com.apple.AuthKit (< E32E0955-FE8D-3215-9349-C34BEE4AA550 > /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 1.0 - 1.).

    0x7fff8e2ff000 - 0x7fff8e36efff com.apple.SearchKit (1.4.0 - 1.4.0) < F159A888-34CA-36F1-AC8E-EB1B38C9DFB3 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit

    0x7fff8e36f000 - 0x7fff8e654ffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) < 2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore

    0x7fff8e655000 - 0x7fff8e8dcff3 com.apple.CFNetwork (760.5.1 - 760.5.1) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < EE9426D1-F11C-3DD4-AE08-EA29AEB27177 >

    0x7fff8e8dd000 - 0x7fff8e8dffff libCGXType.A.dylib (957) < B901C222-E779-32EB-96C2-5A707A09FC5B > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy EP. A.dylib

    0x7fff8e8e0000 - 0x7fff8ed0efff com.apple.vision.FaceCore (3.3.1 - 3.3.1) < E54028EA-4217-3078-A2B1-C52E4214D59E > /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x7fff8ed0f000 - 0x7fff8edf5ff7 (59.40.2) libcrypto.0.9.8.dylib < 2486D801-C756-3488-B519-1AA6807E8948 > /usr/lib/libcrypto.0.9.8.dylib

    0x7fff8edf6000 - 0x7fff8ee7affb com.apple.AVKit /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit < D6B7FD05-C729-3E84-A2F3-84DDAA268B3E > (1.1 - 285.10)

    0x7fff8ee7b000 - 0x7fff8ee89fff com.apple.opengl (12.1.0 - 12.1.0) < BBC4458E-12FC-3C9B-BF7E-6985D61C7A67 > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x7fff8ee8a000 - 0x7fff8ee8cff7 (802.40.13) libsystem_configuration.dylib < 3DEB7DF9-6804-37E1-BC83-0166882FF0FF > /usr/lib/system/libsystem_configuration.dylib

    0x7fff8ee8d000 - 0x7fff8f128fff com.apple.AOSKit /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit < 301C9141-CD8E-3AEC-95AE-36E70F7CB880 > (1.07 - 233)

    0x7fff8f129000 - 0x7fff8f209ff7 unorm8_rgba.dylib (2.7.3) < 9EB6C346-CFF6-32D7-B4A1-2409DFBCB216 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib

    0x7fff8f20a000 - 0x7fff8f415fff libFosl_dynamic.dylib (16.24) < 5F9DB82D-FD4B-3952-8531-CE020F93ED49 > /usr/lib/libFosl_dynamic.dylib

    0x7fff8fc75000 - 0x7fff8fc97fff com.apple.IconServices (68, 1-68, 1) < CDEEDBE6-F53B-3BA1-82D4-23BCA3DD8949 > /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s

    0x7fff8fcb5000 - 0x7fff8fd42fff (1082.50.1) libsystem_c.dylib < B552D565-B798-3B9B-AE63-F623B42A5F01 > /usr/lib/system/libsystem_c.dylib

    0x7fff8fd43000 - 0x7fff8fd48fff com.apple.MediaAccessibility (1.0 - 79) < C5E61B45-1967-3602-A48C-31E132B998B2 > /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi responsibility

    0x7fff8fd4b000 - 0x7fff8fef0ff7 com.apple.NotesShared (1.2 - 555.10.42) /System/Library/PrivateFrameworks/NotesShared.framework/Versions/A/NotesShared < E1E0EB89-7D14-3A90-B8D5-518AB4277347 >

    0x7fff8fef1000 - 0x7fff8fef9fef libsystem_platform.dylib (74.40.2) < 29A905EF-6777-3C33-82B0-6C3A88C4BA15 > /usr/lib/system/libsystem_platform.dylib

    0x7fff8fefa000 - 0x7fff8ff25ffb (33.20.2) libarchive.2.dylib < 6C370A21-63FD-3A68-B4B3-5333F24B770B > /usr/lib/libarchive.2.dylib

    0x7fff8ff26000 - 0x7fff8ff44ff7 com.apple.frameworks.preferencepanes /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes < 6D9A4009-DCE8-3FC5-91E4-01433C63E4A6 > (16, 0-16, 0)

    0x7fff8ff45000 - 0x7fff8ff87ff7 com.apple.Metal /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 2B2C0F78-20B8-3878-B9B1-DE18BB92919D > (56, 6-56, 6)

    0x7fff8ffa7000 - 0x7fff8ffb0ff3 (150.40.1) libsystem_notify.dylib < D48BDE34-0F7E-34CA-A0FF-C578E39987CC > /usr/lib/system/libsystem_notify.dylib

    0x7fff903e2000 - 0x7fff903ebfff com.apple.icloud.FindMyDevice (1.0-1) < B9C741F2-6FAC-3BA7-B6E0-9A910C6E8D4E > e /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic

    0x7fff903ec000 - 0x7fff9041aff7 com.apple.CoreServicesInternal (248, 2-248, 2) < 6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B > /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal

    0x7fff9041b000 - 0x7fff904d4ff7 com.apple.cloudkit.CloudKit /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit < E235B37E-1491-3857-BDE8-38450D4FE8D0 > (482.29 - 482.29)

    0x7fff904d5000 - 0x7fff90544fff com.apple.datadetectorscore (7.0 - 460) < FA46DEE8-B25B-3E84-B067-6A31193A0885 > /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore

    0x7fff90545000 - 0x7fff90564ff7 com.apple.ContactsUI /System/Library/Frameworks/ContactsUI.framework/Versions/A/ContactsUI < 445945EB-D7FC-38BA-8A67-5ABB44EF9987 > (9.0 - 1679.10)

    0x7fff90565000 - 0x7fff906c1ff3 com.apple.WebKitLegacy (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy < 3F9A3DDF-AA37-388E-8C96-CFF86DB0D16E >. framework/Versions/A/WebKitLegacy

    0x7fff906c2000 - 0x7fff90708ff7 libauto.dylib (186) < 999E610F-41FC-32A3-ADCA-5EC049B65DFB > /usr/lib/libauto.dylib

    0x7fff90709000 - 0x7fff9070cfff com.apple.Mangrove (< 2D86B3AD-64C3-3BB4-BC66-1CFD0C90E844 > /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 1.0 - 1.).

    0x7fff9070d000 - 0x7fff90809ff7 libFontParser.dylib (158.6) < 267A9AE4-4138-3112-8D73-BDFDC96568FF > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib

    0x7fff9080a000 - 0x7fff908f9fff libxml2.2.dylib (29.7) < 32BBF51E-B084-3FC2-AE9C-C008BE84102B > /usr/lib/libxml2.2.dylib

    0x7fff90901000 - 0x7fff90dbffcf com.apple.vImage (8.0 - 8, 0) < 85FB412E-EB30-3433-A79B-B3970FC83580 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework, Versions, A, vImage

    0x7fff90dc0000 - 0x7fff90de9ff7 com.apple.UserActivity (26, 2 - 26.2) < 6CEB6F0B-3228-3D23-913C-D604FD5D3820 > /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivit y

    0x7fff90fbc000 - 0x7fff91017ff7 libTIFF.dylib (1450) < 5BB63D48-B807-31FB-B13F-05C60584707E > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x7fff91018000 - 0x7fff9108ffeb (335.50.1) libcorecrypto.dylib < B5C05FD7-A540-345A-87BF-8E41848A3C17 > /usr/lib/system/libcorecrypto.dylib

    0x7fff91090000 - 0x7fff911b8fff com.apple.NetworkExtension (< CFD98864-3DD5-391E-B0EA-388294A75C31 > 1.0-1 /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtensi) on

    0x7fff911b9000 - 0x7fff911bbff7 com.apple.xpc.ServiceManagement (1.0-1) < D96D7A6D-EDEB-35EE-B5D9-E33A3BF011B5 > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage lie

    0x7fff911bc000 - 0x7fff911c8ff7 com.apple.commonutilities (8.0 - 900) < 18D60822-654D-3532-A47E-A2239EF4E301 > /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUt ite

    0x7fff911e3000 - 0x7fff9120cff7 libxslt.1.dylib (14.2) < 6E8D0F06-9086-32D3-9D87-3870A1CE9E99 > /usr/lib/libxslt.1.dylib

    0x7fff9120d000 - 0x7fff91259ff7 com.apple.corelocation /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation < 6336CFC5-9D7D-3B76-B263-56DD6EBD0B8D > (1486.17 - 1615.38)

    0x7fff91267000 - 0x7fff91285ff7 (3248.50.21) libsystem_kernel.dylib < 78E54D59-D2B0-3F54-9A4A-0A68D671F253 > /usr/lib/system/libsystem_kernel.dylib

    0x7fff91286000 - 0x7fff9135cffb com.apple.DiskImagesFramework (10.11.4 - 417,4) < 6D26E255-D7BB-3A9D-8B6F-E07D2DBB68AE > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x7fff91364000 - 0x7fff913b5ff7 libcups.2.dylib (435.2) < 91584A40-214D-33E8-A613-CE22289037C8 > /usr/lib/libcups.2.dylib

    0x7fff913b6000 - 0x7fff91731ffb com.apple.VideoToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < 2B21F9B2-66A2-3900-84A5-0AB66F8056E4 >

    0x7fff91978000 - 0x7fff91978fff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < A4FFF004-53B0-3EAC-A13F-5416BFFD8886 > (728.12 - 728.12)

    0x7fff91979000 - 0x7fff9197efff com.apple.DiskArbitration /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration < F55902AA-5316-3255-A701-FDED5B553065 > (2.7 - 2.7)

    0x7fff9197f000 - 0x7fff91a0efff com.apple.CorePDF /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF < 849BBFF6-0700-3ED1-98DF-A6E93B9B707F > (4.0 - 4)

    0x7fff91a0f000 - 0x7fff91a12fff libspindump.dylib (197,1) < 48F4C673-9F0C-38BE-B550-88241E812518 > /usr/lib/libspindump.dylib

    0x7fff91a23000 - 0x7fff91a6aff7 com.apple.AOSAccounts (1.3.1 - 1.10.02) /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts < FFD13410-D077-3EAF-8EFB-5A4F99AE2113 >

    0x7fff91a6b000 - 0x7fff91a71fff com.apple.XPCService (< 5E2122D6-FFA2-3552-BF16-9FD3F36B40DB > /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 2.0 - 1).

    0x7fff91a72000 - 0x7fff91a8efff com.apple.GenerationalStorage (2.0 - 239, 1) < 8C821448-4294-3736-9CEF-467C93785CB9 > /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage

    0x7fff91a8f000 - 0x7fff91a90fff com.apple.TrustEvaluationAgent (2.0 - 25) < 0239494E-FEFE-39BC-9FC7-E251BA5128F1 > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent

    0x7fff91a91000 - 0x7fff91b35fff com.apple.Bluetooth (4.4.5 - 4.4.5f3) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < 141F2C36-70B6-32D3-A556-7A605832CDB3 >

    0x7fff91b3d000 - 0x7fff91b3dff7 com.apple.CloudPhotosConfigurationXPC (1.5 - 370.42.0) < E1825828-6544-3C11-BDF8-0AF1791D6FB8 > /System/Library/PrivateFrameworks/CloudPhotoServices.framework/Versions/A/Frame works/CloudPhotosConfigurationXPC.framework/Versions/A/CloudPhotosConfigurationX PC

    0x7fff91b3e000 - 0x7fff91b6afff com.apple.framework.SystemAdministration (1.0 - 1.0) < 1318B6A5-FFC3-3615-914D-95CBFE5BA727 > /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration

    0x7fff91b6b000 - 0x7fff91ba9ff7 libGLImage.dylib (12.1) < BB1F1A93-5101-3906-AB17-8D83FCB200F9 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib

    0x7fff91baa000 - 0x7fff91babffb libSystem.B.dylib (1226.10.1) < C5D09FE1-CC70-383E-AC27-18602F2EDEC4 > /usr/lib/libSystem.B.dylib

    0x7fff91bac000 - 0x7fff91bd9fff (501.40.12) libdispatch.dylib < C7499857-61A5-3D7D-A5EA-65DCC8C3DF92 > /usr/lib/system/libdispatch.dylib

    0x7fff91bda000 - 0x7fff91bdfff7 libmacho.dylib (875.1) < 318264FA-58F1-39D8-8285-1F6254EE410E > /usr/lib/system/libmacho.dylib

    0x7fff91be0000 - 0x7fff91c0dfff com.apple.facetimeservices /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices < 4CA7BA98-BECA-3062-BADC-3BEEAAF66D3B > (10.0 - 1000)

    0x7fff91c76000 - 0x7fff91c79ff7 com.apple.help (1.3.3 - 46) < 35DA4D48-0BC2-35A1-8D7C-40905CDF4F64 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/help

    0x7fff91c7a000 - 0x7fff91ca1fff com.apple.ChunkingLibrary (167-167) < AD7F285C-005E-36BB-98A3-5826413533BE > /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking library

    0x7fff91ca2000 - 0x7fff91ca3fff libDiagnosticMessagesClient.dylib (100) < 4243B6B4-21E9-355B-9C5A-95A216233B96 > /usr/lib/libDiagnosticMessagesClient.dylib

    0x7fff91caf000 - 0x7fff91cbdfff com.apple.ToneLibrary (< AF05AF34-9BC4-3BA6-81C1-7420F22C9D7D > /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary 1.0 - 1.).

    0x7fff91cbe000 - 0x7fff91cc6fff libcopyfile.dylib (127) < A48637BC-F3F2-34F2-BB68-4C65FD012832 > /usr/lib/system/libcopyfile.dylib

    0x7fff91cc7000 - 0x7fff91cd5fff libxar.1.dylib (302) < 03207F66-2C4A-3DBD-8D81-70F4C85903C4 > /usr/lib/libxar.1.dylib

    0x7fff91cd6000 - 0x7fff91cd6fff libOpenScriptingUtil.dylib (169,1) < AD0DAC8A-9849-3077-999F-9AEC6112BDAB > /usr/lib/libOpenScriptingUtil.dylib

    0x7fff91cd7000 - 0x7fff91d08ff7 libtidy. A.dylib (15,17) < 6859415D-7A43-384E-ABDD-AA6B2AA9FDCD >/usr/lib/libtidy. A.dylib

    0x7fff91d09000 - 0x7fff91d0bff7 libRadiance.dylib (1450) < 0C0DACDA-2040-3D22-A8E7-7035AB624E4A > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib

    0x7fff91d13000 - 0x7fff91d3cff7 (765.50.8) libxpc.dylib < 54D1328E-054E-3DAA-89E2-375722F9D18F > /usr/lib/system/libxpc.dylib

    0x7fff91d3d000 - 0x7fff91d52ff3 libCGInterfaces.dylib (317.9) < 473434E1-5269-3077-A047-D05E024AE631 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Libraries/libCGInterfaces.dylib

    0x7fff91d53000 - 0x7fff91e16fff com.apple.imcore /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore < C3F22E18-ECB0-32B7-A596-A5EFCF84B192 > (10.0 - 1000)

    0x7fff91e17000 - 0x7fff91e26ffb 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

    0x7fff91e27000 - 0x7fff91e64ff3 (14, 0-193, 7) com.apple.bom < 9B8AE30B-24A3-37AB-B04E-4CE67AED4775 > /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom

    0x7fff91e65000 - 0x7fff91f15fff com.apple.backup.framework (1.7.4 - 1.7.4) < F304E9D1-991A-379E-9659-BF85C35B4808 > /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x7fff91f1c000 - 0x7fff91f37fff com.apple.aps.framework (4.0 - 4.0) < CAD47B6E-A581-3B35-885B-67B206F41D5E > /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService

    0x7fff91f38000 - 0x7fff91f38fff com.apple.Cocoa /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa < 807787AB-D231-3F51-A99B-A9314623C571 > (6.11 - 22)

    0x7fff9201b000 - 0x7fff92037ff7 libextension.dylib (78) < FD952DA6-BBEC-3CB6-98B3-E1D111C5C54E > /usr/lib/libextension.dylib

    0x7fff92040000 - 0x7fff92042ff7 com.apple.securityhi (9.0 - 55006) < 1E7BE52B-97EA-371A-AECA-1EE2AD246D8A > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI

    0x7fff92043000 - com.apple.DictionaryServices (1.2 - 250, 3) < 30250542-CBAA-39C1-91AA-B57A5DE17594 > 0x7fff92072ff7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices

    0x7fff92073000 - 0x7fff92075fff com.apple.loginsupport (1.0-1) < 9B2F5F9B-ED38-313F-B798-D2B667BCD6B5 > /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport

    0x7fff92087000 - 0x7fff9208ffff com.apple.AppleSRP (< 840A5C20-6452-36BB-ACF7-29BA6CBF7C48 > /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 5.0 - 1).

    0x7fff92095000 - 0x7fff9209eff7 com.apple.DisplayServicesFW (3.0 - 378) < 45BE1B99-8E10-32F0-A180-A6B6CB5883AE > /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices

    0x7fff92fc9000 - 0x7fff93309fff com.apple.WebKit (11601 - 11601.6.17) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit < F54752A4-B5AA-3993-BA9A-83F4B3AA176E >

    0x7fff9330a000 - 0x7fff93373fff com.apple.framework.internetaccounts (2.1 - 210) < 063FF467-215F-3E81-B02B-02E8B9750F24 > /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts

    0x7fff9350e000 - 0x7fff935c8fff com.apple.DiscRecording (9.0.1 - 9010.4.3) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording < 540853B2-B123-3560-8023-C92EE229051A >

    0x7fff935c9000 - 0x7fff935d9fff libbsm.0.dylib (34) < 7E14504C-A8B0-3574-B6EB-5D5FABC72926 > /usr/lib/libbsm.0.dylib

    0x7fff93616000 - 0x7fff93618fff com.apple.OAuth /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth < B147CF79-A687-3466-BCAE-F05243DE71F7 > (25-25)

    0x7fff93630000 - 0x7fff937aefff com.apple.UIFoundation (1.0 - 436.1) < AABB5267-E7B7-3D75-B051-E665BDA8DEF4 > /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n

    0x7fff93858000 - 0x7fff9385cfff com.apple.LoginUICore (3.2 - 3.2) < 5524E4BC-4700-39F4-AF06-E53322712EE0 > /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore

    0x7fff9385d000 - 0x7fff93861fff libpam.2.dylib (20) < CFCD19BD-87BC-3F2B-BB1C-4C23E8E55F1A > /usr/lib/libpam.2.dylib

    0x7fff938b3000 - 0x7fff938c4ff7 libz.1.dylib (61.20.1) < B3EBB42F-48E3-3287-9F0D-308E04D407AC > /usr/lib/libz.1.dylib

    0x7fff938c5000 - 0x7fff938d7fff libsasl2.2.dylib (209) < 11C7D200-0CA5-30F4-A19A-178CA81D48FE > /usr/lib/libsasl2.2.dylib

    0x7fff938e1000 - 0x7fff938f8fff libmarisa.dylib (4) < E4919B03-D9BD-3AF8-B436-C415C98E3F0A > /usr/lib/libmarisa.dylib

    0x7fff93931000 - 0x7fff939d1fff com.apple.ViewBridge /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge < D8131B7E-DFC9-3FDD-9D56-49821C1D1521 > (159-159)

    0x7fff939d2000 - 0x7fff939d2ff7 libunc.dylib (29) < DDB1E947-C775-33B8-B461-63E5EB698F0E > /usr/lib/system/libunc.dylib

    0x7fff939dc000 - 0x7fff94ac9ffb com.apple.WebCore (11601 - 11601.6.17) < A715DA96-B504-36A3-88DD-13485DE8BA2D > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore

    0x7fff94aca000 - 0x7fff94b16ffb com.apple.HIServices (1.22 - 550) < 6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices

    0x7fff94b92000 - 0x7fff94b93fff liblangid.dylib (122) < 9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822 > /usr/lib/liblangid.dylib

    0x7fff94d47000 - 0x7fff94d97ff7 com.apple.Symbolication (1.4 - 58044) < F70BF765-FBE9-3F1E-85CA-BB2F8E53E8C2 > /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion

    0x7fff94dc8000 - 0x7fff94e6ffff com.apple.LanguageModeling (1.0-1) < 58C18A47-BDE7-3CBE-81C0-797029D170A1 > /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling

    0x7fff94e70000 - 0x7fff94ec1fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < EA7D4F3B-062B-3C81-A98C-C89264D00D48 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x7fff94ec2000 - com.apple.EmailAddressing (9.0 - 3007) < FD3686F1-981C-3B59-BFE4-8B64ACF3E7A4 > 0x7fff94ec7fff pressure /System/Library/PrivateFrameworks/EmailAddressing.framework/Versions/A/EmailAdd

    0x7fff95885000 - 0x7fff958dafff com.apple.AE (701-701) < AD492742-F884-386B-A450-FAC281B9FFA4 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE

    0x7fff9590d000 - 0x7fff95922fff com.apple.ToneKit (< 6D5AD263-308F-3F70-8D86-7027569D2694 > /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit 1.0 - 1.).

    0x7fff95923000 - 0x7fff95929fff com.apple.IOAccelerator (205, 10-205, 10) < E46ED853-C2CC-3F29-A7DD-5E9351A2E754 > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor

    0x7fff95979000 - 0x7fff95985fff 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

    0x7fff959d0000 - 0x7fff959d8ffb (625.50.5) libsystem_dnssd.dylib < 4D10E12B-59B5-386F-82DA-326F18028F0A > /usr/lib/system/libsystem_dnssd.dylib

    0x7fff95b28000 - 0x7fff9604afff com.apple.QuartzComposer (5.1 - 334) < 80235264-CA1B-3E3F-96F7-5F6F52FDC5B6 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer

    0x7fff9604b000 - 0x7fff96056fff (517.50.1) libcsfde.dylib < 52F0DB6A-13B8-355E-ADFD-72834D3CA183 > /usr/lib/libcsfde.dylib

    0x7fff96060000 - 0x7fff96082ff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing < DDD2811C-6ECB-32F2-8EE1-69BF9657B4A8 >

    0x7fff96089000 - 0x7fff96095fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) < 6BA06290-D4A3-351C-87F9-B61EF61FF055 > /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore

    0x7fff960ca000 - 0x7fff97332ff7 com.apple.CoreGraphics (1.600.0 - 957) < 0AD5EC17-569E-3864-A637-AD720F5AE0BE > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0x7fff97333000 - com.apple.ProtocolBuffer (1-243) 0x7fff97343ff3 < BAE5E5C9-DD59-3BB8-9741-EEFC5E3046EE > /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer

    0x7fff9738f000 - 0x7fff973c2ff7 com.apple.MediaKit (16-809) < BF8032FE-6645-37F6-A622-BC7EEE3EAABF > /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x7fff973c3000 - 0x7fff97630fff (2: 6-932) com.apple.imageKit < FAE317B8-DF15-3096-AFAC-464913BF2F3B > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit

    0x7fff97631000 - 0x7fff97631fff com.apple.IOPlatformPluginFamily (1.0-1) < 61D1D438-9DE8-34A0-ADC0-9789517515E8 > /System/Library/PrivateFrameworks/IOPlatformPluginFamily.framework/Versions/A/I OPlatformPluginFamily

    0x7fff97907000 - 0x7fff9790cff7 com.apple.AssetCacheServices (14.1 - 14.1) < 5F249F84-660A-3E94-B073-6729E7ED56D9 > /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/Asset CacheServices

    0x7fff9790d000 - 0x7fff97960ff7 libc ++.1.dylib (120,1) < 8FC3D139-8055-3498-9AC5-6467CB7F4D14 > /usr/lib/libc++.1.dylib

    0x7fff97961000 - 0x7fff97a3afff com.apple.CoreMedia (1.0 - 1731.15.204) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < 4BFDD68E-9411-3358-8679-BB3EDA94F9A2 >

    0x7fff97a3b000 - 0x7fff97ad1fff com.apple.ColorSync (4.9.0 - 4.9.0) < 8FC37E20-6579-3CB2-9D49-BC39FC38DF87 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync

    0x7fff97ad2000 - 0x7fff97addff7 (60075.50.1) libcommonCrypto.dylib < 93732261-34B4-3914-B7A2-90A81A182DBA > /usr/lib/system/libcommonCrypto.dylib

    0x7fff97ade000 - 0x7fff97adefff com.apple.Accelerate.vecLib (vecLib - 3.10 3.10) < 848125D3-AF14-3526-8745-FFCDB200CD76 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib

    0x7fff97c3f000 - 0x7fff97c41fff libsystem_coreservices.dylib (19.2) < 1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D > /usr/lib/system/libsystem_coreservices.dylib

    0x7fff97c42000 - 0x7fff97c94fff com.apple.ImageCaptureCore /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo < 9F3123D8-29D2-332F-AD6B-AB9BF1A58022 > (7.0 to 7.0) re

    0x7fff97c95000 - 0x7fff97d87ff7 libJP2.dylib (1450) < 8337298A-7911-3B56-85C7-BBA2D8D844EE > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x7fff97d88000 - 0x7fff97d9bfff com.apple.CoreBluetooth (< E54CA9A2-A5C6-30C5-9D6E-8472DBA9371E > /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 1.0 - 1.).

    0x7fff97d9c000 - 0x7fff97d9efff com.apple.CoreDuetDebugLogging (1.0-1) < 7C932160-AC9C-3173-900F-98138E829CB3 > /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging

    0x7fff97edb000 - 0x7fff97eddff7 com.apple.diagnosticlogcollection (10.0 - 1000) < 80160173-9F22-300C-BD1A-1CDBB1C39FC6 > /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection

    0x7fff97ede000 - 0x7fff97ee0fff libCVMSPluginSupport.dylib (12.1) < D81B3D8D-B83F-3918-BD4B-6C794A30AF9F > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib

    0x7fff97f5d000 - 0x7fff97f94ff7 com.apple.CoreSpotlight (1.0 - 81, 4) < C1F47729-FB13-32FF-A569-C63FA6C278E9 > /System/Library/PrivateFrameworks/CoreSpotlight.framework/Versions/A/CoreSpotli ght

    0x7fff98015000 - 0x7fff98018fff com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface < A0037B0A-277A-393E-9BF6-688595BD564D >

    0x7fff98019000 - 0x7fff98104ff7 com.apple.QuickLookUIFramework (5.0 - 696.7) < 5A4AAFEC-D38C-3DA0-9361-CBF1D4C6B376 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f EPI/Versions/A/QuickLookUI

    0x7fff98141000 - 0x7fff98149fff libMatch.1.dylib (27) < 3AC0BFB8-7E69-3DBE-A175-7F3946FC4554 > /usr/lib/libMatch.1.dylib

    0x7fff9814a000 - 0x7fff9814dff7 com.apple.iChat.InstantMessage (8.0 - 5017) < 989738B4-0269-3DD6-AAEC-2B712FB765D5 > /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage

    0x7fff981da000 - 0x7fff98324ff7 com.apple.coreui (2.1 - 366.1) < 8138636F-A0A7-31C7-896C-5F5747FA1B2A > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x7fff98365000 - 0x7fff98394ffb libsystem_m.dylib (3105) < 08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4 > /usr/lib/system/libsystem_m.dylib

    0x7fff983c7000 - 0x7fff9856dff7 com.apple.audio.toolbox.AudioToolbox /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox < 082319FC-59F2-3D36-AC9B-94759724E302 > (1.13 - 1.13)

    0x7fff9856e000 - 0x7fff98c0dff7 com.apple.JavaScriptCore (11601 - 11601.6.13) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < 93B52DD9-7810-3562-8605-B97965F6DB94 >

    0x7fff98c0e000 - 0x7fff98c16ff7 (583.50.1) libnetwork.dylib < EFED972E-5555-30C0-AFC7-7790F20B494D > /usr/lib/libnetwork.dylib

    0x7fff98c17000 - 0x7fff98c7afff libAVFAudio.dylib (161,2) < 1A98DBF3-490B-37FB-928A-AB1E36E6E5DD > /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib

    0x7fff98ce0000 - 0x7fff98ce1ff7 libodfde.dylib (23) < F84CB160-D638-3190-B6F5-A262E9AF09F6 > /usr/lib/libodfde.dylib

    0x7fff98ce3000 - 0x7fff98dd5ff7 libiconv.2.dylib (44) < F05A0A5A-92A9-3668-8F20-F27CBDA26BE9 > /usr/lib/libiconv.2.dylib

    0x7fff98e7d000 - 0x7fff98e7dfff com.apple.AOSMigrate (< 17A49E04-567B-3B4F-9975-E8F83AE8357D > /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate 1.0 - 1.).

    0x7fff98e7e000 - 0x7fff98e92fff com.apple.CoreDuetDaemonProtocol (1.0-1) < 1D60D60C-914A-3BAB-8607-79F68F4C712E > /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol

    0x7fff98e93000 - 0x7fff98e9aff7 com.apple.phonenumbers (1.1.1 - 105) < A616AFB5-2336-385A-B058-16A423D2B21B > /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s

    0x7fff98e9b000 - 0x7fff99069ff3 com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < 076BDE58-8AED-3D47-84FD-548CF8E8EDB9 > (1.11 - 410.14)

    0x7fff9906a000 - 0x7fff99093fff (477.50.4) libsystem_info.dylib < FAA9226D-64DE-3769-A6D8-6CABA4B7FF4D > /usr/lib/system/libsystem_info.dylib

    0x7fff99094000 - 0x7fff99097fff (460.50.4) libsystem_sandbox.dylib < 150A9D3D-F69E-32F7-8C7B-8E72CAAFF7E4 > /usr/lib/system/libsystem_sandbox.dylib

    0x7fff99098000 - 0x7fff990b1fe7 libcompression.dylib (28) < F83F421D-115D-3457-A9AA-1BEB5070A30B > /usr/lib/libcompression.dylib

    0x7fff990cc000 - 0x7fff990ccff7 libkeymgr.dylib (28) < 8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0 > /usr/lib/system/libkeymgr.dylib

    0x7fff990fb000 - 0x7fff99124ffb libRIP.A.dylib (957) < 5F18F20D-5921-3314-A9F8-F1B1CB62C83D > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib

    0x7fff99125000 - 0x7fff99141ff3 libresolv.9.dylib (60) < A650B5C8-1950-36A0-86D1-0B2465318BFA > /usr/lib/libresolv.9.dylib

    0x7fff99142000 - 0x7fff99187ff3 libFontRegistry.dylib (155,2) < A70DD497-35F3-34DA-9C19-F4B90080E961 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib

    0x7fff99188000 - 0x7fff991c9ff7 libGLU.dylib (12.1) < CD7A5916-3E3C-3EF3-A275-B281016B99CB > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x7fff99269000 - 0x7fff99274fff com.apple.DirectoryService.Framework /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi < 6F827D0E-0F02-3B09-B2A8-252865EECA7F > (10.11 - 194) this

    0x7fff99275000 - 0x7fff992a3ff7 (460.50.4) libsandbox.1.dylib < C6797DA3-DF51-3774-9D02-31670A820D18 > /usr/lib/libsandbox.1.dylib

    0x7fff9933e000 - 0x7fff9934aff7 com.apple.OpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory < 31A67AD5-5CC2-350A-96D7-821DF4BC4196 > (10.11 - 194)

    0x7fff9934b000 - 0x7fff9939dfff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs < 5FD9138D-09D9-3B97-BBAD-5692E1687F30 > (1.0 - 383.13)

    0x7fff994d8000 - 0x7fff994d8fff com.apple.audio.units.AudioUnit /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit < 93C1D642-37D4-3692-AD35-DCAD04F9610B > (1.13 - 1.13)

    0x7fff994d9000 - 0x7fff99513ff7 (132-132) com.apple.DebugSymbols < 23A42C53-B941-3871-9EE2-4C87A46005B5 > /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s

    0x7fff99589000 - 0x7fff9962ffff com.apple.CoreUtils /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils < 60A9A7F3-EB0E-3CCF-8925-D18A9CD4B94D > (4.0 - 400.28)

    0x7fff996b3000 - 0x7fff996d8ff7 libPng.dylib (1450) < EB65B96A-B190-36A8-9F9D-F3A3020B267D > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x7fff996d9000 - 0x7fff99925ff7 com.apple.AddressBook.framework /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook < 24F823D3-C3FC-3AF9-B8B3-C166539DBD11 > (9.0 - 1679.10)

    0x7fff99aee000 - 0x7fff99caeffb libBLAS.dylib (1162.2) < B4C21826-5EB3-3C6D-B75D-CA4886E2B6A6 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib

    0x7fff99d1a000 - 0x7fff99d1ffff com.apple.ImageCapture /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture < ACECF0B7-7D92-3A22-BF47-E8FADF4C5378 > (9, 0-9, 0). framework/Versions/A/ImageCapture

    0x7fff99d24000 - 0x7fff99d2cfff com.apple.NetFS /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS < 842A5346-24C3-3F22-9ECF-E586A10EA1F2 > (6.0 - 4.0)

    0x7fff99d9f000 - 0x7fff9a2f7ff7 com.apple.MediaToolbox (1.0 - 1731.15.204) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < BD296DBD-BEC9-3B25-B859-E88A009BB879 >

    0x7fff9a316000 - 0x7fff9a321fff com.apple.CrashReporterSupport (10.11 - 718) < 05892B57-F2CD-3C84-B984-0417F6B361DB > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport

    0x7fff9a322000 - 0x7fff9a322fff com.apple.Carbon /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon < 8F6ED602-5943-3E29-A793-BC331E2C183D > (154 to 157)

    0x7fff9a32a000 - 0x7fff9a335fff com.apple.AppSandbox (4.0 - 261.40.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox < 52766210-B6EB-3B73-AB1B-42E0A9AD2EE8 >

    0x7fff9a336000 - 0x7fff9a3aaff7 com.apple.Heimdal /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal < 5D365381-8B5E-3259-8867-FC4A7D307BDE > (4.0 - 2.0)

    0x7fff9a4ba000 - 0x7fff9a4e7ff3 com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) < 535AE12D-8927-31DE-87F7-A3F8ABF8C670 > /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X

    0x7fff9a4e8000 - 0x7fff9a4efff7 libcompiler_rt.dylib (62) < A13ECF69-F59F-38AE-8609-7B731450FBCD > /usr/lib/system/libcompiler_rt.dylib

    0x7fff9a4f0000 - 0x7fff9a4f8fff com.apple.frameworks.CoreDaemon /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon < CC53DC12-9231-3C4F-921B-9A770D463323 > (1.3 - 1.3)

    0x7fff9a4f9000 - 0x7fff9a545fff 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

    0x7fff9ac4c000 - 0x7fff9ac86fff com.apple.QD (3.12 - 302) < 0FE53180-2895-3D14-A1E7-F82DE1D106E1 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD

    0x7fff9ad02000 - 0x7fff9ad6eff7 com.apple.contacts.Contacts /System/Library/Frameworks/Contacts.framework/Versions/A/Contacts < 2726B3FB-7A00-34E0-8BBF-7E5395C35527 > (1.0 - 2137.1)

    0x7fff9ad73000 - 0x7fff9ad8fff7 (67.40.1) libsystem_malloc.dylib < 5748E8B2-F81C-34C6-8B13-456213127678 > /usr/lib/system/libsystem_malloc.dylib

    0x7fff9add2000 - 0x7fff9add2fff com.apple.quartzframework /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz < 5DC3D0D9-9E3F-3AA5-92F1-F229907A49B9 > (1, 5-21)

    0x7fff9ae06000 - 0x7fff9ae95ff7 (517.50.1) libCoreStorage.dylib < E6283FE9-B5AC-3110-8D4C-8E2BF185983E > /usr/lib/libCoreStorage.dylib

    0x7fff9ae96000 - 0x7fff9ae98ffb libutil.dylib (43) < 4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C > /usr/lib/libutil.dylib

    0x7fff9aea6000 - 0x7fff9b5d8ff7 com.apple.VectorKit (1.0 - 1156.38.0.1) /System/Library/PrivateFrameworks/VectorKit.framework/Versions/A/VectorKit < 622EC7F5-118E-3F16-BD3D-137BA85BABD9 >

    0x7fff9b61c000 - 0x7fff9b647fff com.apple.idsfoundation (10.0 - 1000) < 4735029B-DAE5-31E4-AD40-C5C52E328B31 > /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion

    Summary of the external change:

    Calls made by other processes for this process:

    task_for_pid: 1

    thread_create: 0

    thread_set_state: 0

    Calls made by this process:

    task_for_pid: 0

    thread_create: 0

    thread_set_state: 0

    Calls made by all processes on this machine:

    task_for_pid: 3231

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

    ReadOnly part of libraries: Total = M = 0 K (0%) swapped_out_or_unallocated=321.8M(100% resident 321.8)

    Regions in writing: Total = 1.1 G written = 0 K (0%) resident = 0 K (0%) swapped_out = 0 K (0%) unallocated=1.1G(100%)

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

    ===========                       =======  =======

    Accelerate.Framework 128K 2

    2048K 2 follow-up activity

    CG backup stores 440K 3

    CG image 116 K 26

    CG shared images 240K 6

    CoreAnimation 3076 K 47

    CoreData Object ID 4100 K 3

    CoreUI 820 K 10 image data

    CoreUI image file 256K 6

    Ship 8192 K 2 continuations

    Foundation 4K 2

    JS JIT generated code 128.0 M 4

    JS JIT generated code (reserved) 896,0 M 2 reserved address space VM (not assigned)

    Kernel Alloc once 8 K 3

    MALLOC 49.3 M 21

    MALLOC 32K 7 cover page

    Tag memory 242 12K 2

    Tag memory K 251 48, 3

    OpenCL                                 8K        2

    Corpse process Info 2048 K 2

    SQLite page cache 384K 4

    BATTERY GUARD 56.1 M 25

    The stack of 19.2 M 28

    VM_ALLOCATE 76K 12

    WebKit Malloc 4388 K 16

    __DATA 33.2 M 339

    __IMAGE                              528K        2

    __LINKEDIT 92,0 M 29

    __TEXT 229.8 348 M

    __UNICODE 552K 2

    mapped file 51.2 M 23

    16.3 shared memory 8 M

    ===========                       =======  =======

    TOTAL 1.6 G 959

    TOTAL, less reserved VM space 701.9 M 959

    Model: iMac12, 2, IM121.0047.B23 of BootROM, 4 processors, Intel Core i5, 3.1 GHz, 8 GB, MSC 1.72f5

    Graphics card: AMD Radeon HD 6970 M, AMD Radeon HD 6970 M, PCIe, 1024 MB

    Memory module: DIMM0/0 BANK, 4 GB DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020

    Memory module: DIMM0/1 BANK, 4 GB DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020

    Airport: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.74.0 - P2P

    Bluetooth: Version 4.4.5f3 17904, 3 services, 27 aircraft, 1 incoming serial ports

    Network service: Wi - Fi 2, airport, en1

    Serial ATA Device: ST31000528AS, 1 TB

    Serial ATA Device: HL-DT-STDVDRW GA32N

    USB device: USB 2.0 Bus

    USB device: FaceTime HD camera (built-in)

    USB device: Hub

    USB Device: HDD external

    USB device: Hub BRCM2046

    USB Device: USB Bluetooth host controller

    USB device: USB 2.0 Bus

    USB device: Hub

    USB device: USB 2.0 Hub

    USB device: USB 2.0 Hub

    Device USB: CanoScan

    USB device: My book 1234

    USB Device: IR receiver

    USB Device: Card reader

    Bus crush: iMac, Apple Inc., 25.1

    Any suggestion will be appreciated

    Please delete the copy of the Notes that you did on the desktop and use the one in the Applications folder. Never move or copy built-in applications.

Maybe you are looking for

  • Summer DVD disc supplied with Satellite L50 - A - 19 p?

    HelloI bought L50 - A - 19 p. Now I'm trying to find the DVD for this laptop, but I'm not sure that the DVD was in the scope of delivery.And I find no information about this in any web-shops or descriptions.Was it? Thank you!

  • Key to series of Win Vista to 7?

    Hello I have a laptop with Win Vista Home Edition is installed, but need to format the disk. Instead, reinstall Vista, I would like to install Win7.This laptop has a serial key for Windows stamped in the back, which is the key to the current installe

  • cmd.exe fonts Raster 8 x 12 is missing

    8 x 12 is a default raster under CMD All of a sudden after the launch of cmd.exe, it was really small. I've changed its size using properties available from the upper left corner of the window, but... It is therefore more Raster Font 8 x 12 How can I

  • BlackBerry Z30 Z30 VVM repeatedly pop up password request

    VVM repeatedly pop up asking for my password.  I never put a password for the VVM, therefore, I don't know what it is, and I don't know how to find.  The only choice I give myself is to change the password, BUT I need to know the current password for

  • Impossible contect, indicates internet is connected but wont go to more then a page

    I have a Pavilion dv6-7029wm Entertainment PC it shoes a little a yellow symbol on my icon in the bottom right of my PC wireless I have watching my wireless it says I am connected but won't let me go to any Web site, but we I try to go to Google or y