Game recording issues with ffmpeg

Hello, I'm trying to create a script to record windowed games with ffmpeg.
This is what I have so far:
#!/bin/sh
INFO=$(xwininfo -frame)
WIN_GEO=$(echo $INFO | grep -oEe 'geometry [0-9]+x[0-9]+' | grep -oEe '[0-9]+x[0-9]+')
WIN_XY=$(echo $INFO | grep -oEe 'Corners:\s+\+[0-9]+\+[0-9]+' | grep -oEe '[0-9]+\+[0-9]+' | sed -e 's/+/,/' )
ffmpeg -f x11grab -y -r 60 -s $WIN_GEO -i :0.0+$WIN_XY -f alsa -i pulse -crf 18 -preset ultrafast -threads 8 -async 5000 $1.mkv
It allows me to click on a window and record it - it works, but has some issues:
> I manually have to redirect the game audio with pavucontrol to be able to record it
> Audio gets out of sync, I tried many options with no luck
> I can't find a way to record both game audio and microphone audio
So,
> Could the script be improved somehow for better quality/performance?
> How can I prevent the audio going out of sync?
> How can I record both game video, game audio and microphone audio at the same time?
Thanks.

SuperV1234 wrote: > I manually have to redirect the game audio with pavucontrol to be able to record it
Usually, PulseAudio will remember the last used device. Once you run ffmpeg once, PA should remember that it listened on the monitor input and use that.
SuperV1234 wrote: > Audio gets out of sync, I tried many options with no luck
I got this problem too a while back. Try removing the -async option, it's deprecated and caused more trouble than I had. Also, make sure you always have enough processing power to process everything in time, otherwise it will become out of sync quickly. ffmpeg isn't smart enough yet to fill the gaps, so if you can't grab the audio fast enough (pulseaudio glitch), can't encode the video fast enough 100% of the time, or anything else, it will lose frames and result in a delay. Even funnier, also make sure the drive you output to is fast enough to save the file so ffmpeg never block on writing the file to disk (I used to send my encode directly to a streaming server, and the network latency messed it up).
SuperV1234 wrote: > I can't find a way to record both game audio and microphone audio
You can set this up easily with either PA or Jack. Jack is a bit easier to use, but here's the way I do it myself:
- Create a dummy output device (module-null-sink)
- Use a loopback to play your microphone in the dummy output (module-loopback)
- Use a loopback to play your sound card monitor into the dummy output (module-loopback again)
- Make ffmpeg record from the monitor of the dummy output.
You can also juste encode 2 audio streams using ffmpeg (-f alsa -i pulse twice, or -f pulse -i "your pulseaudio input") and edit it after.
I think jack would use less CPU to do the same thing (audio streams are piped and mixed directly in the right place instead of using loopbacks and dummy outputs)
SuperV1234 wrote: > Could the script be improved somehow for better quality/performance?
- Unless you really want 60 FPS output, I'd suggest reducing the FPS to 30. Keep the 60 FPS input, but output into 30 FPS. It will use half the processing power and there will be almost no noticable difference.
- If you really want 60 FPS output and know how it will be displayed, you can actually encode in interlaced video (60i), which looks like 60 FPS but weights about the same as 30 FPS.
- You can increase the quality, using something like -preset fast or even -preset medium given you have enough spare processing. Remember, encoding speed should be constant. If you record 30 FPS, you have to output 30 FPS all the time!
- Like said by skottish, try not using CFR. It will cause the encoder to have to spend more time one some frames and this extra processing might be enough to cause FPS drop.
- Tune your x264 options (-x264args). Options reference
- Try reducing the number of threads: make room for your game and give a ffmpeg as few cores as possible. using 8 cores will make it have full processing power, but there are some cases where your game will have CPU spikes and ffmpeg will wait for a single thread to finish a frame and get out of sync. They will be rescheduled to another core, but this has some overhead, and x264 encoding uses the CPU cache a lot with inline assembler code. Having as few context switch as possible for ffmpeg is preferable over having two ffmpeg threads encoding on the same CPU.
I hope this helps you a bit. Unfortunately, ffmpeg is still pretty bad at recording because of audio/video sync issues In the end, there will always be sync issues after a while, so I suggest you restart ffmpeg once in a while. I opened a bug on their tracker a while ago about similar issues. Never got any attention, no comment, not even moved from new to open. They need to fix the input buffer size in a way they always grab exactly N frames of video and audio. They seem to use some timecodes but it looks like the muxer often fails to resync them back. I'd fix it myself, but ffmpeg is way too big for me to find what I need, especially for a bug that seem to have existed forever and still not being fixed or even addressed.
Last edited by Max-P (2013-07-22 19:16:12)

