Disk utilities - lion crashes when resizing back to standard - bootcamp

To get lion to install correctly with bootcamp I followed this tech artical
http://support.apple.com/kb/TS3926?viewlocale=en_US
Now when I try to resize back to recover my disk space lion crashes.
(grey screen with box saying to restart in multiple languages )
Anyone else getting this and any ideas of how to recover my full partition back ?

To get lion to install correctly with bootcamp I followed this tech artical
http://support.apple.com/kb/TS3926?viewlocale=en_US
Now when I try to resize back to recover my disk space lion crashes.
(grey screen with box saying to restart in multiple languages )
Anyone else getting this and any ideas of how to recover my full partition back ?

Similar Messages

  • In IPhone Apps crash when press back buton . When press back back button Last class is appeared slightly slighly ash, with no error or warning .

    Hi,
    I am developing apps on for 4.1 and on Xcode3.2. My Apps crash when press back buton . When press back back button Last class is appeared slightly than crash, with no error or warning ....Here are the code....crash on Back Funtion
    #import "TransactionSummaryDetailViewController.h"
    #import "TransactionSummaryData.h"
    #import "Constant.h"
    #import "DataBase.h";
    #import "Common.h"
    #import "YPCardHolderServiceService.h"
    #import "SelectionScreenViewController.h"
    @implementation TransactionSummaryDetailViewController
    @synthesize table,cardReference;
    @synthesize waitIndicator,transactionsummary,keyArray,valueArray,isSummaryAvailable;
    @synthesize startDate,endDate;
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
            // Custom initialization
        return self;
    -(void)getrowcount{
        if(transactionsummary.cardholdernmae !=nil){
            [keyArray addObject:@"Card Holder Name: "];
            [valueArray addObject:transactionsummary.cardholdernmae];
        if(transactionsummary.cardnumber!=nil){
            [keyArray addObject:@"Card Number: "];
            [valueArray addObject:transactionsummary.cardnumber];
        if(transactionsummary.debittransactioncount != nil){
            [keyArray addObject:@"Debit Tx. Count: "];
            [valueArray addObject:transactionsummary.debittransactioncount];
        if(transactionsummary.debittransactionvalue!=nil){
            [keyArray addObject:@"Debit Tx. Value"];
            [valueArray addObject:transactionsummary.debittransactionvalue];
        if(transactionsummary.credittransactioncount!=nil){
            [keyArray addObject:@"Credit Tx. Count: "];
            [valueArray addObject:transactionsummary.credittransactioncount];
        if(transactionsummary.credittransactionvalue!=nil){
            [keyArray addObject:@"Credit Tx. Value: "];
            [valueArray addObject:transactionsummary.credittransactionvalue];
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
        appDelegate = [[UIApplication sharedApplication]delegate];
        keyArray = [[NSMutableArray alloc]init];
        valueArray = [[NSMutableArray alloc]init];
        [self getrowcount];
        NSLog(@"Key Array Count is %d",[keyArray count]);
        [table setBackgroundColor:[UIColor clearColor]];
        [table setSeparatorColor:TableViewCellSeperatorColor];
        [waitIndicator setHidden:YES];
        [self setTitle:@"Summary Details"];
        UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
        [button setImage:[UIImage imageNamed:@"list.png"] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(BacktoView) forControlEvents:UIControlEventTouchUpInside];
        [button setFrame:CGRectMake(0, 0, 76, 44)];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        if(!isSummaryAvailable)
            if([Common isNetworkAvailable])
                [waitIndicator startAnimating];
                YPCardHolderServiceService *services = [[YPCardHolderServiceService alloc] init];
                YPTransactionsSummaryRequest *summaryRequest = [[YPTransactionsSummaryRequest alloc] init];
                summaryRequest.SC = appDelegate.SC;
                summaryRequest.userName = appDelegate.userName;
                summaryRequest.valid =TRUE;
                summaryRequest.cardReference =[NSString stringWithFormat:@"%@",cardReference];
                NSLog(@"Start Date Is %@ and End Date is %@",startDate,endDate);
                summaryRequest.startDate = startDate;
                summaryRequest.endDate = endDate;
                summaryRequest.applicationType = @"M";
                [services getTransactionsSummary:self action:@selector(getTransactionsSummaryHandlers:) transactionsSummaryRequest:summaryRequest];
                [summaryRequest release];
                [services release];
        [super viewDidLoad];
    //Handle the Response of getTransactionsSummary
    -(void)getTransactionsSummaryHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        // Do something with the YPLoginResponse* result
        YPTransactionsSummaryResponse* result = (YPTransactionsSummaryResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is =%d",[result.transactionSummaryList count]);
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            NSString *deleteQuery = @"delete from TransactionSummary where userid = ";
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            deleteQuery = [deleteQuery stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"delete query= '%@'",deleteQuery);
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"delete query= '%@'",deleteQuery);
            //for (int i =0; i< [result.transactionSummaryList count]; i++)
            for (int i =0; i< [result.transactionSummaryList count] -2; i++)
                NSLog(@"for loop= %d",i);
                YPTransactionSummaryDetails *transactionSummary = (YPTransactionSummaryDetails*)[result.transactionSummaryList objectAtIndex:i];
                NSLog(@"cardholdername= '%@'",transactionSummary.cardholderName);
                /*NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','xxxx xxxx xxxx %@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,
                                                                   appDelegate.userID]];*/
                //Add by sarvesh
                NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,cardreference,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,cardReference,
                                                                   appDelegate.userID]];
                NSLog(@"Insert Query for Transaction Summary is %@",insertQuery);
                [DataBase InsertIntoTable:insertQuery];
            //Read Update Data From DataBase and Refresh Table
                NSString *query = @"Select * from TransactionSummary where userid = ";
                query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"select query= %@",query);
                NSMutableArray *temp=[DataBase getTransactionSummaryTableData:query];
                if([temp count] > 0)
                    transactionsummary = (TransactionSummaryData*)[temp objectAtIndex:0];
                    [keyArray removeAllObjects];
                    [valueArray removeAllObjects];
                [self getrowcount];
                [table reloadData];
    -(void)viewDidAppear:(BOOL)animated
        CGFloat navBarHeight = 50.0f;   
        CGRect frame = CGRectMake(0.0f, 20.0f, 320.0f, navBarHeight);
        [self.navigationController.navigationBar setFrame:frame];
        [super viewDidAppear:animated];
    -(IBAction)BacktoView
        NSLog(@"in back function..TrasactionSummaryDetail");
        SelectionScreenViewController *screenView=[[SelectionScreenViewController alloc] initWithNibName:@"SelectionScreenViewController" bundle:nil];
        [self.navigationController popViewControllerAnimated:YES];
        [screenView release];
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewCellEditingStyleNone;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
        return 1;
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
        return cellHeightForGroupedTable;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        if(section == 0)
            return [keyArray count];
        else       
            return 0;
    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
        NSString *title = nil;
        switch (section){
            case 0:{
                //title = @"Summary Details";
                break;
        return title;
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        if ([self tableView:tableView titleForHeaderInSection:section] != nil) {
            return tableHeaderHeight;
        else {
            // If no section header title, no section header needed
            return 0;
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
        NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
        if (sectionTitle == nil) {
            return nil;
        // Create label with section title
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.frame = CGRectMake(20, 6, 300, 30);
        label.backgroundColor = [UIColor clearColor];
        label.textColor = HeaderTextColor;
        label.shadowColor = HeaderTextShadowColor;
        label.shadowOffset = CGSizeMake(0.0, 1.0);
        label.font = HeaderTextFontSize;
        label.text = sectionTitle;
        // Create header view and add label as a subview
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320,60)];
        [view autorelease];
        [view addSubview:label];
        return view;
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = nil;
        NSString *cellIdentifier;
        cellIdentifier = @"SectionsTableIdentifier";
        int row = [indexPath row];
        CGRect nameLabelRect = CGRectMake(19 , 8, 240, 29);
        CGRect cardlabelRect = CGRectMake(19,31,240,15);
        UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameLabelRect];
        UILabel *cardnumber = [[UILabel alloc] initWithFrame:cardlabelRect];
        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        if(cell == nil){
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
        // Remove all subview from cell content view
        for (UIView *view in cell.contentView.subviews){
            [view removeFromSuperview];
         [cell setAccessoryType:UITableViewCellAccessoryNone];
        [nameLabel setTextColor:firstLabelFontColor];
        [nameLabel setFont:firstLabelFont];
        [nameLabel setFont:firstLabelFontSize];
         nameLabel.textAlignment = UITextAlignmentLeft;
         nameLabel.text = [NSString stringWithFormat:@"%@ : %@",[keyArray objectAtIndex:row],[valueArray objectAtIndex:row]];
         [cell.contentView addSubview: nameLabel];
         cell.selectionStyle = UITableViewCellSelectionStyleNone;
        [cell setBackgroundColor:[UIColor clearColor]];
        [cell setBackgroundColor:TableViewCellColor];
        [nameLabel setBackgroundColor:[UIColor clearColor]];
        [cardnumber setBackgroundColor:[UIColor clearColor]];
        [cardnumber release];
        [nameLabel release];
        return cell;
    // Override to allow orientations other than the default portrait orientation.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    - (void)viewDidUnload {
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (void)dealloc {
        [table release];
        [waitIndicator release];
        [keyArray release];
        [valueArray release];
        [transactionsummary release];
        [super dealloc];
    @end

    This is the user-to-user tech support site.  For carrier issues go to the Dev forums.
    You might want to note that the current iOS is 4.3.3, and the current SDK is 4.3 and XCode 4.0.2

  • Hi Lightroom 4.1 running on iMac (Mountain Lion) crashes when trying to print

    H
    Lightroom 4.1 running on iMac (Mountain Lion) crashes when trying to print.  No problems printing from Photoshop CS5. Any help out there!

    Which printer?  You've checked your printer manufacturer's website for an updated driver I assume?

  • Keynote 6.5 Crashes When Resizing Object

    I have been having this problem with the last two versions of keynote on OSX Mavericks/OSX Mountain Lion, the problem is not unique to keynote 6.5 on Yosemite.
    Only objects which have been grouped together, such as a graph w/ legend, will make keynote crash when I try to resize them. This is when I use the cursor or the "Arrange" side menu tools. I can move the object freely, I just cannot change its size.
    Any help is much appreciated on how I can modify the object so that it can be resized.

    Sorry I have no real experience with this, just a thought. Did you use migration assistant to move the old files over from your G4 to your Intel? And did you then perform a "Repair Disk Permissions" upon the entire hard drive from within Disk Utility's "First Aid" panel? (located at Applications>Utilities>Disk Utility)
    If the file move still is causing you a problem afterwards, you could try and work around it by moving the files in a different way. As a test, create a small file on the G4 and then email it to yourself from the G4. Receive that message into the Intel and see if the Intel can then open the file from inside Mail. This might avoid any "bias" created during the move from old to new Mac.

  • Mountain Lion crashes when plugging in firewire device.

    I am running Mountain Lion (10.8.2) on an Early 2008 Mac Pro.  Everytime I plug in a firewire camera to capture video the OS crashes and reboots my machine.  This also happens on my late 2011 MacBook Pro.  Any help is appreciated.
    Here is the crash report:
    Interval Since Last Panic Report:  254878 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    C0397782-6778-A6D2-BFD3-9128AE02CB8D
    Thu Sep 27 11:39:39 2012
    panic(cpu 4 caller 0xffffff80042b83c9): "Double fault at 0xffffff7f849187da, registers:\n" "CR0: 0x000000008001003b, CR2: 0xffffff80d4be3e38, CR3: 0x00000000066d0000, CR4: 0x0000000000000660\n" "RAX: 0x00000000fffffff0, RBX: 0xffffffffffffffef, RCX: 0x000000000000001c, RDX: 0x0000000000000000\n" "RSP: 0xffffff80d4be3e40, RBP: 0xffffff81d4be3e90, RSI: 0xffffff81d4be3e04, RDI: 0xfffffffffffffff0\n" "R8:  0x0000000000000004, R9:  0x7ffffffffffffffe, R10: 0x00000000ffffffff, R11: 0x00000000ffffff80\n" "R12: 0xffffff80262a6279, R13: 0xffffff81d4be3ef0, R14: 0xffffff81d4be3ef0, R15: 0xffffff8040de3980\n" "RFL: 0x0000000000010206, RIP: 0xffffff7f849187da, CS:  0x0000000000000008, SS:  0x0000000000000010\n" "Error code: 0x0000000000000000\n"@/SourceCache/xnu/xnu-2050.18.24/osfmk/i386/trap_native.c: 280
    Backtrace (CPU 4), Frame : Return Address
    0xffffff81cb44eec0 : 0xffffff800421d626
    0xffffff81cb44ef30 : 0xffffff80042b83c9
    0xffffff81cb44f0a0 : 0xffffff80042ceddf
    0xffffff81d4be3e90 : 0xffffff7f8491803c
    0xffffff81d4be3ed0 : 0xffffff7f8492459b
    0xffffff81d4be3f40 : 0xffffff7f84923d1a
    0xffffff81d4be3f90 : 0xffffff7f84923bde
    0xffffff81d4be3fb0 : 0xffffff80042b26b7
          Kernel Extensions in backtrace:
             com.apple.iokit.IOFireWireFamily(4.5.5)[A045A111-194F-3E54-A63E-E015DC69B862]@0 xffffff7f84917000->0xffffff7f84989fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000004000000
    Kernel text base: 0xffffff8004200000
    System model name: MacPro3,1 (Mac-F42C88C8)
    System uptime in nanoseconds: 264156192824443
    last loaded kext at 196614206697331: com.apple.filesystems.msdosfs    1.8 (addr 0xffffff7f860ed000, size 65536)
    last unloaded kext at 196734915261076: com.apple.driver.AppleUSBCDC    4.1.22 (addr 0xffffff7f8606c000, size 12288)
    loaded kexts:
    com.apple.filesystems.smbfs    1.8
    com.apple.iokit.IOBluetoothSerialManager    4.0.9f33
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AudioAUUC    1.60
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.driver.AppleUpstreamUserClient    3.5.10
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.driver.AppleUSBDisplays    353
    com.apple.kext.AMDFramebuffer    8.0.0
    com.apple.iokit.CSRBluetoothHCIControllerUSBTransport    4.0.9f33
    com.apple.driver.AppleHDA    2.3.1f2
    com.apple.ATIRadeonX2000    8.0.0
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.ACPI_SMC_PlatformPlugin    1.0.0
    com.apple.driver.AppleMCEDriver    1.1.9
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.ApplePolicyControl    3.2.11
    com.apple.iokit.SCSITaskUserClient    3.5.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.2.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.driver.AppleUSBHub    5.2.5
    com.apple.driver.AppleIntel8254XEthernet    3.1.1b1
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.driver.AppleAHCIPort    2.4.1
    com.apple.driver.AppleIntelPIIXATA    2.5.1
    com.apple.driver.AppleUSBEHCI    5.4.0
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleACPIButtons    1.6
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.6
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.0
    com.apple.iokit.IOSerialFamily    10.0.6
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.AppleUSBAudio    2.9.0f6
    com.apple.driver.DspFuncLib    2.3.1f2
    com.apple.iokit.IOAudioFamily    1.8.9fc10
    com.apple.kext.OSvKernDSPLib    1.6
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport    4.0.9f33
    com.apple.kext.AMD2600Controller    8.0.0
    com.apple.kext.AMDSupport    8.0.0
    com.apple.driver.IOPlatformPluginLegacy    1.0.0
    com.apple.driver.IOPlatformPluginFamily    5.2.0d16
    com.apple.driver.AppleHDAController    2.3.1f2
    com.apple.iokit.IOHDAFamily    2.3.1f2
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.iokit.IOSurface    86.0.3
    com.apple.iokit.IOBluetoothFamily    4.0.9f33
    com.apple.driver.AppleSMC    3.1.4d2
    com.apple.driver.AppleGraphicsControl    3.2.11
    com.apple.iokit.IONDRVSupport    2.3.5
    com.apple.iokit.IOGraphicsFamily    2.3.5
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOATAPIProtocolTransport    3.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOUSBUserClient    5.2.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IOAHCIFamily    2.2.1
    com.apple.iokit.IOATAFamily    2.5.1
    com.apple.iokit.IOUSBFamily    5.4.0
    com.apple.iokit.IOHIDFamily    1.8.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    344
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.6
    com.apple.iokit.IOPCIFamily    2.7.1
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 16 GB, SMC 1.25f4
    Graphics: ATI Radeon HD 2600 XT, ATI Radeon HD 2600, PCIe, 256 MB
    Memory Module: DIMM Riser B/DIMM 1, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser B/DIMM 2, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser A/DIMM 1, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser A/DIMM 2, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser B/DIMM 3, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser B/DIMM 4, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser A/DIMM 3, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Memory Module: DIMM Riser A/DIMM 4, 2 GB, DDR2 FB-DIMM, 800 MHz, 0x02BA, 0x202020202020202020202020202020202020
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    Network Service: Ethernet 2, Ethernet, en1
    PCI Card: ATI Radeon HD 2600, sppci_displaycontroller, Slot-1
    Serial ATA Device: Hitachi HDS721010KLA330, 1 TB
    Serial ATA Device: Hitachi HDS722020ALA330, 2 TB
    Serial ATA Device: Hitachi HDS721010KLA330, 1 TB
    Serial ATA Device: SAMSUNG HD103SI, 1 TB
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    Parallel ATA Device: PIONEER DVD-RW  DVR-112D
    USB Device: hub_device, apple_vendor_id, 0x912f, 0xfd500000 / 2
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc50c, 0xfd530000 / 4
    USB Device: Apple Cinema HD Display, apple_vendor_id, 0x9221, 0xfd520000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x5d200000 / 2
    USB Device: SoundSticks, 0x05fc  (Harman International), 0x7849, 0x3d100000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Yes, I have tried different firewire cables and such.  Removed my firewire hub, tried plugging into the actual ports on the MacPro and plugging in the firewire ports on the back of my Cinema 30 display.  I even bought a new firewire cable just to make sure.  So for now I guess I am going to downgrade my MacMini to Snow Leopard and use that machine to do video capture.
    So last night I removed the primary harddrive from the MacPro.  I installed a new 1TB harddrive. Formatted that drive and did a clean install of Mountain Lion and ran all software updates.  Crashes when I plugin my firewire cameras with no other software but the OS.
    So then I reformatted the drive and did a clean install of Lion and did all software updates.  Still crashes.
    I formatted the drive for a third time, this time installing Snow Leopard.  Did all software updates.  Plugged in my cameras one at a time and no crash.  I installed iLife '11 and was able to video capture with iMovie via the firewire port.
    I am pretty convinced that my hardware (at least) is in working order, otherwise it would have crashed with Snow Leopard also (correct me if my conclusion is incorrect).  So I am inclined to agree with you that I may have triggered a bug in the OS.
    Thank you for your insights.  How do I go about reporting this issue to the Apple Software Engineers?

  • App crashing when going back to previous view

    I've got my app. which has several views. in my 3rd view, i have a list of questions with yes/no answers the answers to which I'm saving to a plist. it was working all good. but then i added a first view with a table which has 4 options, clicking on either of these rows go to the same view but each of them change the value of the variable in my singleton class, which then decides which questions are added to the 3rd view. so this helps me to jus have one view but the variable controls the different questions. Now my problem is that if i change something in my 3rd view, for eg, i choose yes/no , then when i am going back to the main viw , my app crashes. I am not sure why this happens.How does it work anyway-the inherent back button on the navigation bar? im guessing it calls the viewdidload function for the first/second view when going back to them from the first view, i dont undrstand why it crashes, coz the viewdidloads of these views seem okay to me.
    thanks

    write the piece of code causing the crash or paste the output on the console to get to know what actually cause your application to be crashed.

  • Premiere Pro CC 2014 crashing when playing back especially when playing back graphics.

    I updated Premiere Pro to CC 2014 last week and found it crashing a lot when playing back especially when playing back graphics. Has anyone else had this problem?

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    What is your exact graphics adapter driver version?
    Have you gone to the vendor web site to check for a newer driver?
    For Windows, do NOT rely on Windows Update to have current driver information
    -you need to go direct to the vendor web site and check updates for yourself
    ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us

  • CS4 - Lion crashes when asked to print

    Hi
    I really would like to get my CS4 ind working in Lion.
    I can open a file and work on it and all is well, 
    As soon as I go into any of the print options (Print, Print Booklet ect) it crashes.
    1. I have Trashed my preferences etc by keyboard method  ( Can find the hidden Macintosh in Lion: Hard Drive/Users/<USER>/Library/Preferences/Adobe InDesign/<Version #>/<Language>/)
    2. I have repaired the permissions
    Any help would be appreciated as the program was a significant investment
    Isvara78

    There's already a thread on this subject in this forum. Please post there:
    InDesign CS3 crashes when printing in OSX Lion

  • My brand new Mac Pro running Mountain Lion crashes when installing updates or new software.

    My brand new Mac Pro running Mountain Lion crashes and re-boots when installing updates or new software. I can only perform these operations while in the safe boot mode.  I have reloaded OSX twice. Does not solve the problem.  The machine is brand new. It replaced a previous MacPro that would not support the new Mountain Lion.  When my new machine came in.  I swaped the dirve out of my old unit into the new and ran the new Lion update.  The machine has had this aforementioned problem since that time.  Also, I had the Legacy version of File Vault running on the old machine/drive, which I also turned off(thinking that was the problem)  but that did not fix the problem either.

    Here is my panic log entry:
    Sun Nov 18 22:08:42 2012
    panic(cpu 6 caller 0xffffff800b4ac90b): Releasing non-exclusive RW lock without a reader refcount!
    Backtrace (CPU 6), Frame : Return Address
    0xffffff8556cab950 : 0xffffff800b41d626
    0xffffff8556cab9c0 : 0xffffff800b4ac90b
    0xffffff8556cab9e0 : 0xffffff800b51c09c
    0xffffff8556cabc10 : 0xffffff800b510e92
    0xffffff8556cabc40 : 0xffffff800b4ff375
    0xffffff8556cabf50 : 0xffffff800b7e182a
    0xffffff8556cabfb0 : 0xffffff800b4ced33
    BSD process name corresponding to current thread: installd
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000000b200000
    Kernel text base: 0xffffff800b400000
    System model name: MacPro5,1 (Mac-F221BEC8)
    System uptime in nanoseconds: 427147359117
    last loaded kext at 111975561856: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f8ba85000, size 229376)
    last unloaded kext at 127467947009: com.apple.driver.AppleIntel8254XEthernet          3.1.1b1 (addr 0xffffff7f8bf8d000, size 69632)
    loaded kexts:
    com.zeobit.kext.Firewall          2.3.1
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleIntelProfile          97
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.kext.AMDFramebuffer          8.0.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.AMDRadeonAccelerator          1.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.Intel82574L          2.3.0b4
    com.apple.BootCache          34
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleUSBUHCI          5.2.5
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.AppleProfileTimestampAction          97
    com.apple.driver.AppleProfileThreadInfoAction          97
    com.apple.driver.AppleProfileRegisterStateAction          97
    com.apple.driver.AppleProfileReadCounterAction          97
    com.apple.driver.AppleProfileKEventAction          97
    com.apple.driver.AppleProfileCallstackAction          97
    com.apple.iokit.AppleProfileFamily          97
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.AppleUSBAudio          2.9.0f6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOAcceleratorFamily          19.0.26
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.kext.AMD5000Controller          8.0.0
    com.apple.kext.AMDSupport          8.0.0
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

  • Flash 5.5 on Lion crashing when choosing a color from color palette?

    When coloring an animation, Flash crashes on me every 3 minutes or so, when picking a color with color picker (first displaying wrong color). Or when choosing a color from color palette or color popup in a tool. It sometimes works, but often crashes when doing one of these things.
    Is there a fix for this i didn't find?

    When coloring an animation, Flash crashes on me every 3 minutes or so, when picking a color with color picker (first displaying wrong color). Or when choosing a color from color palette or color popup in a tool. It sometimes works, but often crashes when doing one of these things.
    Is there a fix for this i didn't find?

  • Lion crashes when using Firefox and Safari, have found a fix for this.  I can't believe they would just let us hang.  Very frustrated.

    How do I fix frequent crashes when using Firefox or Safari???  I see a lot of people have this problem...is there a solution yet?

    Try posting in Safari forum, you'll get better help there.
    https://discussions.apple.com/community/mac_os/safari

  • Disk utility is crashing when trying to create a new image

    Seriously need some help if anyone has an idea of why disk utility is crashing while trying to create a disk image. I'm not finding any other info on this issue.
    My HD is failing and being replaced tomorrow and I'm desperately trying to create disk images of both my mac HD and of bootcamp for the new drive being installed.
    Any recommendations or suggestions would be truly appreciated.

    Thank you for responding so quickly. I do have Carbon Copy Cloner, but if disk utility isn't working, getting it to restore is going to be an issue, though haven't attempted a restore since the HD has to be replaced.
    CCC also doesn't clone bootcamp either unfortunately.
    Currently running "verify permissions" using Disk Utility and so far so good, it hasn't crashed, it seems to be an issue related to imaging with disk utility.
    Then I am going to attempt using the install disk to see if I can get disk utility again and try imaging Bootcamp again too.

  • Mountain lion crash when opening logic photobooth and lost all my music in itunes.

    Why are apple apps crashing in Mountain Lion. Logic, Photobooth, iphoto and lost all my music in Itunes?

    you might need to reinstall ML from the Recovery Partition.
    To get to the recovery partition restart your computer,  hold CMD+R down when you hear the boot up chime. Open Disk Utility first (verify your boot disk and repair if needed) and then close it and reinstall ML. 

  • Mountain Lion crashes when going into deep sleep?

    Hey guys,
    I recently upgraded to mountain lion from lion on a late 2011 MBP.
    I have no problems during the day time with anything, but when I leave the computer to sleep overnight it doesn't wake up in the morning.
    It shuts down and when I try to turn it on it gives me a pattern of 3 consecutive beeps. Sometimes it doesn't give me any beeps and just gives me a grayed out login screen and a bar loading on the bottom. In the latter case, it does eventually wake up but with the beeps it's a no go and I have to hold the power button to restart it. I never had any of these problems in Lion. Any thoughts as to what this could be?
    I tried PRAM, SMC Reset and creating a new user account. I also ran an extended Apple hardware test which reported no issues.
    This is the log preceding the crash/shutdown:
    Aug 13 00:55:45 User1-MacBook-Pro.local WindowServer[76]: device_generate_lock_screen_screenshot: authw 0x7fe4aec3b860(2000), shield 0x7fe4aa61f490(2001)
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: hibernate image path: /var/vm/sleepimage
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: kern_open_file_for_direct_io(0) took 8 ms
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: Opened file /var/vm/sleepimage, size 8589934592, partition base 0x0, maxio 400000 ssd 0
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 4
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Aug 13 00:55:46 User1-MacBook-Pro kernel[0]: hibernate_setup(0) took 0 ms
    And when I restarted it this morning:
    Aug 13 09:34:03 localhost bootlog[0]: BOOT_TIME 1344864843 0
    Aug 13 09:34:35 localhost kernel[0]: PMAP: PCID enabled
    Aug 13 09:34:35 localhost kernel[0]: Darwin Kernel Version 12.0.0: Sun Jun 24 23:00:16 PDT 2012; root:xnu-2050.7.9~1/RELEASE_X86_64
    Aug 13 09:34:35 localhost kernel[0]: vm_page_bootstrap: 2007676 free pages and 73092 wired pages
    Aug 13 09:34:35 localhost kernel[0]: kext submap [0xffffff7f8073e000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff800073e000]
    Aug 13 09:34:35 localhost kernel[0]: zone leak detection enabled
    Aug 13 09:34:35 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Aug 13 09:34:35 localhost kernel[0]: standard background quantum is 2500 us
    Aug 13 09:34:06 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Aug 13 09:34:35 localhost kernel[0]: mig_table_max_displ = 74
    Aug 13 09:34:35 localhost kernel[0]: TSC Deadline Timer supported and enabled
    Aug 13 09:34:35 localhost kernel[0]: corecrypto kext started!
    Aug 13 09:34:35 localhost kernel[0]: Running kernel space in FIPS MODE
    Aug 13 09:34:35 localhost kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Aug 13 09:34:35 localhost kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    Aug 13 09:34:35 localhost kernel[0]: corecrypto.kext FIPS POST passed!
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    Aug 13 09:34:35 localhost kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    Aug 13 09:34:35 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Aug 13 09:34:35 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Aug 13 09:34:35 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Aug 13 09:34:06 localhost com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    Aug 13 09:34:35 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Aug 13 09:34:35 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Aug 13 09:34:35 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Aug 13 09:34:35 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Aug 13 09:34:35 localhost com.apple.launchd[1] (com.apple.automountd): Unknown key for boolean: NSSupportsSuddenTermination
    Aug 13 09:34:35 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Aug 13 09:34:35 localhost kernel[0]: MAC Framework successfully initialized
    Aug 13 09:34:35 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Aug 13 09:34:35 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Aug 13 09:34:35 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Aug 13 09:34:35 localhost kernel[0]: PFM64 (36 cpu) 0xf10000000, 0xf0000000
    Aug 13 09:34:35 localhost kernel[0]: [ PCI configuration begin ]
    Aug 13 09:34:35 localhost kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    Aug 13 09:34:35 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    ***** >>>>> Aug 13 09:34:35 localhost kernel[0]: Sleep failure code 0x00000000 0x1f006500 *<<<<<<<(this might be helpful)
    Aug 13 09:34:35 localhost kernel[0]: console relocated to 0xf10000000
    Aug 13 09:34:35 localhost kernel[0]: PCI configuration changed (bridge=16 device=4 cardbus=0)
    Aug 13 09:34:35 localhost kernel[0]: [ PCI configuration end, bridges 12 devices 16 ]
    I can't deal with this issue, because I like to use my macbook to charge devices overnight and that's not possible with it shutting down. So if there is no solution what's the best way to go back to Lion?
    Am I the only one with this issue?
    Thanks for any help.

    It sure would be useful to be able to look up these Failure codes.  Searching apple's site like this produces strange, useless results.
    I see Failure code:0x1F006500, like the OP; googling for it brought me here.
    Similarly:
    I recently upgraded to mountain lion from SL on a MacBookPro4,1 -early 2008 MBP (expired AppleCare), and switched to booting off an SSD in the ExpressCard/34 slot.
    When I leave the computer to sleep overnight it doesn't wake up in the morning.  It is completely off, and boots from scratch when I turn it on. It can sleep briefly.
    I have NOT tried PRAM, SMC Reset or creating a new user account, or run an extended Apple hardware test.
    From the output of pmset -g log
    9/27/12 7:39:04 AM PDT   Sleep            
    Sleep (Failure code:0x1F006500): Using BATT (Charge:48%)                
    Strangely, there's no mention of 'hibernate' in my log files after 19:03 last night, even though I was up 'till 'round midnight.
    Sep 26 19:02:59 Computername kernel[0]: hibernate image path: /var/vm/sleepimage
    Sep 26 19:02:59 Computername kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Sep 26 19:02:59 Computername kernel[0]: kern_open_file_for_direct_io(0) took 37 ms
    Sep 26 19:02:59 Computername kernel[0]: Opened file /var/vm/sleepimage, size 6442450944, partition base 0x0, maxio 400000 ssd 1
    Sep 26 19:02:59 Computername kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 2
    Sep 26 19:02:59 Computername kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Sep 26 19:02:59 Computername kernel[0]: hibernate_setup(0) took 0 ms
    Sep 26 19:03:00 Computername kernel[0]: hibernate_page_list_setall start 0xffffff80b6835000, 0xffffff80b6866000
    Sep 26 19:03:00 Computername kernel[0]: hibernate_page_list_setall time: 332 ms
    Sep 26 19:03:00 Computername kernel[0]: pages 996457, wire 230398, act 305981, inact 603, cleaned 0 spec 267, zf 43116, throt 0, could discard act 123224 inact 42352 purgeable 10412 spec 240104 cleaned 0
    Sep 26 19:03:00 Computername kernel[0]: hibernate_page_list_setall found pageCount 580365
    Sep 26 19:03:00 Computername kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Sep 26 19:03:00 Computername kernel[0]: IOHibernatePollerOpen(0)
    Sep 26 19:03:00 Computername kernel[0]: encryptStart 1d6f0
    Sep 26 19:03:00 Computername kernel[0]: IOPolledInterface::startIO[0] 0xe00002c7
    Sep 26 19:03:00 Computername kernel[0]: PMStats: Hibernate write took 0 ms
    Sep 26 19:03:00 Computername kernel[0]: all time: 0 ms, comp bytes: 0 time: 0 ms 0 Mb/s, crypt bytes: 11024 time: 0 ms 140 Mb/s,
    Sep 26 19:03:00 Computername kernel[0]: image 0, uncompressed 0 (0), compressed 0 (0%), sum1 1506b5ff, sum2 0
    Sep 26 19:03:00 Computername kernel[0]: wired_pages_encrypted 0, wired_pages_clear 0, dirty_pages_encrypted 0
    Sep 26 19:03:00 Computername kernel[0]: hibernate_write_image done(e00002c7)
    Sep 26 19:03:00 Computername kernel[0]: sleep
    Did see this in system.log:
    9/27/12 7:39:01.000 AM kernel[0]: Sleep failure code 0x00000000 0x1f006500   (as mis-formatted in Console.app, when copied with cut& paste - interesting)
    Sep 27 07:39:01 localhost kernel[0]: Sleep failure code 0x00000000 0x1f006500 (The actual raw entry in system.log)
    and
    Sep 27 08:28:15 Computername com.apple.launchd[1] (com.apple.sleepservicesd[79]): Exited: Killed: 9
    I suppose that means something sent it the kill -9 signal.  I wonder what.              

  • Safari 5.1.2 on Lion crashing when I view Downloads

    Hello all!
    I've had this problem for a while now and figured I'd finally try the community for help. I've done my fair share of searching for answers, but I give up!!
    So Safari normally works great for me. Until I download something. Now it doesn't matter what I download. It can be a large binary or a small text file. I can right click on any link and say "Download as file". Now the downloading works FINE. In fact, I usually get a file. If I leave it at that, no problems. But as soon as I click on the Downloaded files icon in the toolbar, BAM it crashes. And I can repeat this over and over. I've disabled extensions AND plug-ins with no change.
    Now the most frequent cause of download crashes seems to be running Safari from the wrong folder. Howver, from the crash report it seems it's in the right place AFAIK.
    Any experts out there able to help? Please? I'm a reasonably technical guy, but I'm not sure how to read the crash report. As much as I'd like to just get an answer, if you can explain why parts of the crash report are relevant, it'll make me a little more capable of fixing this myself and perhaps participate in helping others in the community.
    Here's my crash report. It's a fresh one from like 10 minutes ago. Everything is up to date on my Mac.
    Process:         Safari [2019]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.2 (7534.52.7)
    Build Info:      WebBrowser-7534052007000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [179]
    Date/Time:       2011-12-19 12:58:15.307 -0600
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000fefff000
    VM Regions Near 0xfefff000:
        CG backing stores      00000000cb4da000-00000000cb65a000 [ 1536K] rw-/rw- SM=SHM 
    --> VM_ALLOCATE            00000000fefff000-00000000ff000000 [    4K] rw-/rwx SM=COW 
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    objc[2019]: garbage collection is OFF
    Performing @selector(toggleDownloadsPopover:) from sender ToolbarDownloadsButton 0x1e5b00
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                               0xfefff000 0 + 4278185984
    1   com.apple.Safari.framework        0x9aee3b74 -[DownloadRow _updateIconAndFilename] + 402
    2   com.apple.Safari.framework        0x9aee5480 -[DownloadRow initWithEntry:] + 1063
    3   com.apple.Safari.framework        0x9aee8611 -[DownloadViewController _insertEntry:atIndex:] + 64
    4   com.apple.Safari.framework        0x9aee872b -[DownloadViewController _addAllEntries] + 152
    5   com.apple.Safari.framework        0x9aee88b3 -[DownloadViewController awakeFromNib] + 357
    6   com.apple.CoreFoundation          0x9a62d53a -[NSObject performSelector:] + 58
    7   com.apple.CoreFoundation          0x9a62d4b7 -[NSSet makeObjectsPerformSelector:] + 247
    8   com.apple.AppKit                  0x9627d197 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 1315
    9   com.apple.AppKit                  0x963a4571 -[NSNib instantiateNibWithExternalNameTable:] + 652
    10  com.apple.AppKit                  0x963a42b0 -[NSNib instantiateNibWithOwner:topLevelObjects:] + 304
    11  com.apple.AppKit                  0x963a3726 -[NSViewController loadView] + 212
    12  com.apple.Safari.framework        0x9aee84f4 -[DownloadsPopoverViewController loadView] + 51
    13  com.apple.AppKit                  0x9639f269 -[NSViewController view] + 42
    14  com.apple.AppKit                  0x96b77088 -[NSPopover showRelativeToRect:ofView:preferredEdge:] + 264
    15  com.apple.Safari.framework        0x9ae884b9 -[BrowserWindowControllerMac toggleDownloadsPopover:] + 151
    16  com.apple.CoreFoundation          0x9a625091 -[NSObject performSelector:withObject:] + 65
    17  com.apple.AppKit                  0x96375cb3 -[NSApplication sendAction:to:from:] + 232
    18  com.apple.Safari.framework        0x9ae1f880 -[BrowserApplication sendAction:to:from:] + 75
    19  com.apple.AppKit                  0x96375b90 -[NSControl sendAction:to:] + 102
    20  com.apple.AppKit                  0x96375a93 -[NSCell _sendActionFrom:] + 160
    21  com.apple.AppKit                  0x96374e50 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2295
    22  com.apple.AppKit                  0x963f8351 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 501
    23  com.apple.AppKit                  0x96373893 -[NSControl mouseDown:] + 943
    24  com.apple.Safari.framework        0x9aea3ea1 -[ButtonPlus mouseDown:] + 79
    25  com.apple.AppKit                  0x9633c7b1 -[NSWindow sendEvent:] + 7533
    26  com.apple.Safari.framework        0x9b084bc9 -[Window sendEvent:] + 129
    27  com.apple.Safari.framework        0x9ae7c873 -[BrowserWindow sendEvent:] + 412
    28  com.apple.AppKit                  0x962d46ff -[NSApplication sendEvent:] + 4788
    29  com.apple.Safari.framework        0x9ae1f82d -[BrowserApplication sendEvent:] + 975
    30  com.apple.AppKit                  0x96265c82 -[NSApplication run] + 1007
    31  com.apple.AppKit                  0x964fa18a NSApplicationMain + 1054
    32  com.apple.Safari.framework        0x9afe35e9 SafariMain + 219
    33  com.apple.Safari                  0x00075f79 0x75000 + 3961
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x90fc490a kevent + 10
    1   libdispatch.dylib                 0x96253c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                 0x962526a7 _dispatch_mgr_thread + 53
    Thread 2:: WebCore: IconDatabase
    0   libsystem_kernel.dylib            0x90fc383e __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x91fa1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                 0x91f5242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.WebCore                 0x973039f8 WebCore::IconDatabase::syncThreadMainLoop() + 376
    4   com.apple.WebCore                 0x9730153d WebCore::IconDatabase::iconDatabaseSyncThread() + 501
    5   com.apple.WebCore                 0x9730133b WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 17
    6   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    7   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 3:: CoreAnimation render server
    0   libsystem_kernel.dylib            0x90fc1c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x90fc11f6 mach_msg + 70
    2   com.apple.QuartzCore              0x97f83029 CA::Render::Server::server_thread(void*) + 233
    3   com.apple.QuartzCore              0x97f82f36 thread_fun + 29
    4   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    5   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 4:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib            0x90fc1c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x90fc11f6 mach_msg + 70
    2   com.apple.CoreFoundation          0x9a5bd0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation          0x9a5c6214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation          0x9a5c58ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation          0x9a5c5798 CFRunLoopRunInMode + 120
    6   com.apple.Safari.framework        0x9af9a788 Safari::MessageRunLoop::runSingleRunLoopIteration() + 52
    7   com.apple.Safari.framework        0x9af9a0ae Safari::MessageRunLoop::threadBody() + 156
    8   com.apple.Safari.framework        0x9af9a00b Safari::MessageRunLoop::threadCallback(void*) + 17
    9   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    10  libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 5:: WebCore: LocalStorage
    0   libsystem_kernel.dylib            0x90fc383e __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x91fa1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                 0x91f5242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore          0x93ceb991 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   com.apple.WebCore                 0x9731f8a1 ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 135
    5   com.apple.WebCore                 0x9731f7f4 WebCore::LocalStorageThread::threadEntryPoint() + 74
    6   com.apple.WebCore                 0x9731f751 WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 17
    7   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    8   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib            0x90fc1c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x90fc11f6 mach_msg + 70
    2   com.apple.CoreFoundation          0x9a5bd0ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation          0x9a5c6214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation          0x9a5c58ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation          0x9a5c5798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation              0x9271921c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation              0x9270cf7d -[NSThread main] + 45
    8   com.apple.Foundation              0x9270cf2d __NSThread__main__ + 1582
    9   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    10  libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib            0x90fc3b42 __select + 10
    1   com.apple.CoreFoundation          0x9a614195 __CFSocketManager + 1557
    2   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    3   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 8:: Safari: SnapshotStore
    0   libsystem_kernel.dylib            0x90fc383e __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x91fa1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                 0x91f5242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore          0x93ceb991 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   com.apple.Safari.framework        0x9b0151cd Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessage(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&) + 119
    5   com.apple.Safari.framework        0x9b012a07 Safari::SnapshotStore::diskAccessThreadBody() + 257
    6   com.apple.Safari.framework        0x9b012375 Safari::SnapshotStore::diskAccessThreadCallback(void*) + 17
    7   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    8   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib            0x90fc402e __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x91f9fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                 0x91fa16fe start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib            0x90fc402e __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x91f9fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                 0x91fa16fe start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib            0x90fc402e __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x91f9fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                 0x91fa16fe start_wqthread + 30
    Thread 12:: CVDisplayLink
    0   libsystem_kernel.dylib            0x90fc383e __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x91fa1e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                 0x91f5242c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreVideo               0x93ba9529 CVDisplayLink::runIOThread() + 945
    4   com.apple.CoreVideo               0x93ba9161 _ZL13startIOThreadPv + 160
    5   libsystem_c.dylib                 0x91f9ded9 _pthread_start + 335
    6   libsystem_c.dylib                 0x91fa16de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib            0x90fc402e __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x91f9fccf _pthread_wqthread + 773
    2   libsystem_c.dylib                 0x91fa16fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xc00723dc  ebx: 0xc00723e0  ecx: 0x000cb02c  edx: 0x00000001
      edi: 0x6b8e5090  esi: 0x964a9785  ebp: 0xc0072d98  esp: 0xc00723ac
       ss: 0x00000023  efl: 0x00010202  eip: 0xfefff000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xfefff000
    Logical CPU: 0
    Binary Images:
       0x75000 -    0x75fff  com.apple.Safari (5.1.2 - 7534.52.7) <43BBFABE-A339-33DD-AA5D-F8547C65CEA6> /Applications/Safari.app/Contents/MacOS/Safari
      0x23e000 -   0x23fff7 +com.expandrive.ExpanDriveCMPlugin (??? - 2) <C3197BD2-10DE-8023-ADE3-77E5836330D3> /Users/USER/Library/Contextual Menu Items/ExpanDriveCMPlugin.bundle/Contents/MacOS/ExpanDriveCMPlugin
      0x243000 -   0x244ffd +com.vmware.FusionVMDKPlugIn (??? - 215242) /Library/Contextual Menu Items/FusionVMDKPlugIn.plugin/Contents/MacOS/FusionVMDKPlugIn
      0x24b000 -   0x24fff7 +org.tigris.scfinderplugin (??? - 169) <BBADB6CA-61AE-24D5-4E0A-EBCCAD3F0D92> /Library/Contextual Menu Items/SCFinderPlugin.plugin/Contents/MacOS/SCFinderPlugin
    0x1464000 -  0x1465ff8 +com.google.GearsEnabler (??? - 1.0) <FB867EC6-4394-4F9D-1F81-B11EC58EF9C6> /Library/InputManagers/*/GearsEnabler.bundle/Contents/MacOS/GearsEnabler
    0x1534000 -  0x15e1ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x1626000 -  0x1626ff8 +com.google.Gears (1.0 - 0.5.33.0) <D080D05A-B4CF-5337-92FF-9BCBC38BB83B> /Library/Internet Plug-Ins/Gears.plugin/Contents/MacOS/libgears.dylib
    0x1a98000 -  0x1daffef +com.google.Gears (1.0 - 0.5.33.0) <37768D61-1192-57BE-038A-90931C2F6082> /Library/Internet Plug-Ins/Gears.plugin/Contents/Resources/Gears.bundle/Contents/MacOS/libgears.d ylib
    0x3e89000 -  0x3e8bfff  libCoreFSCache.dylib (??? - ???) <4D047C6F-11FF-3893-A352-5C1E259C036E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x4352000 -  0x4357fe2  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <C9714E84-87B3-3EF4-A598-758522D1DB25> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x4378000 -  0x4378ffb +cl_kernels (??? - ???) <F9965C87-397D-4BCD-AA8D-4EA8127F33DE> cl_kernels
    0x437a000 -  0x441bff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <6C750910-BE8C-3D26-8272-9C4285153DAF> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0x4435000 -  0x4436ff8 +cl_kernels (??? - ???) <4B178E2D-17A4-4048-837F-1D0A448A2E6F> cl_kernels
    0x4515000 -  0x4516ffb +cl_kernels (??? - ???) <FA4B280C-A3F9-4149-8283-54FED6A4824D> cl_kernels
    0x4537000 -  0x4538ff8 +cl_kernels (??? - ???) <6FB81AB7-BA1C-4AEB-B04B-E6A5A2619587> cl_kernels
    0x45a2000 -  0x45a2ff3 +cl_kernels (??? - ???) <FD177AF7-B058-4D8D-9710-33F9BBDB1537> cl_kernels
    0x45c0000 -  0x45c0ffb +cl_kernels (??? - ???) <21E66EDD-5E87-4892-A072-AA8ACB34F75F> cl_kernels
    0x45e3000 -  0x45e4ff0 +cl_kernels (??? - ???) <90E3556E-2114-40FC-BC58-6C483C01976F> cl_kernels
    0x56da000 -  0x5779ff7  unorm8_rgba.dylib (1.50.61 - compatibility 1.0.0) <33259C48-4D92-3DB3-BF5E-4D3F1232068C> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x57c9000 -  0x57cffcb +com.roxio.ToastItPlugin (ToastIt 1.1.2 [build 17] - 1.1.2) /Users/USER/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x92c5000 -  0x9432ffc  GLEngine (??? - ???) <C49CCDEA-F23E-30CD-9BCD-FC09C9D07CF4> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x9466000 -  0x955dffb  libGLProgrammability.dylib (??? - ???) <8E592FEB-B6A8-3BFF-828B-B37B05D4D574> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9581000 -  0x95aeff8  GLRendererFloat (??? - ???) <1264885F-1492-3591-BFB1-B671A7B08A29> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x9645000 -  0x98e5fe7  com.apple.ATIRadeonX2000GLDriver (7.12.9 - 7.1.2) <C4F1A9B7-F09E-3B7B-BFBE-54264995843E> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x8fe74000 - 0x8fea69c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x9008fffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90090000 - 0x900f2ffb  com.apple.datadetectorscore (3.0 - 179.4) <12EF80E0-35CC-30A7-942F-2F9E87C4C98C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90400000 - 0x90408ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x90409000 - 0x9047efff  com.apple.Metadata (10.7.0 - 627.20) <1E7C8194-8CE4-3103-A3D1-8913238AF923> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x904cb000 - 0x904d9fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x904da000 - 0x90789ff7  com.apple.AddressBook.framework (6.1 - 1062) <8992D5C7-DC3C-3009-8A9E-A6937B91BB4D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9078a000 - 0x907b8fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <07D9A827-9567-34C2-9022-AF4BF975C9A7> /usr/lib/libSystem.B.dylib
    0x9080b000 - 0x9093effc  com.apple.WebKit2 (7534.52 - 7534.52.7) <CAEA458F-855F-3BE1-B410-E06B31A4BF65> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x9094a000 - 0x90a3aff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x90a3b000 - 0x90a40ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x90a41000 - 0x90a42fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x90a43000 - 0x90a72ff7  libsystem_info.dylib (??? - ???) <B86A363D-6EA2-3A69-A6CB-18B7F98FC61A> /usr/lib/system/libsystem_info.dylib
    0x90d9e000 - 0x90e02ffb  com.apple.Symbolication (1.2 - 89) <98706396-23C9-37FD-9116-E5FD867AD64C> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x90e03000 - 0x90e43ff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x90e46000 - 0x90e4efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90e4f000 - 0x90eb0ffb  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <089D78E0-46A6-38DB-9545-7F35CC815939> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90eb1000 - 0x90eb2fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x90eb3000 - 0x90faaff3  com.apple.PubSub (1.0.5 - 65.28) <D7F21FC5-FE39-3690-B996-F84764CBCFD5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90fab000 - 0x90fc9ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x90fcc000 - 0x90ff4ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x90ff5000 - 0x9101cff3  com.apple.framework.Apple80211 (7.1.1 - 711.1) <E1813F93-544B-3C5F-9833-9F65E69D31E7> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x9101d000 - 0x9102bfff  com.apple.opengl (1.7.5 - 1.7.5) <81166D23-DE8E-3938-AAD3-29B1FA5E446E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9102d000 - 0x9102dffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x91143000 - 0x91148ffb  com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x91196000 - 0x911bbfff  com.apple.datadetectors (3.0 - 172.3) <8E7A0A19-A08F-3047-9080-7E92BA3675DC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x9123b000 - 0x91246ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91251000 - 0x91298fff  com.apple.SystemConfiguration (1.11.1 - 1.11) <CA6CE2B6-DC18-31FF-9668-70BB2FD8D7BB> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91299000 - 0x912aafff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x912ab000 - 0x912d9ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x912da000 - 0x91303ffe  com.apple.opencl (1.50.63 - 1.50.63) <C4EC60D6-9A7C-3CE9-AA80-2F81D9BB4465> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91318000 - 0x91325fff  com.apple.HelpData (2.1.0 - 70) <0145664A-4AD4-3CD3-AAF9-73B9EE906B9D> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91326000 - 0x9132aff7  com.apple.OpenDirectory (10.7 - 146) <3D3D30CE-6D82-3681-AA98-4E3AEFFA4229> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9132b000 - 0x91353ff0  com.apple.CoreServicesInternal (113.8 - 113.8) <9930695C-1C48-329F-93FD-5AEEE2EF942C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x91354000 - 0x913b6ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x913b7000 - 0x913baffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x913bb000 - 0x914b3ff7  libFontParser.dylib (??? - ???) <83E7E71E-D217-3DEE-B288-F5BAE7E118C5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x914b4000 - 0x91548ff7  com.apple.LaunchServices (480.21 - 480.21) <E3621817-B627-3EEC-A7F9-0D45583B7FE8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91dfe000 - 0x91e6bff3  com.apple.CoreSymbolication (2.1 - 71) <EEF34338-3E64-3660-982C-B96BEC4AEB31> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x91e6c000 - 0x91e70ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x91e71000 - 0x91f40fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <8B8A3DD3-BB3D-33FC-A714-81E1B883B155> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91f41000 - 0x9200cfff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x9219e000 - 0x921b7fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <7D458EB4-57CE-305E-99D7-2F06403F8097> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x921b8000 - 0x921f4fff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <AA56493C-D7C6-3D4F-8DC8-855405AFF57B> /usr/lib/libcups.2.dylib
    0x921f5000 - 0x921f5fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x921f6000 - 0x92415ff7  com.apple.imageKit (2.1.1 - 1.0) <9AF0A882-BEAD-3AEC-8A72-497A7C3C2358> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x92440000 - 0x92474ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x92475000 - 0x924c5ff9  com.apple.QuickLookFramework (3.1 - 500.1) <28CB604E-2426-3491-BF16-2CDFD4C392B0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x924c6000 - 0x925d5ff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <90D36793-04A5-3BFF-BE83-EEEDCBEDC756> /usr/lib/libsqlite3.dylib
    0x925d6000 - 0x926acff6  com.apple.QuickLookUIFramework (3.1 - 500.1) <4E259D94-6081-32D7-AD60-565E57B11EBA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x926ad000 - 0x929b7ff3  com.apple.Foundation (6.7.1 - 833.20) <B5092554-485A-3A7D-904B-B04B1EE5C50C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x929b8000 - 0x929f6fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x929f7000 - 0x929feff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x929ff000 - 0x92ae2ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x92ae3000 - 0x92ae3fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92ae4000 - 0x92b28ff3  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <48490EAB-CFD4-33A5-86E6-DE9CA59296A8> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x92b2f000 - 0x92b36ff8  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <89E5FE96-50CF-30F3-B7A6-0B27A584B983> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x92b37000 - 0x92c4efe9  com.apple.WebKit (7534.52 - 7534.52.7) <BC37DBEF-DC40-3FF0-A2EA-7B445FE4A3A8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92c4f000 - 0x932f8eeb  com.apple.CoreGraphics (1.600.0 - ???) <322FC806-0B9F-3A58-8C88-D477E32A50F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x932f9000 - 0x93352ffb  com.apple.coreui (1.2.1 - 164.1) <890E0BE9-3360-3B56-BE46-5A2421875A40> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93353000 - 0x935d8fe3  com.apple.QuickTime (7.7.1 - 2306) <F8C64DC4-3FE4-3A06-B10B-59E7F3BA6FDD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x935d9000 - 0x935ffffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93608000 - 0x936e5ff7  com.apple.backup.framework (1.3.1 - 1.3.1) <01EF61F8-67B3-33CE-9828-80BE67988A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x936e6000 - 0x93727ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <975E4F25-7943-3785-849C-244FF4E77602> /usr/lib/libcurl.4.dylib
    0x9373f000 - 0x9374fff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x93750000 - 0x93751fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93752000 - 0x93758ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x93759000 - 0x937beff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93819000 - 0x93830ff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x93847000 - 0x93850ff3  com.apple.CommonAuth (2.1 - 2.0) <D49B41B1-A5DD-366A-8C30-49E9B875AA13> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9396e000 - 0x9398ffff  com.apple.framework.internetaccounts (1.1 - 2) <943A5FFD-265A-39C2-AABF-713A47AB9943> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x939c1000 - 0x939d4ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3D94520B-C976-370F-AF56-278002BCF11D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x939d5000 - 0x939d9ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x93a91000 - 0x93ba2ff7  libJP2.dylib (??? - ???) <35D120D4-3304-3A02-9259-EB933E74E63A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x93ba3000 - 0x93ba6ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x93ba7000 - 0x93bcafff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93bcb000 - 0x93c1bff4  libTIFF.dylib (??? - ???) <E86EA22A-82C0-3E77-9EAF-739F385790D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93c1c000 - 0x93c47fff  com.apple.GSS (2.1 - 2.0) <05A0171B-76EA-3E4C-8A36-65D1A978AF4B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x93c48000 - 0x93c5dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93c6f000 - 0x93c89fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93c8a000 - 0x93c9afff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x93c9b000 - 0x93cd7ffd  libGLImage.dylib (??? - ???) <8251242B-E04E-3467-BD0F-834578B18AC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93cd8000 - 0x93cdaff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93cdb000 - 0x93cdffff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93ce0000 - 0x93f29ff7  com.apple.JavaScriptCore (7534.52 - 7534.52.7) <19E4C699-A9BA-3FCB-90CC-02C8F0607165> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93f2a000 - 0x93fa5ffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <D5AC5C21-CE1E-333D-94F7-F0F534FD4DC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x93fa6000 - 0x93fa9ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93faa000 - 0x9415eff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9415f000 - 0x94160fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x94161000 - 0x94463fff  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <8094724D-591D-3CC2-81DE-4E3029624E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94464000 - 0x94497fef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x94498000 - 0x9456fffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x94570000 - 0x94573fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x94574000 - 0x9458affe  libxpc.dylib (77.17.0 - compatibility 1.0.0) <E01E0074-0830-3F20-8703-EA7722BFD358> /usr/lib/system/libxpc.dylib
    0x9458b000 - 0x9497efeb  com.apple.VideoToolbox (1.0 - 705.42) <3F12F8A3-ED41-3EAD-A887-B7805353122C> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9497f000 - 0x949c0ff7  com.apple.CoreMedia (1.0 - 705.42) <B45070F1-4097-3BAD-AA7C-0F7AFD6EAC27> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94a9c000 - 0x94aedff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x94aee000 - 0x94af9fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x94afa000 - 0x94afbff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x94afc000 - 0x94b32ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94b33000 - 0x94bc0ff7  com.apple.CoreText (220.11.0 - ???) <4F98D709-75AC-35F0-AD88-8F2C4BD744C0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c6a000 - 0x94cd1fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x94cd2000 - 0x94dbafff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x94e07000 - 0x94f59fff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <7646E131-08EE-3D72-ADA2-4A61C562B36E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94f5a000 - 0x9520cff7  com.apple.security (7.0 - 55010) <BE0350C5-5221-3BFF-B674-646AB1BA0F2E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9523f000 - 0x95247ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x953d3000 - 0x95413ff3  com.apple.corelocation (330.12 - 330.12) <3F6542AA-B0ED-399A-ABD0-AE7205A8B7BA> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x95ae6000 - 0x95aeaffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95b36000 - 0x95b3fffb  com.apple.DisplayServicesFW (2.5.2 - 317) <DF4FCE9C-A4EE-3590-B079-495AC83836EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95b40000 - 0x95b41ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95b42000 - 0x95b4dff4  com.apple.CrashReporterSupport (10.7.2 - 347) <7352D11E-5A9E-3D59-A8C5-F393AA6BA793> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x95b4e000 - 0x95fc3ff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x95fc4000 - 0x95fd3fff  SyndicationUI (??? - ???) <55915323-478A-3D44-9B7B-1E74044DE0A1> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x95fe2000 - 0x96069fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96233000 - 0x96250fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x96251000 - 0x9625ffff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x96260000 - 0x96ceeffe  com.apple.AppKit (6.7.2 - 1138.23) <ADFA8D70-601E-3B5C-96FD-F45F52055CC8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96cef000 - 0x96d04fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96d05000 - 0x96d10ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96d11000 - 0x96d5fff3  com.apple.ImageCaptureCore (3.0.1 - 3.0.1) <DB40F137-4519-339B-81DC-7375B2FE8FD2> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96d60000 - 0x96e20ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <A39EA668-D042-377F-BC81-26748CD57ADC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96e21000 - 0x96e28ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96e29000 - 0x96e81fff  com.apple.HIServices (1.10 - ???) <76B50B43-6CFD-3067-A085-11420FD4FAA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96e82000 - 0x96e82fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96e83000 - 0x96e84ffd  libCVMSPluginSupport.dylib (??? - ???) <96F2F2F4-E7A9-36C8-B1CF-D58AA3DB2B44> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x96e85000 - 0x96e87ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96e99000 - 0x96ea1ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x96ea2000 - 0x96ee0fff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96f98000 - 0x96facff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96fad000 - 0x970d9ff9  com.apple.CFNetwork (520.2.5 - 520.2.5) <02193949-50A8-3CBC-9920-5FCDB8EBE17A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x97164000 - 0x97164fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97168000 - 0x9716bffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9716c000 - 0x97173ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x97174000 - 0x97178fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9718a000 - 0x971cdffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x972fd000 - 0x97d15fff  com.apple.WebCore (7534.52 - 7534.52.12) <030C9025-A4E5-3B92-A201-C613EC4310E9> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97d2a000 - 0x97d57ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x97d58000 - 0x97dc0ff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x97dc1000 - 0x97e11fff  libFontRegistry.dylib (??? - ???) <81E03B82-1F31-3702-97DC-BE20298E326F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97e12000 - 0x97e20ff7  libxar.1.dylib (??? - ???) <9BD02F7B-6688-3504-B53E-4158F61C1249> /usr/lib/libxar.1.dylib
    0x97e21000 - 0x97f41fec  com.apple.vImage (5.1 - 5.1) <008B989F-F080-398E-ACB1-FBF5BA107D6D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97f81000 - 0x980e2ffb  com.apple.QuartzCore (1.7 - 270.0) <0916DA83-6400-3FEA-BC53-5F4BA4D126EC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x980e3000 - 0x98108ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98109000 - 0x9810cff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x981d9000 - 0x98255ffd  com.apple.PDFKit (2.6.1 - 2.6.1) <7BC3186B-80B7-3E68-AFDD-2734164BCCFB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x98256000 - 0x98256fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x98257000 - 0x98257fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x98262000 - 0x98264ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x98265000 - 0x98741ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x98742000 - 0x9874dffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9875d000 - 0x987acffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98803000 - 0x9882dff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x9882e000 - 0x9884bff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9884c000 - 0x9886bfff  com.apple.RemoteViewServices (1.2 - 39) <C7B638D2-2F8B-3A45-916A-73103FADC822> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x98887000 - 0x9891eff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x989b2000 - 0x989b7ffd  libGFXShared.dylib (??? - ???) <820D744C-C641-3918-A72A-AC2E5276BCB6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x989b8000 - 0x989d4ff5  com.apple.GenerationalStorage (1.0 - 125) <F1D67293-9192-367D-AE74-2732B23E7E77> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x989db000 - 0x989dbff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x989dc000 - 0x989ecfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x99756000 - 0x9975cffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x999c1000 - 0x999c1ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x999c2000 - 0x99a26fff  com.apple.framework.IOKit (2.0 - ???) <D14460ED-2B6C-375D-B3A4-B8C82E922666> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x99a40000 - 0x99a41ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x99a42000 - 0x99e44ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x99e45000 - 0x99f54ffb  com.apple.DesktopServices (1.6.1 - 1.6.1) <9F02752A-617B-3AC7-BCA1-F040C105EDDE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x99f55000 - 0x99f5fff0  com.apple.DirectoryService.Framework (10.7 - 146) <EDAEA2B3-2BDE-377D-9170-750DE5753029> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x99f60000 - 0x99f79fff  libPng.dylib (??? - ???) <A83B66DC-302C-3A4C-8107-0E5560708024> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99f7a000 - 0x9a050a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x9a08e000 - 0x9a0b0ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9a0b1000 - 0x9a14cff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9a14d000 - 0x9a507ffb  com.apple.SceneKit (2.1 - 125.1) <7BFC0028-18AC-3B49-8DDC-CB7A7359D4F7> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x9a510000 - 0x9a511ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x9a512000 - 0x9a58aff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9a58b000 - 0x9a761fe3  com.apple.CoreFoundation (6.7.1 - 635.15) <AC9F6462-6315-3D89-8075-D048DB4DBF7E> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9a762000 - 0x9a76bfff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9a76c000 - 0x9a82cfff  com.apple.CoreServices.OSServices (478.29 - 478.29) <EAAAAC1B-2599-3875-9068-DF7E6B5760A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9a82d000 - 0x9a856ffe  com.apple.shortcut (2.0 - 2.0) <7F289D05-DDEC-3993-9F86-0DB896E1E686> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9a90b000 - 0x9a941ff4  com.apple.LDAPFramework (3.0 - 120.1) <EA92FCA5-7A7E-328F-8C7F-4250FCC45879> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9a942000 - 0x9a993ff3  com.apple.CoreMediaIO (210.0 - 3180) <79AA7CA8-FC39-375D-9485-855D302DF7AA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9a997000 - 0x9acd7ffb  com.apple.HIToolbox (1.8 - ???) <DFED9BD0-E142-397B-BE16-16EBCF3CE1EB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9adba000 - 0x9adc4ff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9adc5000 - 0x9b13affb  com.apple.Safari.framework (7534 - 7534.52.7) <2AD786F1-A595-3A4A-BEDC-D788AF362691> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
    0x9b13b000 - 0x9b1c8fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9b1c9000 - 0x9b1c9fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9b1ce000 - 0x9b510fff  com.apple.MediaToolbox (1.0 - 705.42) <5AEFD5BE-6FA3-38F8-966A-B0AB56C472B8> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9b511000 - 0x9b73affb  com.apple.QuartzComposer (5.0 - 236) <7BD138F0-C748-3013-98C0-4D5F5E10B9AB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9b73b000 - 0x9b7dffff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9b7e0000 - 0x9b83dffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9b84a000 - 0x9babdfff  com.apple.CoreImage (7.82 - 1.0.1) <6C99F458-E83A-3538-9B71-2C8BD0C9DCD5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x9babe000 - 0x9babefff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9bafd000 - 0x9c178fe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9c185000 - 0x9c186ff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x9c187000 - 0x9c1befef  com.apple.DebugSymbols (2.1 - 87) <84EF10C9-97C0-3AF5-9545-9F6BD1847090> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9c1bf000 - 0x9c1e1ffe  com.apple.framework.familycontrols (3.0 - 300) <F87D87EF-553A-3165-9C9A-6E117C537FE9> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9c219000 - 0x9c402ff7  com.apple.CoreData (104 - 358.12) <F8AD7990-2C30-31A4-8E78-FA8DD5CF03CC> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9c403000 - 0x9c410fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9c481000 - 0x9c91fff7  com.apple.RawCamera.bundle (3.9.0 - 584) <5CC4C59B-5ECF-9767-2BB1-493AB505F433> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9c920000 - 0x9c98ffff  com.apple.Heimdal (2.1 - 2.0) <DE626683-DF32-341B-8997-AE63309590C7> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9c9aa000 - 0x9cb0cfff  com.apple.QTKit (7.7.1 - 2306) <5A7E5ED0-C4DC-3CEC-ABE0-24899134ACE1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9cb0d000 - 0x9cb10ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9cb11000 - 0x9cb5aff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9cb5b000 - 0x9cb66ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <5635DF40-8D8E-3B8C-B075-7B3FC0F184A4> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 15
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 6376
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=199.2M resident=142.5M(72%) swapped_out_or_unallocated=56.7M(28%)
    Writable regions: Total=150.7M written=22.7M(15%) resident=79.3M(53%) swapped_out=0K(0%) unallocated=71.4M(47%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  9348K
    CG image                           6444K
    CG raster data                     5040K
    CG shared images                   3512K
    CoreAnimation                      33.8M
    CoreGraphics                          8K
    CoreServices                       3320K
    IOKit                              12.6M
    IOKit (reserved)                    512K        reserved VM address space (unallocated)
    JS JIT generated code               208K
    JS VM register file                4096K
    JS VM register file (reserved)     4096K        reserved VM address space (unallocated)
    JS garbage collector                416K
    MALLOC                             56.3M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=243                        4K
    OpenCL                               72K
    OpenGL GLSL                         988K
    OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
    SQLite page cache                  3072K
    Stack                              70.2M
    VM_ALLOCATE                        16.9M
    __CI_BITMAP                          80K
    __DATA                             10.2M
    __DATA/__OBJC                       188K
    __IMAGE                            1256K
    __IMPORT                             32K
    __LINKEDIT                         43.1M
    __OBJC                             3220K
    __OBJC/__DATA                       168K
    __PAGEZERO                            4K
    __RC_CAMERAS                        236K
    __TEXT                            156.1M
    __UNICODE                           544K
    mapped file                       113.5M
    shared memory                      29.1M
    shared pmap                        5956K
    ===========                      =======
    TOTAL                             593.7M
    TOTAL, minus reserved VM space    589.1M

    /Users/USER/Library/Contextual Menu Items/ExpanDriveCMPlugin.bundle/Contents/MacOS/ExpanDriveCMPlugin
    /Users/USER/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    /Library/Contextual Menu Items/FusionVMDKPlugIn.plugin/Contents/MacOS/FusionVMDKPlugIn
    /Library/Contextual Menu Items/SCFinderPlugin.plugin/Contents/MacOS/SCFinderPlugin
    /Library/InputManagers/*/GearsEnabler.bundle/Contents/MacOS/GearsEnabler
    /Library/Internet Plug-Ins/Gears.plugin/Contents/MacOS/libgears.dylib
    /Library/Internet Plug-Ins/Gears.plugin/Contents/Resources/Gears.bundle/Contents/MacOS/libgears
    You have multiple third party Safari add ons installed which can be responsible for Safari crashing.
    Follow the paths above and move the files in bold print to the Desktop.
    Try Safari. If it doesn't crash, move one set of files back to the original folder, quit then relaunch Safari to test.
    One of or of the plugins are causing an incompatiblity issue with the ToolbarDownloadsButton on Safari.
    Note. The first two lines where you see /Users means those filess are in your Home folder. The rest are at root level.
    For Lion:   To find the Home folder in OS X Lion, open the Finder, hold the Option key, and choose Go > Library
    Process of elimination...

Maybe you are looking for