Similar Messages

  • Game Center issue with Apple ID

    My son suddenly cannot log in to Game Center. When he tries it tell him: "This Apple ID has not yet been used in Game Center. Tap Continue to set up your account." He has been using his Apple ID and Game Center account since Christmas 2011. He didn't log out but one of his games asked him if he wanted to log in and he tried and this happened, almost like his log in time expired
    We tried different games, same thing happens.
    We have tried turning it off and turning it back on.
    He doesn't want to lose all of the things he has on Game Center so creating a new account isn't an option. I searched for answers and have come across several people having similiar issues since 2010 but there hasn't been a single answer from anyone.
    If anyone has any ideas or experience with this and could help I would GREATLY appreciate it,
    Thank you for you time!

    Yes. I have tried that. When I use the ID I had before, it sets it up as a new account and I don't want to lose my stats attached to my old account.
    Let's say that my old nickname was "user10" and I used the email, "[email protected]" for my apple id. I changed my apple id to "[email protected]" and it changed my game center account to "mynew" and somehow I am friends with my old acct, "user10". I tried getting a password reset for "user10" but I apparently don't know my own birthday, which is possible because I usually give a false one, but the same false one each time.

  • FK01 - Unable to upload few details through recording Issue with BINPT

    Hi Expersts,
    I am using FK01 transaction to upload Vendors. My issues is if I do the recording without checking the check box "Not a batch Input session" then its not displaying all the fields in the recording. Then I did the recording by checking the check box "Not a batch Input Session". When I use this recording in my program by passing the paramere NOBINPT = X in CTUPARAMS to the FM, I am getting an error message "No batch input data for screen SAPMF02K 0110". This screen I am getting when I do the recording without checking the check box but not by checking the checkbox.
    Can any body suggest how can I upload the vendor using FK01? with all the fields?
    Thanks in Advance.
    Regards,
    Ranganadh.

    Hi Can anybody please suggest on this?
    I need to update Vendor Email ID, street2,3, through BDC I could not found it in recording. when I check the checkbox"Not a batch input session" these fields are appearing in the recording, but I am unable to use this recording in my program, its giving me the error as I posted previously.
    I did search in the forums I found the note "653536" but I am unable to get these fields in the recording.
    Can anybocy please help me to resolve the issue?
    Thanks,
    Ranganadh.

  • Samplitude v7.0 recording issue (with spellcheck!)

    Okay, I've had a pro audio guy here who oversaw my install (he recommended the program), and he's clueless...the manufacturer (Magix) says it's a souncard issue. I specifically requested a quality soundcard with Dell knowing I would be multitracking and here's the problem:
    I record track 1 - a clicktrack at 100 BPM.
    I play the same click, same BPM against the recorded track and slowly (but surely) they fall out of synch....until after 40 sec or so it's totally out.
    This is not a latency issue, whereby the offset is uniform, but an issue where my recorded track is being changed in some way to make this application useless.
    I've tried moving the card to another PCI slot, updating drivers, etc....no change.
    Please help, as I've several hundred dollars in software in the balance....not to mention all these unrecorded gems.
    Thanks.

    jalbertson wrote:
    Oh - sorry!.......
    Soundblaster Live! 24 bit - Advanced HD Audio - 100 dB/Dolby/96 KHz/7.1
    Other:
    Windows XP (Home Edition)
    Service pack 2
    Intel Pentium 4 CPU (3 GHz)
    512 MB RAM
    running "ACPI Uniprocessor"
    Just what I was thinking while replying --> Live! 24-bit.
    This issue of yours have been reported so many times and it's Live! 24-bit issue (out of sync or something like that). I have not seen any commenting on if this issue can be rounded, but I suggest you to try recording using Asio4All drivers. The other common issue for this card is racording @ 24-bit (some sequencers/multitrackers don't give clean results (distortion added)).
    IMO, Live! 24-bit is usable just for playback and gaming, not for (multitrack) recording.
    Maybe you better buy another card. If you're serious w/ recording, try M-Audio, ESI/MAYA, etc. cards instead.
    jutapa
    Message Edited by jutapa on 04-04-200604:28 PM

  • Skype recording issue with headset

    When I record with my headset (Turtle Beach p11 earforce) The recording doesn't seem to make skype that loud and clear, when i do record, I hear skype perfectly. I record with bandicam but I recorded with something else and it did the same thing. I have tried so many times to fix this but I just cant find a way. I like to record with friends and upload the videos, but that gets in the way. So any ideas? NOTE: The headset is designed for the playstation 3 but is compatible with pc. Also I use a Windows 8.1 Acer. Hope someone can help! 

     Check this out http://talk.sonymobile.com/t5/Xperia-Z3-Z3-Dual/Z3-dual-headphones-microphone-issue-5-1-1/m-p/1026187/highlight/false#M22003

  • Recording issues with sound PLEASE HELP

    Hi I am currently trying to record a home movie from VHS to DVD.
    Playing the tape via the InterVideo MSIPVS program I have excellent video and sound. now here is where my problem lies.
    When select to record from the program it records the video perfectly but not the audio. I am just curious as to what the problem maybe. I looked in the record tab on the setup menu and it gives me the option to select the video input source but not the audio input source. I have the audio input selected in the device tab and this allows me to hear the tape that is being played on my computer.
    I have read a few of the forum posts and none really seem to cover this problem. I am just curious if there is something I may have missed or done wrong on install that may have caused this.
    Currently running  :
    AMD XP 1600
    1gig Ram
    TV@anywhere Master
    Geforce 5600XT
    onboard sound
    Win 2k Service pack 4
    DirectX 9c
    Any help would be GREATLY appreciated as I am about to throw this thing in the wood stove and light it.
    Thanks in Advance

    I have exactly the same problem!
    Record video and on playback only get picture.
    Strangley I have noticed that if I pause and dont shut MSIPVS then sound on the recorded file will play. But, if you shut down the programme you dont get sound with the picture. Also if you do this you get a file TShift in the folder where the recorded file is stored.

  • Record ALSA Internal Audio/Mix with FFMPEG?

    I'm trying to record playing a game, and I've tried using FFMPEG with this guide to record it. It works great with a low enough framerate for video, and I can record my microphone, but is there a way for me to record the sound being played to my speakers with FFMPEG? Is there a special sound device for it?

    Sounds like you need dmix. http://wiki.archlinux.org/index.php/All … nd_at_once
    I still don't understand it quite well though, but after some trial and error you should get it to work. I know I did, I just wouldn't remember what the hell I did exactly to make it work

  • How to I contact Apple about a support issue with Game Center--itself, directly. I changed my Apple ID and now I cannot access my game center account that I had previously. It created a new one for me with my new apple ID instead of keeping the old one.

    I want to submit an issue with Game Center--itself, directly. I had an account set up that I used to play online games. I changed my appleID and then I no longer could access my game center account. I, apparently, had a new game center account created for me (which is friends with my old account) and now I cannot access my original game center account.
    If I can't get access to email apple directly (which seems ridiculously difficult to do), then someone please tell me how to FIX the issue.
    Thank you

    Yes. I have tried that. When I use the ID I had before, it sets it up as a new account and I don't want to lose my stats attached to my old account.
    Let's say that my old nickname was "user10" and I used the email, "[email protected]" for my apple id. I changed my apple id to "[email protected]" and it changed my game center account to "mynew" and somehow I am friends with my old acct, "user10". I tried getting a password reset for "user10" but I apparently don't know my own birthday, which is possible because I usually give a false one, but the same false one each time.

  • Issue with Game Center Accounts

    I believe this was posted previously by richardgraham90, but i am having an issue with game center. It seems that i somehow have two active game center accounts under one apple ID. I have been using one ever since i got the itouch 4, and just a few weeks ago game center asked me to create another account? im not sure why, but now whenever i open games it asks me to log on to game center, as if my previous game center account isnt working. my old account had all of my freinds and achievements on it, and this new account has nothing. i was just wondering if it was possible to delete this "secondary" account that was somehow created on my apple id. this is a very annoying glitch and game center will not stay signed in to my previous account. if anyone has any ideas or fixes regarding this, that would be extremely helpful. thanks

    hey mate, i just updated my software, and it fixed it

  • Issue with recursive join and filter records

    I am having an issue with recursive join and filtering records for the following rules. The table, sample records, test script and rules are as below
    drop table PC_COVKEY_PD;
    create table PC_COVKEY_PD (
    PC_COVKEY varchar(50),
    COVERAGE_NUMBER varchar(3),
    SEQUENCE_ALPHA  varchar(3),
    TRANSACTION_TYPE varchar(3),
    COV_CHG_EFF_DATE date,
    TIMESTAMP_ENTERED timestamp
    delete from PC_COVKEY_PD;
    commit;
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010012','001','001','02',to_date('01/FEB/2010','DD/MON/RRRR'),to_timestamp('02/JAN/2010 01:55:59.990216 AM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0050012','005','001','02',to_date('01/FEB/2010','DD/MON/RRRR'),to_timestamp('02/JAN/2010 01:56:00.268099 AM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010032','001','003','03',to_date('14/JAN/2011','DD/MON/RRRR'),to_timestamp('14/JAN/2011 04:25:19.018217 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0010042','001','004','03',to_date('21/JAN/2011','DD/MON/RRRR'),to_timestamp('21/JAN/2011 04:00:31.719444 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    Insert into PC_COVKEY_PD values ('10020335P8017MT0050022','005','002','03',to_date('21/JAN/2011','DD/MON/RRRR'),to_timestamp('21/JAN/2011 04:02:48.953594 PM','DD/MON/RRRR HH12:MI:SS.FF6 AM'));
    commit;
    --select * from PC_COVKEY_PD order by COV_CHG_EFF_DATE,TIMESTAMP_ENTERED;
    PC_COVKEY          COVERAGE_NUMBER     SEQUENCE_ALPHA     TRANSACTION_TYPE     COV_CHG_EFF_DATE     TIMESTAMP_ENTERED
    10020335P8017MT0010012          001     001                  02                          01/FEB/2010            02/JAN/2010 01:55:59.990216 AM
    10020335P8017MT0050012          005     001                  02                      01/FEB/2010            02/JAN/2010 01:56:00.268099 AM
    10020335P8017MT0010032          001     003                  03                      14/JAN/2011            14/JAN/2011 04:25:19.018217 PM
    10020335P8017MT0010042          001     004                  03                      21/JAN/2011            21/JAN/2011 04:00:31.719444 PM
    10020335P8017MT0050022          005     002                  03                      21/JAN/2011             21/JAN/2011 04:02:48.953594 PM
    */Rule;
    Every PC_COVKEY, query should recursively join and generate set of records depending on latest SEQUENCE_ALPHA for the coverage number at that point of time. For ex,
    for 10020335P8017MT0010042 (4 row) should generate 2 records
    1. 10020335P8017MT0010042001004 (PC_COVKEY || COVERAGE_NUMBER || latest SEQUENCE_ALPHA--004 for cover 001), SEQUENCE_ALPHA 001 for cover 001 is not the latest for 10020335P8017MT0010042.
    2. 10020335P8017MT0010042005001 (coverage number 005, and latest sequence alpha-001 for cover 005).
    SEQUENCE_ALPHA 002 for cover 005 is not the latest for 10020335P8017MT0010042 as it happened later stage.
    for 10020335P8017MT0050022 (5 row) should generate 2 records as
    1. 10020335P8017MT0050022001004 (PC_COVKEY || COVERAGE_NUMBER || latest SEQUENCE_ALPHA--004 for cover 001),
    2. 10020335P8017MT0010042005002 (coverage number 005, and latest sequence alpha-002 for cover 005)
    WITH SNAPSHOT_CVR_CTP as (
    SELECT pcd1.PC_COVKEY,
           pcd1.PC_COVKEY||pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA as cov_key,
           pcd2.COVERAGE_NUMBER,
           pcd2.SEQUENCE_ALPHA,
           pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA as CVRSEQ,
           max(pcd2.COVERAGE_NUMBER||pcd2.SEQUENCE_ALPHA) over (partition by pcd1.PC_COVKEY, pcd1.COVERAGE_NUMBER
           order by pcd2.COV_CHG_EFF_DATE, pcd2.TIMESTAMP_ENTERED) as MaxSeq,
           pcd2.COV_CHG_EFF_DATE,     
           pcd2.TIMESTAMP_ENTERED
    FROM
    PC_COVKEY_PD pcd1,
    PC_COVKEY_PD pcd2
    select * from SNAPSHOT_CVR_CTP SC
    WHERE sc.PC_COVKEY = '10020335P8017MT0010042'  -- 4 row
    --AND  COVERAGE_NUMBER||SC.MAXSEQ = COVERAGE_NUMBER||SEQUENCE_ALPHA
    ORDER BY TIMESTAMP_ENTERED
    PC_COVKEY     COV_KEY     COVERAGE_NUMBER     SEQUENCE_ALPHA     CVRSEQ          MAXSEQ     COV_CHG_EFF_DATE     TIMESTAMP_ENTERED
    10020335P8017MT0010042     10020335P8017MT0010042001001     001     001     001001     001001     01/FEB/2010     02/JAN/2010 01:55:59.990216 AM
    10020335P8017MT0010042     10020335P8017MT0010042005001     005     001     005001     005001     01/FEB/2010     02/JAN/2010 01:56:00.268099 AM
    10020335P8017MT0010042     10020335P8017MT0010042001003     001     003     001003     005001     14/JAN/2011     14/JAN/2011 04:25:19.018217 PM
    10020335P8017MT0010042     10020335P8017MT0010042001004     001     004     001004     005001     21/JAN/2011     21/JAN/2011 04:00:31.719444 PM
    10020335P8017MT0010042     10020335P8017MT0010042005002     005     002     005002     005002     21/JAN/2011     21/JAN/2011 04:02:48.953594 PM
    I am trying to filter row using MAXSEQ but at the moment MAXSEQ values are not coming as expected. I expect following value for COV_KEY combination
    COV_KEY                                         MAXSEQ
    10020335P8017MT0010042001001     001004
    10020335P8017MT0010042005001     005001 -- match
    10020335P8017MT0010042001003     001004
    10020335P8017MT0010042001004     001004 -- match
    10020335P8017MT0010042005002     005001Would appreciate if anyone can get MAxSEQ as expected.

    Something like..
    with dist_cov_numbers as
      select distinct coverage_number cov_number
      from PC_COVKEY_PD
    all_data as
      select pcd.*,d.cov_number new_coverage_number,
             max(decode(coverage_number,d.cov_number,sequence_alpha))
                  over( partition by d.cov_number
                        order by COV_CHG_EFF_DATE,TIMESTAMP_ENTERED
                                  ) max_seq
      from PC_COVKEY_PD pcd,dist_cov_numbers d
    select pc_covkey,pc_covkey||new_coverage_number||max_seq new_key,
           pc_covkey||coverage_number||sequence_alpha actual_key
    from all_data
    order by COV_CHG_EFF_DATE, TIMESTAMP_ENTERED;
    PC_COVKEY                   NEW_KEY                           ACTUAL_KEY                     
    10020335P8017MT0010012      10020335P8017MT0010012001001      10020335P8017MT0010012001001     
    10020335P8017MT0010012      10020335P8017MT0010012005         10020335P8017MT0010012001001     
    10020335P8017MT0050012      10020335P8017MT0050012001001      10020335P8017MT0050012005001     
    10020335P8017MT0050012      10020335P8017MT0050012005001      10020335P8017MT0050012005001     
    10020335P8017MT0010032      10020335P8017MT0010032001003      10020335P8017MT0010032001003     
    10020335P8017MT0010032      10020335P8017MT0010032005001      10020335P8017MT0010032001003     
    10020335P8017MT0010042      10020335P8017MT0010042005001      10020335P8017MT0010042001004     
    10020335P8017MT0010042      10020335P8017MT0010042001004      10020335P8017MT0010042001004     
    10020335P8017MT0050022      10020335P8017MT0050022005002      10020335P8017MT0050022005002     
    10020335P8017MT0050022      10020335P8017MT0050022001004      10020335P8017MT0050022005002 
    10 rows selected Edited by: jeneesh on Nov 22, 2012 10:54 AM

  • Captivate 5.5 Question: We seem to be having an issue with the screen capture piece not recording "e

    Captivate 5.5 Question: We seem to be having an issue with the screen capture piece not recording "everything".
    We're running 5.5 as an administrator on Windows 7 and my co-worker is trying to capture a webinar (GoToMeeting) with Captivate and it is not recording anything in the GTM window, except the last slide. Anyone have this problem or know a fix? Not much is mentioned in the Adobe forums.

    Captivate simply doesn't 'hear' some screen events on certain applications and you just need to resort to doing manual captures at these points.
    I usually set up my manual capture button to be F2 so that I can hit it with my left hand while my right hand is on the mouse navigating through the task.

  • Issue with clearing previous record while uploading through LSMW

    Hi friends,
    I have created lsmw for hiring action using transaction PA40. i have a tab delimited flat file, when i run the lsmw script the first record is uploaded perfectly. However the upload halts for the second record, coz the previous record still remanins, is there an issue with the recording or do i need to clear anything?. How do i resolve  this one and continue uploading other records.
    Regards,
    Quavi

    Hi Friend,
    In the LSMW, Under the User menu you have Display Read Program and Display Conversion Program select this and open the respective program you feel having problem and put a break point in the Loop statement and debug. I will help you to identify the problem to resolve.
    Rgds,
    Jey

  • Issue with schema publishing after installing Universal Records Management

    Installing URM over Content Server has been by far the most random experience I've had so far with any technology... Out of 6 installation attemts of URM, only 1 has been entirely successful.... with no errors.... the rest have errors that makes it impossible to work with the product... The funny thing is that the installation is nothing more than the installation of two components via Component Manager, with a few non-important options in the middle that have always been set to the same value...
    First of all, in the installation guide of URM there are no mentions of required avaliable space in the Database Tablespace (idc_system) and in about half of our attempts (yes the other half didn't generate issues with this...) the 300Mb Tablespace filled up and caused the installation to pause until I added another datafile to that tablespace.
    Secondly, the error that is a constant present in all failed installations is this one:
    Unable to publish the schema. Unable to publish the view 'MediaTypes_View' with relationship 'ObjectTypes_MediaTypes'. Failed to append row. Mismatched number of columns in data result set [ Details ]
    An error has occurred. The stack trace below shows more information.
    !csSchemaUnableToPublish!csSchemaUnableToPublishView2,MediaTypes_View,ObjectTypes_MediaTypes!syFailedAppendRow
    intradoc.common.ServiceException: ! csSchemaUnableToPublishView2,MediaTypes_View,ObjectTypes_MediaTypes
         at intradoc.server.schema.StandardSchemaPublisher.publishViewRelationshipFragments(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisher.publishViewValues(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisher.doPublishing(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisherThread.run(Unknown Source)
    Caused by: java.lang.Error: !syFailedAppendRow
         at intradoc.data.DataResultSet.addRow(Unknown Source)
         at physicalcontentmanager.PhysicalContentManagerFilters.customizeMediaTypeSchema(PhysicalContentManagerFilters.java:688)
         at physicalcontentmanager.PhysicalContentManagerFilters.doFilter(PhysicalContentManagerFilters.java:114)
         at intradoc.shared.PluginFilters.filter(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisher.publishViewRelationshipFragment(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisher.processViewRelationshipPath(Unknown Source)
         at intradoc.server.schema.StandardSchemaPublisher.publishViewRelationshipFragmentsForView(Unknown Source)
         ... 4 more
    This error appears immediatly at the end of the server's first startup, just after all database changes are done upon installing URM. This last attempt I actually went to check the Content Server logs before I tried to login to the instance just to be sure that I wasn't responsible in any way for creating this error, and as I expected it was already there, since this relation is created by one of the Records components.... This error is a product of the URM installation itself and makes it impossible to run any Check-Ins or searches, due to the non-working relation causing Javascript errors which don't allow the forms to load values into any drop-down lists...
    We also register every "move" we make during installations, and as we reviewed what we did we feel we did exactly the same steps (it's not that hard in a one-click installation process...), why only ONE of the installations went okay we're entirely clueless about.... What we do know is that we seriously need this issue fixed, not only is it costing us a ridiculous ammount of time in "attempts" but come on.. this issue shouldn't really exist in a public release... unless we're the only ones being affected by it?
    On a side note, the URM installation was done over a "fresh" component-clean installation of Content Server, so there was nothing of our own custom components that could interact incorrectly with a component of the URM installation.
    If anyone has seen this issue before, please write something here. Thanks in advance,
    - Tiago Dias
    Message was edited by:
    user602700
    Message was edited by:
    user602700

    you should issue a support ticket yourself and get a SR number... that's probably faster than going through the sales guy.
    I'd suggest turning on the "schema" trace section, make it verbose, and restart. You may need to disable all component (including URM) before doing this.
    Something is wrong with the "MediaTypes_View" definition file, which is here somewhere:
    contentserver/data/schema/views/
    just not sure what...

  • EtreCheck results, Issues with RAM while playing game

    I have been having issues playing a computer game on my MBP and the game crashes.  Now it seems to be having an issue with saving and the error code it gives states there is not enough RAM to be able to save.  Not sure what the issue is or how to free up the RAM.  Does the RAM get dumped every time I restart my computer or does the inactive RAM keep piling up?  Anyways here is my EtreCheck, anyone see anything out of the normal or what I should do to free up this RAM while playing.  I don't understand why I am having so many issues with this, my computer is pretty good and should be able to handle anything with no problems.
    EtreCheck version: 2.1.8 (121)
    Report generated February 7, 2015 at 4:45:27 PM CST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (Retina, 15-inch, Late 2013) (Technical Specifications)
        MacBook Pro - model: MacBookPro11,3
        1 2.3 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Not upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n/ac
        Battery Health: Normal - Cycle count 113
    Video Information: ℹ️
        Intel Iris Pro
        NVIDIA GeForce GT 750M - VRAM: 2048 MB
            Color LCD spdisplays_2880x1800Retina
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 2:22:24
    Disk Information: ℹ️
        APPLE SSD SM0512F disk0 : (500.28 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 499.05 GB (376.68 GB free)
                Core Storage: disk0s2 499.42 GB Online
    USB Information: ℹ️
        Apple Internal Memory Card Reader
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Logitech USB Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ea.origin.ESHelper.plist [Click for support]
        [running]    com.fujifilm.importer.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        ElementsAutoAnalyzer    Application Hidden (/Applications/Adobe Elements 12 Organizer.app/Contents/ElementsAutoAnalyzer.app)
        PCAutoSaveMng    Application Hidden (/Applications/FUJIFILM PC AutoSave/PCAutoSaveMng.app)
    Internet Plug-ins: ℹ️
        SharePointBrowserPlugin: Version: 14.4.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        JavaAppletPlugin: Version: Java 8 Update 25 Check version
        Default Browser: Version: 600 - SDK 10.10
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Java  [Click for support]
        TeXDistPrefPane  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             4%    WindowServer
             1%    PCAutoSaveMng
             1%    fontd
             0%    AppleSpell
             0%    PCAutoSaveSv
    Top Processes by Memory: ℹ️
        206 MB    sharingd
        206 MB    Finder
        172 MB    com.apple.WebKit.WebContent
        120 MB    coreservicesd
        103 MB    Dock
    Virtual Memory Information: ℹ️
        9.22 GB    Free RAM
        2.82 GB    Active RAM
        3.86 GB    Inactive RAM
        1.27 GB    Wired RAM
        4.13 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 7, 2015, 04:19:58 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-161958_[redac ted].crash
        Feb 7, 2015, 04:19:37 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-161937_[redac ted].crash
        Feb 7, 2015, 02:54:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-145403_[redac ted].crash
        Feb 7, 2015, 02:22:52 PM    Self test - passed
        Feb 7, 2015, 11:12:02 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-111202_[redac ted].crash
        Feb 7, 2015, 03:10:22 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-031022_[redac ted].crash
        Feb 7, 2015, 02:02:24 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-07-020224_[redac ted].crash
        Feb 6, 2015, 08:19:35 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-06-201935_[redac ted].crash
        Feb 6, 2015, 06:40:38 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-06-184038_[redac ted].crash
        Feb 5, 2015, 09:23:54 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-05-212354_[redac ted].crash
        Feb 5, 2015, 04:10:39 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-05-161039_[redac ted].crash
        Feb 4, 2015, 11:40:56 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-04-234056_[redac ted].crash
        Feb 4, 2015, 11:38:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-04-233803_[redac ted].crash
        Feb 4, 2015, 09:06:28 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/cider_2015-02-04-210628_[redac ted].crash

    Maybe you meant this... not exactly sure.
    Process:               cider [342]
    Path:                  /Applications/The Sims™ 3/The Sims3.app/Contents/MacOS/cider
    Identifier:            com.transgaming.thesims3
    Version:               1.0. (1.0)
    Code Type:             X86 (Native)
    Parent Process:        ??? [1]
    Responsible:           cider [342]
    User ID:               501
    Date/Time:             2015-02-07 14:53:58.105 -0600
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        F8B4975A-0662-6499-EB87-A57A0E9D63C5
    Time Awake Since Boot: 1800 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       EXC_I386_GPFLT
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib             0x90b0d65d _vsnprintf + 60
    1   libsystem_c.dylib             0x90b0da27 vsnprintf + 92
    2   libntdll.dylib                 0x7001a867 wine_dbg_vprintf + 119
    3   libntdll.dylib                 0x7001aa1e wine_dbg_printf + 46
    4   libntdll.dylib                 0x7001aacb wine_dbg_log + 155
    5   ???                           0x7c47fb73 0 + 2085092211
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x99ed08ce kevent64 + 10
    1   libdispatch.dylib             0x97e3773f _dispatch_mgr_invoke + 245
    2   libdispatch.dylib             0x97e373a2 _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x99ec99ce mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x99ec8a70 mach_msg + 68
    2   com.apple.CoreFoundation       0x9372fb16 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x9372ef29 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x9372e6c6 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x9372e52b CFRunLoopRunInMode + 123
    6   com.apple.CFNetwork           0x93b157ff +[NSURLConnection(Loader) _resourceLoadLoop:] + 717
    7   com.apple.Foundation           0x98a72b3f -[NSThread main] + 45
    8   com.apple.Foundation           0x98a72a91 __NSThread__main__ + 1538
    9   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    10  libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    11  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x99ecf84e __select + 10
    1   com.apple.CoreFoundation       0x9377e66a __CFSocketManager + 906
    2   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    3   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    4   libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib         0x99ec99ce mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x99ec8a70 mach_msg + 68
    2   libsystem_kernel.dylib         0x99ec93e2 mach_msg_server + 415
    3   libntdll.dylib                 0x70080ad5 MachExceptionThread + 133
    4   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    5   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    6   libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib         0x99ec99ce mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x99ec8a70 mach_msg + 68
    2   com.apple.CoreFoundation       0x9372fb16 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x9372ef29 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x9372e6c6 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x9372e52b CFRunLoopRunInMode + 123
    6   com.apple.AppKit               0x9b8a2ff1 _NSEventThread + 283
    7   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    8   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    9   libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib         0x99ec99ce mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x99ec8a70 mach_msg + 68
    2   com.apple.CoreFoundation       0x9372fb16 __CFRunLoopServiceMachPort + 214
    3   com.apple.CoreFoundation       0x9372ef29 __CFRunLoopRun + 1529
    4   com.apple.CoreFoundation       0x9372e6c6 CFRunLoopRunSpecific + 390
    5   com.apple.CoreFoundation       0x9372e52b CFRunLoopRunInMode + 123
    6   com.apple.Foundation           0x98a74aaa -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 305
    7   com.apple.Foundation           0x98ac2dff -[NSRunLoop(NSRunLoop) runUntilDate:] + 105
    8   libntdll.dylib                 0x700a276f -[FSWatcherThread(Private) watcherThread:] + 303
    9   com.apple.Foundation           0x98a72b3f -[NSThread main] + 45
    10  com.apple.Foundation           0x98a72a91 __NSThread__main__ + 1538
    11  libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    12  libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    13  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 7:: CVDisplayLink
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo           0x985ef7ef CVDisplayLink::runIOThread() + 927
    4   com.apple.CoreVideo           0x985ef439 startIOThread(void*) + 159
    5   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    6   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    7   libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 8:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x97083214 JSC::BlockAllocator::blockFreeingThreadMain() + 404
    5   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    8   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    9   libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   libc++.1.dylib                 0x935e14b1 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 63
    4   com.apple.JavaScriptCore       0x970837ac JSC::GCThread::waitForNextPhase() + 172
    5   com.apple.JavaScriptCore       0x970835f8 JSC::GCThread::gcThreadMain() + 88
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 15:: WebCore: LocalStorage
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore       0x97083395 ***::ThreadCondition::timedWait(***::Mutex&, double) + 69
    4   com.apple.WebCore             0x918a4011 std::__1::unique_ptr<***::Function<void ()>, std::__1::default_delete<***::Function<void ()> > > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<***::MessageQueue<***::Function<void ()> >::waitForMessage()::'lambda'(***::Function<void ()> const&)>(***::MessageQueueWaitResult&, ***::MessageQueue<***::Function<void ()> >::waitForMessage()::'lambda'(***::Function<void ()> const&)&&, double) + 81
    5   com.apple.WebCore             0x918a376f WebCore::StorageThread::threadEntryPoint() + 207
    6   com.apple.JavaScriptCore       0x9707914c ***::threadEntryPoint(void*) + 76
    7   com.apple.JavaScriptCore       0x970790e0 ***::wtfThreadEntryPoint(void*) + 16
    8   libsystem_pthread.dylib       0x92a36e13 _pthread_body + 138
    9   libsystem_pthread.dylib       0x92a36d89 _pthread_start + 162
    10  libsystem_pthread.dylib       0x92a34e52 thread_start + 34
    Thread 16:: Dispatch queue: NSWindowGraphicsContextFinalizerQueue :: NSOperation 0x836375c0 (QOS: LEGACY)
    0   libsystem_kernel.dylib         0x99ecf512 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x92a37a4a _pthread_cond_wait + 726
    2   libsystem_pthread.dylib       0x92a3b1c0 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation           0x98a701ba -[NSCondition wait] + 274
    4   com.apple.Foundation           0x98a382a0 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 750
    5   com.apple.Foundation           0x98a37e40 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 160
    6   com.apple.AppKit               0x9baa764b ____NSAppKitFinalizeThreadData_block_invoke_2 + 109
    7   com.apple.Foundation           0x98b5e25d __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 12
    8   com.apple.Foundation           0x98a2ebc9 -[NSBlockOperation main] + 277
    9   com.apple.Foundation           0x98a0bc51 -[__NSOperationInternal _start:] + 821
    10  com.apple.Foundation           0x98a0b911 -[NSOperation start] + 71
    11  com.apple.Foundation           0x98a0b75b __NSOQSchedule_f + 213
    12  libdispatch.dylib             0x97e34130 _dispatch_client_callout + 50
    13  libdispatch.dylib             0x97e37d05 _dispatch_queue_drain + 1017
    14  libdispatch.dylib             0x97e3999d _dispatch_queue_invoke + 186
    15  libdispatch.dylib             0x97e36f89 _dispatch_root_queue_drain + 395
    16  libdispatch.dylib             0x97e4663d _dispatch_worker_thread3 + 97
    17  libsystem_pthread.dylib       0x92a371da _pthread_wqthread + 724
    18  libsystem_pthread.dylib       0x92a34e2e start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib         0x99ecfe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x92a372b1 _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x92a34e2e start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib         0x99ecfe6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x92a372b1 _pthread_wqthread + 939
    2   libsystem_pthread.dylib       0x92a34e2e start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x700d70e8  ebx: 0xbfffde50  ecx: 0xbfffdcbc  edx: 0x700d70e8
      edi: 0x00000400  esi: 0xa0408038  ebp: 0xbfffdd84  esp: 0xbfffdc0c
       ss: 0x00000023  efl: 0x00010296  eip: 0x90b0d65d   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00002007   gs: 0x0000000f
      cr2: 0x7c4c0ec0
    Logical CPU:     4
    Error Code:      0x00000000
    Trap Number:     13
    Binary Images:
    0x70000000 - 0x700c921f +libntdll.dylib (0) <64806244-962A-29B9-7BF7-874B00273A92> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libntdll.dylib
    0x70156000 - 0x70158fff +libwine.dylib (0) <E4F2E312-97D2-39F3-2960-DAB5DB879423> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwine.dylib
    0x7016e000 - 0x70265ffd +libwine_unicode.dylib (0) <C70D3F06-80C1-5C35-C0D4-0BD84382AFB2> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwine_unicode.dylib
    0x7026c000 - 0x7026cffe +libwine_port.dylib (0) <50248B97-55B7-3145-527C-3188EE89BA43> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwine_port.dylib
    0x70271000 - 0x702d8f45 +SDL (1.2.9 - 1.2.10) <0DF0177A-595B-BB03-8CFC-8FCEBE0F875F> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/SDL.framework/Versions/A/SDL
    0x7030d000 - 0x7031bffb +tgUpdate (1) <4AE4D520-6765-1CE0-E359-0301BC138480> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/tgUpdate.framework/Versions/A/tgUpdate
    0x76791000 - 0x767d3ffb  com.apple.CloudDocs (1.0 - 280.6) <5C3C95B5-C470-3C3C-969D-008A045F5284> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
    0x76ff6000 - 0x76ffa74e +libpsapi.dylib (0) <E794FD9E-1C7B-2F10-EACD-71AFC99ED630> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libpsapi.dylib
    0x77000000 - 0x77064527 +libkernel32.dylib (0) <D0FCF546-C31F-DEE8-4609-0AD06929CABB> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libkernel32.dylib
    0x77da5000 - 0x77dc0def +libshlwapi.dylib (0) <06615D3B-671D-336E-01F7-DFDCBEF0D770> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libshlwapi.dylib
    0x77dde000 - 0x77de2fff +libwine_uuid.dylib (0) <FC4B1BB2-8EAD-DEB8-73B1-BA62811E0A67> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwine_uuid.dylib
    0x78800000 - 0x78d22ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.2.46 - 10.0.2) <4CA4C4DE-980B-3641-BCFE-9B4455035478> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD5000GraphicsGLDriver
    0x78ed7000 - 0x797a2ff7  com.apple.GeForceGLDriver (10.2.1 - 10.0.2) <B12E03A0-DB0C-32C2-9AAB-ACDFF9CCB191> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x7a462000 - 0x7a479edf +libadvapi32.dylib (0) <A6A434FE-55D6-0657-2947-4E360790D10D> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libadvapi32.dylib
    0x7a493000 - 0x7a53fec7 +libuser32.dylib (0) <F0A4D51E-C73A-217B-3F7E-C237AA49D1BC> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libuser32.dylib
    0x7a5da000 - 0x7a61ed17 +libgdi32.dylib (0) <A6090F85-B2CE-47AD-7F3A-2F36828E7999> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libgdi32.dylib
    0x7a65b000 - 0x7a695fb9 +libshell32.dylib (0) <1D767E68-7101-2A36-843E-D626DCA42BAB> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libshell32.dylib
    0x7a6c5000 - 0x7a6e1ff7 +com.transgaming.libpng (1.2.13 - 1.2.13) /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libpng.framework/Versions/Current/libpng
    0x7a6e9000 - 0x7a726c6b +libole32.dylib (0) <AC94C6FF-AD19-65F8-3EE2-FAD34807B81B> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libole32.dylib
    0x7a754000 - 0x7a7724ed +librpcrt4.dylib (0) <690065DE-B043-B944-4E30-FAEDA558C572> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/librpcrt4.dylib
    0x7a794000 - 0x7a7feef3 +libcomctl32.dylib (0) <443FC25D-6D55-5054-91EC-8FA391635268> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libcomctl32.dylib
    0x7a81d000 - 0x7a85aff7 +libwineserver.dylib (0) <9139E683-A54B-A869-5C76-CB46ED88C84C> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwineserver.dylib
    0x7a871000 - 0x7a8ccffb +com.transgaming.freetype (2.3.4 - FreeType 2.3.4-1) /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/FreeType.framework/FreeType
    0x7a8df000 - 0x7a91ae37 +libmacdrv.dylib (0) <E42E45E4-FDAF-43BF-1FAD-5FD7CBA596D3> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libmacdrv.dylib
    0x7af00000 - 0x7af37f8f +libs3launcherui.dylib (0) <4EFDD306-C30E-12B3-CB66-81C71E92CF08> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libs3launcherui.dylib
    0x7af53000 - 0x7af8cfbf +liboleaut32.dylib (0) <8DA2A93C-115B-C3DF-B590-D0F8F89D19DE> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/liboleaut32.dylib
    0x7afb7000 - 0x7afd0fd7 +com.transgaming.libjpeg (1.0 - 1.0) /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libjpeg.framework/Versions/Current/libjpeg
    0x7afd6000 - 0x7afda324 +libwsock32.dylib (0) <CCEE0EF6-2970-DF16-F649-5F10455925F1> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwsock32.dylib
    0x7afe4000 - 0x7afee128 +libiphlpapi.dylib (0) <2B975438-C1C3-5679-7C60-63B65876C581> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libiphlpapi.dylib
    0x7aff8000 - 0x7affbf88 +libicmp.dylib (0) <8F7EC53C-2039-0CA3-B42A-4468B22FBCC9> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libicmp.dylib
    0x7c000000 - 0x7c010a27 +libws2_32.dylib (0) <86DD4A52-5CFF-FCC7-DA23-8EFB0693FF38> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libws2_32.dylib
    0x7c021000 - 0x7c04f0d1 +libwininet.dylib (0) <42CC4595-1FE6-4937-F099-94F11EF59879> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwininet.dylib
    0x7c068000 - 0x7c06d537 +libmpr.dylib (0) <B5D018CC-181F-55A8-8038-3FD9A1F96B0C> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libmpr.dylib
    0x7c076000 - 0x7c07be87 +libusp10.dylib (0) <ADA53C93-ED6B-CF3D-CC2F-385A61166810> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libusp10.dylib
    0x7c081000 - 0x7c08828c +libd3dx9_31.dylib (0) <0169C880-07EC-7B7F-B414-02882BABF9B9> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libd3dx9_31.dylib
    0x7c099000 - 0x7c12e817 +libd3dx9.dylib (0) <51056392-817B-353B-CC5F-7AC4E572197B> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libd3dx9.dylib
    0x7c161000 - 0x7c16d759 +libtggraphics.dylib (0) <5F0CFD1B-883E-3AD1-2083-D4EB8E6E69D6> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libtggraphics.dylib
    0x7c1b5000 - 0x7c1b89d9 +libnetapi32.dylib (0) <77D4BE8E-98DA-B101-FC7B-A45CF0D96F18> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libnetapi32.dylib
    0x7c1bc000 - 0x7c1cda4f +libdsound.dylib (0) <91DBA82A-8A24-0B4C-3AF2-D2C0CDA8F818> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libdsound.dylib
    0x7c1d6000 - 0x7c2166f7 +libwinmm.dylib (0) <6164C730-809F-73DA-416A-471099397EB0> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwinmm.dylib
    0x7c23b000 - 0x7c243053 +libwinemacca.drv.dylib (0) <22C6B388-B836-9AA8-5D7F-E7AF361F4C71> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libwinemacca.drv.dylib
    0x7c248000 - 0x7c24cfff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) <1C1933F4-E56F-36BD-AC8A-209C6543178C> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x7c251000 - 0x7c2567a9 +libmsacm.drv.dylib (0) <2808616C-917B-323D-AA25-CB9D358F53BF> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libmsacm.drv.dylib
    0x7c25b000 - 0x7c2677d7 +libmsacm32.dylib (0) <92090190-D5DB-65D4-9B89-6CA049A3D8A0> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libmsacm32.dylib
    0x7c271000 - 0x7c275582 +libmidimap.drv.dylib (0) <5518CBF7-EA47-A0CD-0595-BFFA1748280D> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libmidimap.drv.dylib
    0x7c279000 - 0x7c27d6b9 +libglu32.dylib (0) <8D01D770-E819-290F-376C-100390BF6AF4> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libglu32.dylib
    0x7c284000 - 0x7c28713a +libxinput1_3.dylib (0) <9ACBDCB2-FB31-A8AE-E458-C314CACF7BC8> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libxinput1_3.dylib
    0x7c28b000 - 0x7c28e319 +libxinput.dylib (0) <5D0DEDBB-7BC2-57D2-0A65-40E5A194A28A> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libxinput.dylib
    0x7c292000 - 0x7c2b94ff +librsaenh.dylib (0) <399645D8-0CA3-FFCF-0482-A9921F5E7CA1> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/librsaenh.dylib
    0x7c2c0000 - 0x7c316e43 +libcrypt32.dylib (0) <F8689C1F-24C0-12E4-8607-1F7264DA5480> /Applications/The Sims™ 3/The Sims3.app/Contents/Frameworks/libcrypt32.dylib
    0x80000000 - 0x80013190 +com.transgaming.thesims3 (1.0. - 1.0) <6D8C36FC-A964-C7D0-463A-6CB83F231DA8> /Applications/The Sims™ 3/The Sims3.app/Contents/MacOS/cider
    0x8254b000 - 0x8254bff7  libodfde.dylib (22) <A0BC85E8-EA17-32ED-AA45-8E7F0ABA2943> /usr/lib/libodfde.dylib
    0x8261f000 - 0x82623fff  com.apple.LoginUICore (3.0 - 3.0) <919867AC-1E71-3702-A0A9-79DB28E26E6B> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
    0x851f2000 - 0x85205ffb  com.apple.webcontentfilter.framework (5.1 - 5.1) <562041C5-8808-3FA8-AF13-A202905EA8A6> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
    0x85215000 - 0x85239ff7  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <D3EE2964-C4D2-3E97-BC6F-DE11A8FC75C4> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x8524c000 - 0x8527cff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <00146784-3C0A-379F-AC70-D9285073D45C> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x8529c000 - 0x852a6fff  com.apple.DirectoryService.Framework (10.10 - 187) <49B89287-2162-3B96-A7FC-987AB78DD611> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x8fe9d000 - 0x8fed0e03  dyld (353.2.1) <06B1254D-9BB9-327C-BA15-8F18FFF97586> /usr/lib/dyld
    0x90008000 - 0x90014ff7  libcsfde.dylib (471.10.6) <C14E5F82-9F30-3934-8E71-B2AA5A2AA353> /usr/lib/libcsfde.dylib
    0x90015000 - 0x902b2ff3  com.apple.RawCamera.bundle (6.02 - 769) <BD4A4E63-FFC1-3E55-AE48-CE8A95CB6379> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x902b3000 - 0x902bbff7  com.apple.icloud.FindMyDevice (1.0 - 1) <A0C38380-8B46-39CF-A0A1-27ABDAD1D574> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x902bc000 - 0x902e6fff  libxslt.1.dylib (13) <0F55B64A-6C55-304E-ACE0-B531027AA066> /usr/lib/libxslt.1.dylib
    0x902eb000 - 0x902edffb  libRadiance.dylib (1232) <F16794FD-4326-32CD-A578-3B2ADB27587D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x902ee000 - 0x9056aff7  com.apple.security (7.0 - 57031.10.10) <3EF32688-A176-33DD-BA59-25F37D6C08DA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90625000 - 0x90626fff  liblangid.dylib (117) <34A0F807-755F-300B-B01F-AABAE3838451> /usr/lib/liblangid.dylib
    0x90627000 - 0x90628fff  libremovefile.dylib (35) <49DCAF7B-4466-3775-9E58-EA5D7CBA8AE0> /usr/lib/system/libremovefile.dylib
    0x90683000 - 0x9068cff7  libsystem_notify.dylib (133.1.1) <B8503E99-214B-3AC3-A7CA-CC837ABD7B25> /usr/lib/system/libsystem_notify.dylib
    0x9068d000 - 0x90693ff7  libsystem_trace.dylib (72.1.3) <E1985F9C-78FC-3098-8683-81F0DCEE54BB> /usr/lib/system/libsystem_trace.dylib
    0x90694000 - 0x90694fff  libunc.dylib (29) <CE960997-9D4A-3848-BAC7-B2255E6765FD> /usr/lib/system/libunc.dylib
    0x90695000 - 0x906befff  libRIP.A.dylib (775.16) <5587B04F-D31C-3F70-961F-0F6282E8FB29> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
    0x90729000 - 0x9072cfff  com.apple.xpc.ServiceManagement (1.0 - 1) <D0A00D0C-D37D-3CF1-9EE0-41A88BC112BB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x9072d000 - 0x90782ff7  com.apple.htmlrendering (77 - 1.1.4) <B85A63B9-C9DD-3ECC-B5DC-E12533C7FDF9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90783000 - 0x907a7ffb  com.apple.framework.Apple80211 (10.1 - 1010.64) <377A2686-2C1F-3257-8420-37DB5C8F33AD> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x907a8000 - 0x907b9fff  libbsm.0.dylib (34) <C9F0C608-2794-3F6B-8078-583FC0046039> /usr/lib/libbsm.0.dylib
    0x907ba000 - 0x90ab8ff7  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <D3DD9764-A787-3B6B-9DAD-55CEED944DCF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ab9000 - 0x90b4efff  libsystem_c.dylib (1044.10.1) <584F66B1-ABBA-354C-8118-1DA5386A065E> /usr/lib/system/libsystem_c.dylib
    0x90b5b000 - 0x90b5dfff  com.apple.loginsupport (1.0 - 1) <8B651D8C-53D0-314D-BDD6-74147C4B2E73> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x90b5f000 - 0x90b73fff  com.apple.ImageCapture (9.0 - 9.0) <4B84B5D5-A5F3-3B35-93CE-568A73486B92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90b74000 - 0x90b93ffb  libresolv.9.dylib (57) <C2C3810A-A45E-3375-B41D-6E1BECE1BA3C> /usr/lib/libresolv.9.dylib
    0x90b94000 - 0x90b96ff3  com.apple.EFILogin (2.0 - 2) <CA5B7995-F183-31F3-B918-27965B2BDE8F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x90b9f000 - 0x91b4ffff  com.apple.WebCore (10600 - 10600.3.15) <FF6008C2-ADF4-35F1-A227-0F6DA88B9597> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91b50000 - 0x91b50fff  com.apple.CoreServices (62 - 62) <FF296ED2-0F90-3055-BBE4-7BF9E42322EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91b51000 - 0x91b59ffb  com.apple.NetFS (6.0 - 4.0) <141BFE7E-634E-32A0-8EC9-0A1A4DFEA7D9> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91b5a000 - 0x91b80ff7  com.apple.IconServices (47.1 - 47.1) <9C537499-B375-3F84-BF4A-EEF757FC26A9> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x91b81000 - 0x91b8afff  com.apple.DiskArbitration (2.6 - 2.6) <D906604A-1D8C-31BF-8F22-EA219FFC858F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91b8b000 - 0x91b8bfff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <F968D12F-F59D-3148-951D-76735C3C1B57> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c1b000 - 0x91c1bfff  libkeymgr.dylib (28) <06DDCEF8-EB84-3F68-9E19-FD1A12B764FD> /usr/lib/system/libkeymgr.dylib
    0x91c1c000 - 0x91eaffff  com.apple.CoreData (111 - 526.1) <74375077-8AE6-3D1B-B6A4-CF3B0724EB60> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91eb0000 - 0x91f60ff3  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <FC787129-45BB-3B94-ACAD-A0CECEB77AEC> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x91f61000 - 0x91f71ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <DBECFAD5-DB53-390C-AE92-09549733C861> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91f72000 - 0x92069ff7  libFontParser.dylib (134.1) <AF60B79A-410B-389E-9B24-09B5BC61E19F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9206a000 - 0x9209dfe3  libsystem_m.dylib (3086.1) <951F633F-57B7-398B-912F-F6ED4DB1C597> /usr/lib/system/libsystem_m.dylib
    0x9209e000 - 0x921a2ff7  libJP2.dylib (1232) <CD0012B6-D649-327B-B7FA-E52B0FC0067C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x921a3000 - 0x921aafff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <5D268178-3812-3777-92A6-D7D3395405B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x921ab000 - 0x921adffb  libCGXType.A.dylib (775.16) <B3ED365B-0CE2-3847-A503-A35892E7790A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x921ae000 - 0x921fffff  com.apple.opencl (2.4.2 - 2.4.2) <327699CD-6BF9-3B63-999E-A5A56014E540> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92200000 - 0x92202ffb  libsystem_secinit.dylib (18) <3CBA3BD3-8BA2-358D-BD1A-A1C3DF5D84E6> /usr/lib/system/libsystem_secinit.dylib
    0x92203000 - 0x92231ff7  libarchive.2.dylib (30) <8758D35F-ADF8-30F6-8EB2-9B852876EAC8> /usr/lib/libarchive.2.dylib
    0x92232000 - 0x92235ffb  libutil.dylib (38) <B5A16C6B-A79E-3504-BDA6-64A063F6612D> /usr/lib/libutil.dylib
    0x92236000 - 0x9225cffb  libPng.dylib (1232) <576BCAB6-DBE2-36DB-A390-E945FC844118> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9225d000 - 0x922a6ffb  libFontRegistry.dylib (134) <023BB8A2-8BBA-30DC-B0C2-A5F0AE3667D8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x922b5000 - 0x922c2fff  com.apple.OpenDirectory (10.10 - 187) <14AA5E0C-238A-32C4-BAF3-81893750B5A9> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x922c3000 - 0x922c6fff  libpam.2.dylib (20) <E2F34522-448A-3392-BC1D-6625BEB612B9> /usr/lib/libpam.2.dylib
    0x922c7000 - 0x92361fff  com.apple.ColorSync (4.9.0 - 4.9.0) <091CDCEC-1B25-3FE7-94C2-8AEFA6564E95> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92362000 - 0x9236eff7  libkxld.dylib (2782.10.72) <FF699F52-D950-3DAD-A37B-834EBF0D0FFD> /usr/lib/system/libkxld.dylib
    0x9236f000 - 0x92386ff3  libLinearAlgebra.dylib (1128) <B20FAAAA-1C76-3B20-B100-5FC90F7FE023> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
    0x92387000 - 0x924b5fff  com.apple.coreui (2.1 - 305.6.1) <6535A234-0DFF-3467-837B-118E2C9D2875> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x924b6000 - 0x924b8fff  com.apple.securityhi (9.0 - 55006) <5AF7E054-F6A1-38B4-B403-BAF8BE4DBA35> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x924b9000 - 0x9267dff3  com.apple.QuartzCore (1.10 - 361.15) <4DD4BF91-26D4-3325-BB42-9642318307FA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9267e000 - 0x92698ff7  liblzma.5.dylib (7) <D0BC984D-5B33-328C-8F1E-7E9C41813433> /usr/lib/liblzma.5.dylib
    0x92a1d000 - 0x92a25ff7  libCGCMS.A.dylib (775.16) <8464ED9C-1365-3E92-BCD4-FEAD13EA9836> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x92a26000 - 0x92a33ff7  libbz2.1.0.dylib (36) <6BC7B049-8F03-3217-9840-B1804CCBF742> /usr/lib/libbz2.1.0.dylib
    0x92a34000 - 0x92a3cfff  libsystem_pthread.dylib (105.10.1) <4A229519-29A1-3ABF-8CEF-43BCE4ACDA06> /usr/lib/system/libsystem_pthread.dylib
    0x92a3d000 - 0x92a41fff  com.apple.IOAccelerator (156.6 - 156.6) <F7417420-3B66-3E5E-B819-9CADC69BFF59> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
    0x92a42000 - 0x92ab8ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <B6F346D2-BF88-3925-B962-E59267FA2268> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92ab9000 - 0x92ad6ffb  com.apple.Ubiquity (1.3 - 313) <9ED23769-0725-3D4B-B7F4-AF08020D73C3> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x92b79000 - 0x92f51ff7  com.apple.HIToolbox (2.1.1 - 757.3) <642A3B29-036D-3A87-AC81-935843AB6A32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92f52000 - 0x92f6bfff  com.apple.Kerberos (3.0 - 1) <92735F11-CF1C-3FA6-8682-9A30AC9E2651> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92f82000 - 0x92fc5fff  libGLU.dylib (11.1.1) <2DC476EE-5C4F-3353-A916-39F2FDB5D6B1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fc6000 - 0x92fc7fff  com.apple.TrustEvaluationAgent (2.0 - 25) <28BBD931-EF7C-3753-B50E-6568F4075086> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92fc8000 - 0x92ff9fff  libtidy.A.dylib (15.15) <D893B41F-FBE9-3EDE-8DC6-2B80A4E0804B> /usr/lib/libtidy.A.dylib
    0x92ffa000 - 0x92ffcfff  libquarantine.dylib (76) <9ADD861F-A66E-3AD1-A77E-C622E91BD203> /usr/lib/system/libquarantine.dylib
    0x932b6000 - 0x93464ffb  GLEngine (11.1.1) <3F96C2B6-72EF-30DB-BE7C-50411D9B360F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
    0x93465000 - 0x934a5fff  com.apple.Symbolication (1.4 - 56045) <BE1C4846-DA11-365D-9B46-3FF130401839> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x934a6000 - 0x934a9ff7  com.apple.help (1.3.3 - 46) <FDF183E4-3B95-3CBD-A390-2536C8E7E258> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x934aa000 - 0x93596fe7  libvMisc.dylib (516) <8575A3B5-F6FB-35BF-9E50-E81BD0813100> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93597000 - 0x93598fff  libDiagnosticMessagesClient.dylib (100) <3EE83437-AA9C-356B-810B-589346B73797> /usr/lib/libDiagnosticMessagesClient.dylib
    0x93599000 - 0x935a6ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <EB79D0BE-75B8-3570-9D91-AE07E42611BD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x935a7000 - 0x935a7fff  libOpenScriptingUtil.dylib (162) <9872C464-DF90-37C2-9871-8A3F53C615EC> /usr/lib/libOpenScriptingUtil.dylib
    0x935a8000 - 0x935acffb  libcache.dylib (69) <55501A00-AF64-3554-8F46-8D5AFEDEC332> /usr/lib/system/libcache.dylib
    0x935da000 - 0x93630fff  libc++.1.dylib (120) <D8DE4962-66CD-3491-904E-9291EEE5E570> /usr/lib/libc++.1.dylib
    0x93631000 - 0x936abfff  com.apple.ApplicationServices.ATS (360 - 375) <4052B5D1-5F16-315A-A03B-14F0A112FC18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x936ac000 - 0x936b7ff7  com.apple.NetAuth (5.0 - 5.0) <D6C31218-47E4-3553-9208-D1091A81044E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x936b8000 - 0x93a6aff7  com.apple.CoreFoundation (6.9 - 1152) <93C32AF9-FD62-3DBD-85F7-35727E6CAA55> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93a6b000 - 0x93c6fff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <2BDDB692-8973-3B53-A53C-71D42BDBABBF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93c70000 - 0x93de1ffb  libBLAS.dylib (1128) <ACEF468C-5DB1-38F3-BCB2-6F3D7F2B2040> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93de2000 - 0x93eeffe3  libvDSP.dylib (516) <53F7A960-01E1-3B79-A7FD-67BD19471420> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93ef0000 - 0x93f02fff  com.apple.Sharing (328.3.2 - 328.3.2) <4F0D4D68-B6A6-3E66-8A89-CDD9AFEA82EA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x93f03000 - 0x93fa0fff  com.apple.ink.framework (10.9 - 213) <F47949BC-ABEE-329B-B568-71C6FEF761F6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93fa1000 - 0x93ff2fff  libcups.2.dylib (408) <08C5D411-533C-345A-B820-092C96215F2E> /usr/lib/libcups.2.dylib
    0x93ff3000 - 0x94069fff  com.apple.securityfoundation (6.0 - 55126) <E7CBF2F4-2A0E-3C82-BE84-E09D21772AFB> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x940db000 - 0x940e1ff3  libsystem_platform.dylib (63) <509993B7-3F26-3360-B899-0BBB15152516> /usr/lib/system/libsystem_platform.dylib
    0x940e2000 - 0x941acff7  com.apple.backup.framework (1.6.2 - 1.6.2) <AE8234C3-6BB3-317B-A4E7-EF3478445DFF> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x941c5000 - 0x941cefff  libcopyfile.dylib (118.1.2) <FAF3268F-C580-33D3-A5B4-74B8A8713216> /usr/lib/system/libcopyfile.dylib
    0x941cf000 - 0x9423bff3  com.apple.datadetectorscore (6.0 - 396.1.1) <93F59488-6CA9-3C90-8E96-B0DE5942252F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9423c000 - 0x9423ffff  libdyld.dylib (353.2.1) <3E28E996-50B8-388B-8885-7299FBC978B1> /usr/lib/system/libdyld.dylib
    0x94240000 - 0x94280fff  libauto.dylib (186) <1609D0F9-6E3A-3C67-87EF-BB0BD93EDAC9> /usr/lib/libauto.dylib
    0x94281000 - 0x942a7ff3  libc++abi.dylib (125) <E9AF8CA1-D54D-37E3-8363-A3E8C0840F71> /usr/lib/libc++abi.dylib
    0x942a8000 - 0x942fbfff  libstdc++.6.dylib (104.1) <D0EB2C99-5939-3ABA-9C18-D9AD75CE23A1> /usr/lib/libstdc++.6.dylib
    0x942fc000 - 0x9439cfff  com.apple.QD (301 - 301) <4DFE3689-59DE-3FBC-806B-6A4056573E52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9439d000 - 0x9448dff3  com.apple.DiskImagesFramework (10.10.1 - 396) <976D6EB2-1729-33FF-BEAC-83EE6653CF74> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9448e000 - 0x94515fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <C53DBDE3-F9E0-3B90-963E-0FAEEF3DA225> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94516000 - 0x94523ff7  com.apple.ProtocolBuffer (1 - 225.1) <E5744DE6-B3FC-3289-9E71-98E88DECE545> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x94ed3000 - 0x94edbfff  libsystem_dnssd.dylib (561.1.1) <45CDAF46-03DE-33DB-A627-14F245993EF2> /usr/lib/system/libsystem_dnssd.dylib
    0x94edc000 - 0x94eedff3  libsystem_coretls.dylib (35.1.2) <139ECDA3-8A63-3D18-96FC-6A10242B8F6B> /usr/lib/system/libsystem_coretls.dylib
    0x94eee000 - 0x94ef0fff  libsystem_coreservices.dylib (9) <20E66A47-8D67-344A-A393-73926F0E5FB2> /usr/lib/system/libsystem_coreservices.dylib
    0x94ef1000 - 0x94ef1fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C2367B5B-AE20-3084-A864-104743BE478E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x94ef2000 - 0x94f9ffff  libcrypto.0.9.7.dylib (106) <19669D99-DC79-3715-BC3A-850016DDDD7F> /usr/lib/libcrypto.0.9.7.dylib
    0x94ff3000 - 0x95006fff  com.apple.ProtectedCloudStorage (1.0 - 1) <0A330FB7-44EE-359F-BAB7-48351AACD305> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x95007000 - 0x9511dff7  com.apple.CoreText (352.0 - 454.3) <6448E389-AB2E-34EF-AE07-FE364ECC98E5> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x9511e000 - 0x95120ff7  libsystem_sandbox.dylib (358.1.1) <6031346B-57B0-36FB-911B-D355E1F98A9A> /usr/lib/system/libsystem_sandbox.dylib
    0x95128000 - 0x95480ff7  libmecabra.dylib (666.2) <DB0D4D7E-AA7B-3D2D-8936-07F03038F4DF> /usr/lib/libmecabra.dylib
    0x95481000 - 0x954ecff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <632A811D-4706-3ED7-85E3-DD2CDB47CF8F> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x954ed000 - 0x9557ffff  com.apple.CoreSymbolication (3.1 - 57020) <EAC6745A-AB1D-38CC-A12C-99ECD8F071ED> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95629000 - 0x95656ff7  GLRendererFloat (11.1.1) <C8DA6CFC-9574-31A2-B012-5394A007268F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x95657000 - 0x95a4dff3  com.apple.CoreGraphics (1.600.0 - 775.16) <5F7BDB0B-5324-3B7A-BC6B-E7A01A880D94> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x95a4e000 - 0x95a88fff  com.apple.MediaKit (16 - 757) <430EC569-B083-3608-B91F-3EC6B6065519> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x95a89000 - 0x95a97ff7  libz.1.dylib (55) <DF3B8F77-8931-3A6B-8BDF-DB67315050E6> /usr/lib/libz.1.dylib
    0x95a98000 - 0x95b15ff3  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <60574F96-1CD6-34B8-A862-EA977FD058BF> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95b16000 - 0x95b35ff7  com.apple.GenerationalStorage (2.0 - 209.11) <34CF76B2-8052-359D-816D-092608FB6919> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x95b36000 - 0x95b70fff  com.apple.LDAPFramework (2.4.28 - 194.5) <C3BD6DBA-5EE4-3992-A013-CF5333AAB648> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95b71000 - 0x95b78ff3  libunwind.dylib (35.3) <29D9343F-9A0A-3535-B0AE-E7CC761D95EE> /usr/lib/system/libunwind.dylib
    0x95b79000 - 0x95b7dfff  com.apple.CommonPanels (1.2.6 - 96) <955375E6-2416-38E1-AFC6-477827119329> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x95b7e000 - 0x95b93ffb  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <E8AF5A36-89A1-38CC-9905-D74A692D0898> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95d57000 - 0x95d6efff  libsystem_asl.dylib (267) <85BD88AD-618E-3325-AC31-10DBAB8E9AF3> /usr/lib/system/libsystem_asl.dylib
    0x95d6f000 - 0x95d78fff  libGFXShared.dylib (11.1.1) <9A7C1796-07E7-3856-8703-75559016EF98> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95d79000 - 0x95dd6ff3  com.apple.print.framework.PrintCore (10.0 - 451) <2563665B-7B7F-3B8A-83B1-E5AC8D389909> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95dd7000 - 0x960c9ffb  com.apple.CoreImage (10.0.33) <75B23F45-8D99-3521-89AE-AF2AF4487096> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x960d2000 - 0x960d2fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <64ED443E-25D5-3A2C-A028-0D0C7FAF57C6> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x960d3000 - 0x960deff7  com.apple.CrashReporterSupport (10.10 - 629) <BA5611B6-EF99-3A44-90DD-3305FDA4975E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x960df000 - 0x9611efff  com.apple.NavigationServices (3.8 - 215.1) <46D8B66D-CB59-36F5-BD26-FD8309337BB3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9611f000 - 0x9612eff3  com.apple.opengl (11.1.1 - 11.1.1) <212B409C-AF1E-3C69-B4AA-57A39C35BB62> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9612f000 - 0x9613ffff  libGL.dylib (11.1.1) <244536CD-5B87-3A3E-AD68-03BF04BD2D33> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96140000 - 0x961bffff  com.apple.SystemConfiguration (1.14 - 1.14) <21296E7B-11A3-35C0-BDC7-838392DE8298> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x961c0000 - 0x961c5fff  com.apple.print.framework.Print (10.0 - 265) <7C3984BB-8337-3B90-A414-17C181A45744> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x961c6000 - 0x962b7ffb  libiconv.2.dylib (42) <4AF77F10-0BEC-3BE0-99DF-C5170EDB316B> /usr/lib/libiconv.2.dylib
    0x962b8000 - 0x962b9fff  libSystem.B.dylib (1213) <BFFB2AB8-29F6-3779-B358-EE1F46520FC8> /usr/lib/libSystem.B.dylib
    0x963ce000 - 0x963d6feb  libcldcpuengine.dylib (2.4.5) <3E336292-C1DC-3B11-BDA5-BB495FC47F5B> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x963d7000 - 0x96509ffb  com.apple.UIFoundation (1.0 - 1) <00A59CFF-A217-3998-B22E-6E452278A302> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x9650a000 - 0x96539ff7  com.apple.DictionaryServices (1.2 - 229) <1F5C35C7-67AA-30A0-A366-EB4B361152A3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9653a000 - 0x96555ff3  com.apple.openscripting (1.4 - 162) <EB1D1BA6-C0B0-3D3B-AE54-676324FFF3E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96556000 - 0x96569fff  com.apple.CoreBluetooth (1.0 - 1) <DF406F6F-C173-3598-8785-8A2014F770EF> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x9656a000 - 0x965b1ff3  com.apple.AppleJPEG (1.0 - 1) <C14A2B49-A664-3EDE-9B9B-6A678ED7F8DE> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x965b2000 - 0x965defff  com.apple.ChunkingLibrary (2.1 - 163.1) <2B0CBB85-EF91-351A-8750-A185996E4CDB> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x965df000 - 0x96611ffb  com.apple.GSS (4.0 - 2.0) <680D3014-D2C6-30D4-9892-93B9E4172100> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x96612000 - 0x9661afff  com.apple.CoreServices.FSEvents (1210 - 1210) <FC372799-6E8E-3290-9816-6981D39BC9D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
    0x9661b000 - 0x96627ff3  libGPUSupportMercury.dylib (11.1.1) <180F5678-75ED-3595-8B56-217F3E35CA2D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
    0x96628000 - 0x9662afff  libCVMSPluginSupport.dylib (11.1.1) <2AEAFC0D-982C-3E26-B50B-B6EB12FE71F4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9662b000 - 0x96637ff3  libcommonCrypto.dylib (60061) <024B3913-15C6-3005-9E5A-EB24918F6977> /usr/lib/system/libcommonCrypto.dylib
    0x96638000 - 0x9665bfff  libJPEG.dylib (1232) <C7B71F9A-E740-307B-A9FA-A83760EE747B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9665c000 - 0x96660ffb  libGIF.dylib (1232) <037E01F1-885C-3F4A-A353-87DB1F9CB504> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96661000 - 0x966b5fff  com.apple.HIServices (1.22 - 520.12) <8950B516-7DFD-3154-B34F-067809086832> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x966b6000 - 0x96711fff  com.apple.LanguageModeling (1.0 - 1) <9B39E059-F48E-31AF-B1B3-B0872F362627> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x96712000 - 0x96786fff  com.apple.Heimdal (4.0 - 2.0) <5BB21A72-99E6-3079-824E-935AA93D3981> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x96787000 - 0x969762ef  libobjc.A.dylib (647) <7648C174-3098-3B26-AD20-490DBFFD5D4C> /usr/lib/libobjc.A.dylib
    0x96977000 - 0x969abffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <F527DB82-0D3F-359E-979B-951DFF46D45C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x969ac000 - 0x96ddfff3  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <EF92C25B-3E33-379F-A862-75C2FCA8B386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x96de0000 - 0x96f24fff  com.apple.ImageIO.framework (3.3.0 - 1232) <3C219D4C-9B88-3A4A-A266-AEA6C6495676> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x96f25000 - 0x9701bff7  libxml2.2.dylib (26) <2F37833C-4D55-3A09-9A0C-5904E8B6892A> /usr/lib/libxml2.2.dylib
    0x9701c000 - 0x9702eff7  libsasl2.2.dylib (193) <B5813595-A89D-39D4-BB06-F6013D3BD98C> /usr/lib/libsasl2.2.dylib
    0x9702f000 - 0x97033fff  libCoreVMClient.dylib (79) <85CBF1F3-3CE1-304F-88DF-15608C9A2367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x97034000 - 0x9706eff7  com.apple.DebugSymbols (115 - 115) <D01FFA10-1734-31C5-B5A1-9CB61463FC15> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9706f000 - 0x97516ff7  com.apple.JavaScriptCore (10600 - 10600.3.13) <21BA75F3-8A70-3159-8696-7392EDEBEF70> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97a74000 - 0x97ac9ff3  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <F5A586C3-A440-3E0E-966A-7841A182E5B2> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97e33000 - 0x97e5afff  libdispatch.dylib (442.1.4) <B26A176C-39F7-3362-B128-27B1211068B9> /usr/lib/system/libdispatch.dylib
    0x97e5b000 - 0x97ebfff7  com.apple.AE (681 - 681) <EEE62980-421B-33BD-BB88-6BDE269A3060> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x97ec0000 - 0x97f00ffb  libGLImage.dylib (11.1.1) <B49A6796-40A3-33D0-8199-6AED149ADFDF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97f01000 - 0x97f05ffb  com.apple.IOSurface (97 - 97) <ADB57CD2-455A-317C-818E-6379BF427D10> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97f06000 - 0x97f0ffff  com.apple.AppleSRP (5.0 - 1) <41C48FA8-C249-3800-A551-7F4AFA3E723F> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x97f10000 - 0x97f13fff  libextension.dylib (55.1) <E0A4ADBE-596E-3363-8780-51D8AE39B755> /usr/lib/libextension.dylib
    0x97f48000 - 0x97f48fff  com.apple.Carbon (154 - 157) <514DC1B6-3D3B-3A96-814D-71D6E022CB3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97f49000 - 0x97f49fff  com.apple.ApplicationServices (48 - 48) <76C301A4-705B-33DE-BA11-C89DCF1EDCDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97f4a000 - 0x97f4fff7  libmacho.dylib (862) <48DE74F8-09E3-344F-A82F-665083A3BF8F> /usr/lib/system/libmacho.dylib
    0x97f50000 - 0x97ff6fff  com.apple.Metadata (10.7.0 - 917.1) <0B19C2DD-A71C-3D2B-AB00-68FFC6CC606A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98161000 - 0x983e6fff  com.apple.QuickTime (7.7.3 - 2890) <34289D2B-07CC-3D12-8F32-6F97D96DEE81> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x983e7000 - 0x983fafff  libcmph.dylib (1) <2449B048-208E-36FB-9DFA-47E0F3BCF132> /usr/lib/libcmph.dylib
    0x983fb000 - 0x983fffff  libheimdal-asn1.dylib (398.10.1) <6F113AF8-F5AD-330B-B029-F7AF28A93F28> /usr/lib/libheimdal-asn1.dylib
    0x98400000 - 0x98400fff  liblaunch.dylib (559.10.3) <DF6BB29C-8F20-3E04-81FF-19FFBC82BD46> /usr/lib/system/liblaunch.dylib
    0x98401000 - 0x984ebfff  libcrypto.0.9.8.dylib (52.10.1) <DD3EA46B-C906-39AA-848E-7C7240EB31F9> /usr/lib/libcrypto.0.9.8.dylib
    0x984ec000 - 0x9859efff  libCoreStorage.dylib (471.10.6) <E7A963AC-C277-31A8-A1E8-BFAC38A24B69> /usr/lib/libCoreStorage.dylib
    0x9859f000 - 0x985a8ffb  com.apple.CommonAuth (4.0 - 2.0) <FFE760A3-FEF7-3009-92E8-893ABB3BC91A> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x985a9000 - 0x985e6ff7  libsystem_network.dylib (411.1) <EB71DD61-9515-3F6C-817E-25AF7F108CB8> /usr/lib/system/libsystem_network.dylib
    0x985e7000 - 0x985ecff7  libcompiler_rt.dylib (35) <6630682F-AB76-3E55-BE51-0A3E61B6CFC2> /usr/lib/system/libcompiler_rt.dylib
    0x985ed000 - 0x9861cfff  com.apple.CoreVideo (1.8 - 145.1) <A59466FC-6B5A-3B36-BDD4-AC9CD581B7A1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9861d000 - 0x98659ff3  com.apple.RemoteViewServices (2.0 - 99) <2839C2F1-88DA-3843-87BF-441A374A8967> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9865a000 - 0x98673fff  libsystem_malloc.dylib (53.1.1) <58CD8BC7-55D1-3862-8E5D-728EE2EBE447> /usr/lib/system/libsystem_malloc.dylib
    0x98677000 - 0x98777ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <D41066A1-FC8B-34A2-A980-4B011AA77F38> /System/Library/Frameworks/Co

  • After the recent update I am having issues with Flash based games freezing and not responding.

    After the recent update I am having issues with flash based programs not running or loading correctly.  The programs will not load or take an extremely long time to load compared to jsut a few days ago.  This happens across the board on anything flash based.  Also, once they do load they will freeze, stop responding or need to be constantly refreshed to come back alive which is short lived at best.  I went thru the help and did all the file deleting, cache clearing, disabling hardware acceleration, removing then reinstalling flash, and even removing and reinstalling my browsers.  None of this has helped at all.  I am using Chrome and it is up to date and I checked my Flash player and it is up to date.  I am running windows 7 64bit.

    Here's what you're up against guys,
    Adobe writes the base code for Flash Player, and then hands it off to Google, who adapt it to a PPAPI plug-in (it's NPAPI when Adobe writes it). It's then "PepperFlash" and Google embeds it in their Chrome browser. While Google is pushing a "webwide" move to PPAPI Flash Content, a reinvention of the wheel so to speak, not everyone "got the memo", and Google is slowly making it so that PepperFlash will block NPAPI Flash content from running properly, and you have to disable PepperFlash to force the NPAPI plug-in to work, which sometimes fixes it, sometimes not. I have a feeling this is only going to get worse. HTML5 will eventually resolve the video end but game developers need to come up with something that won't require a plug-in.
    And to the first post:  Since PepperFlash is embedded in Chrome by Google, you can uninstall and reinstall Flash Player from here until your hard drive literally seizes up.... guess what? It has NO EFFECT at all on the PepperFlash plug-in in Chrome because it's a separate file in a separate folder and the uninstaller & installers don't have anything to do with it.

Maybe you are looking for

  • Adding videos without iTunes!

    I have a 30GB iPod and I want link from where I can download a software that can be used for adding videos in iPod without iTunes. I need that software because whenever I try to add videos to my iPod using iTunes, it displays the error like this:- "

  • How can I add a swf flipbook created in InDesign to a Muse website?

    I'm new to Muse.  I'd like to add a simple swf flipbook to a site.  Any clues would be helpful.

  • Anyone know how to show table format in email using php?

    I created a form using tables in dreamweaver.. and my email works and I used php. My issue is I want my submitted form to look like the form I built in dreamweaverwith the tables and spaces etc. Is there a way to do this?

  • Error when registering potential supplier in the SUS client

    Dear experts, We have configured the supplier qualification process in SRM We are on SRM 7 EhP1. Customizing switch SRM_701_SUCO_SUP_REG is active We have set up SUS in a seperate client than SRM. When trying to register a potential supplier I'm gett

  • How to combine rows?

    This is probably a basic question, but I am rather new to this, so please bear with me. I have a table that contains a field for comments, and the comments are broken into chunks, something like this: COMMENT_TABLE: ID DIA_ID SEQ TEXT == ====== === =