Where do I need to fix this?

The assignment was:
Create a non-GUI based Java application that calculates weekly pay for an employee. The application should display text that requests the user input the name of the employee, the hourly rate, and the number of hours worked for that week. The application should then print out the name of the employee and the weekly pay amount. In the printout, display the dollar symbol ($) to the left of the weekly pay amount and format the weekly pay amount to display currency. The Payroll Program application should continue to request employee information until the user enters stop as the employee name. In addition, program the application to check that the hourly rate and number of hours worked are positive numbers. If either the hourly rate or the number of hours worked is not a positive value, the application should prompt the user to enter a positive amount.
I did the assignment but my instructor told me:
"I’m sorry to say there were a number of problems with your program this week. To start, your program compiled and run, but it hung instantly. This was due to an incorrect semi-colon that was in place after the while statement. I had a tough time tracking that one down! Once I did, your program ran as expected...
...You did have one issue with your code, and this is due to the scanner object. First of all, I moved the creation of the scanner object outside of the while loop. It probably would work just fine to have it in there, but there is no need to recreate the scanner on every single iteration of the loop. This would eat up resources. I didn’t take any points off for this, just wanted to point it out so you would know in the future.
The main problem is when you read in numbers and don’t get the end line then your program goes through to the next statement in the loop and finds that there is still an endline character out there, so you don’t get to put anything in, and it prints out the next ‘please enter …’ line.
To fix this, add a statement
Input.nextLine() at the end of your else statement inside of your while loop. This way it will ‘clear the buffer.’
Here is the output I got when running your program and making fixes along the way. The line that says
TEST
Was something I added just to make sure I was getting to a specific place...."
I already was graded on the project but I want to know where this fix needs to be done. Here is the code:
// Payroll program2 created by Michelle Groves
// Last edited April03 09
import java.util.Scanner; // program uses Scanner
public class PayrollProgram2
// main method begins program execution
public static void main( String args[] )
System.out.println( "Welcome to the Payroll Program!" );
boolean stop = false; // loop until user enters stop
while (!stop);
// create scanner to obtain input from command window
Scanner input = new Scanner( System.in );
System.out.println();
System.out.println( "Please enter employee's name:" );
String employeeName = input.nextLine(); // employee name
if ( employeeName.equals ( "stop" ) )
System.out.println( "End of program" ); // stop ends program
stop = true;
else
double hourlyRate;
double hoursWorked;
System.out.println( "Please enter hourly pay:" );
hourlyRate = input.nextDouble();
while ( hourlyRate <= 0 ) // loop until positive number entered
System.out.print( "Hourly rate must be a positive number. " +
"Please enter the hourly pay: " ); // prompt for positive number
hourlyRate = input.nextDouble();
System.out.println( "Please enter hours worked:" );
hoursWorked = input.nextDouble();
while (hoursWorked <= 0) // loop until positive number entered
System.out.print( "Hours worked must be a positive number. " +
"Please enter hours worked: " );
hoursWorked = input.nextDouble();
double employeePay = hourlyRate * hoursWorked; // calculate weeks pay
System.out.printf( "This weeks pay for %s is $%.2f",
employeeName, employeePay );
// Display ending message:
System.out.println( "End of program" );
System.out.println();
} // end method
} // end class

This is my code again, just a little more readable:
// Payroll program2 created by Michelle Groves
// Last edited April03 09
import java.util.Scanner; // program uses Scanner
public class PayrollProgram2
// main method begins program execution
public static void main( String args[] )
System.out.println( "Welcome to the Payroll Program!" );
boolean stop = false; // loop until user enters stop
while (!stop);
// create scanner to obtain input from command window
Scanner input = new Scanner( System.in );
System.out.println();
System.out.println( "Please enter employee's name:" );
String employeeName = input.nextLine(); // employee name
if ( employeeName.equals ( "stop" ) )
System.out.println( "End of program" ); // stop ends program
stop = true;
else
double hourlyRate;
double hoursWorked;
System.out.println( "Please enter hourly pay:" );
hourlyRate = input.nextDouble();
while ( hourlyRate <= 0 ) // loop until positive number entered
System.out.print( "Hourly rate must be a positive number. " +
"Please enter the hourly pay: " ); // prompt for positive number
hourlyRate = input.nextDouble();
System.out.println( "Please enter hours worked:" );
hoursWorked = input.nextDouble();
while (hoursWorked <= 0) // loop until positive number entered
System.out.print( "Hours worked must be a positive number. " +
"Please enter hours worked: " );
hoursWorked = input.nextDouble();
double employeePay = hourlyRate * hoursWorked; // calculate weeks pay
System.out.printf( "This weeks pay for %s is $%.2f",
employeeName, employeePay );
// Display ending message:
System.out.println( "End of program" );
System.out.println();
} // end method
} // end class

Similar Messages

  • I need help fixing this... i can't get PDF to open

    [2011-08-07:20:00:49] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-08-07:20:00:49] Runtime Installer end with exit code 0
    [2011-08-07:20:00:49] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-07:20:00:49] Commandline is: -installupdatecheck
    [2011-08-07:20:00:49] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-07:20:00:49] Performing pingback request
    [2011-08-07:20:00:50] Pingback request completed with HTTP status 200
    [2011-08-07:20:00:50] Starting runtime background update check
    [2011-08-07:20:00:50] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.0.19530/update
    [2011-08-07:20:00:50] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.0.19530/update to C:\Users\Troy M\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-08-07:20:00:50] Runtime update not available
    [2011-08-07:20:00:50] Unpackaging cancelled
    [2011-08-07:20:00:50] Runtime Installer end with exit code 0
    [2011-08-07:20:01:23] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-07:20:01:23] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\SalesReceiptReport_08082011_010122AM.pdf"
    [2011-08-07:20:01:23] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-07:20:01:24] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/SalesReceiptReport_080820 11_010122AM.pdf to C:\Users\Troy M\AppData\Local\Temp\fla54C3.tmp
    [2011-08-07:20:01:24] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-07:20:01:29] Application Installer end with exit code 7
    [2011-08-07:20:01:33] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-07:20:01:33] Commandline is: -arp:uninstall
    [2011-08-07:20:01:33] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-07:20:01:37] Relaunching with elevation
    [2011-08-07:20:01:37] Launching subprocess with commandline c:\program files (x86)\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-08-07:20:01:37] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-07:20:01:37] Commandline is: -stdio \\.\pipe\AIR_2996_0 -eu
    [2011-08-07:20:01:37] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-07:20:01:37] Starting runtime uninstall. Uninstalling runtime version 2.7.0.19530
    [2011-08-07:20:01:37] Uninstalling product with GUID {FDB3B167-F4FA-461D-976F-286304A57B2A}
    [2011-08-07:20:01:39] Runtime Installer end with exit code 0
    [2011-08-07:20:01:39] Elevated install completed
    [2011-08-07:20:01:39] Runtime Installer end with exit code 0
    [2011-08-08:05:12:23] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:05:12:23] Commandline is: -silent
    [2011-08-08:05:12:23] No installed runtime detected
    [2011-08-08:05:12:23] Starting silent runtime install. Installing runtime version 2.7.0.19530
    [2011-08-08:05:12:24] Installing msi at c:\users\troym~1\appdata\local\temp\airb8a4.tmp\setup.msi with guid {FDB3B167-F4FA-461D-976F-286304A57B2A}
    [2011-08-08:05:12:43] Runtime Installer end with exit code 0
    [2011-08-08:05:14:53] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:05:14:53] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\SalesReceiptReport_08082011_101451AM.pdf"
    [2011-08-08:05:14:53] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:05:14:54] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/SalesReceiptReport_080820 11_101451AM.pdf to C:\Users\Troy M\AppData\Local\Temp\fla1120.tmp
    [2011-08-08:05:14:54] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:05:15:01] Application Installer end with exit code 7
    [2011-08-08:05:16:11] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:05:16:11] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\ShowSummaryReport_08082011_101610AM.pdf"
    [2011-08-08:05:16:11] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:05:16:11] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/ShowSummaryReport_0808201 1_101610AM.pdf to C:\Users\Troy M\AppData\Local\Temp\fla3F41.tmp
    [2011-08-08:05:16:11] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:05:16:16] Application Installer end with exit code 7
    [2011-08-08:06:29:43] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:29:43] Commandline is: "C:\Users\Troy M\Documents\hs_11jul.pdf"
    [2011-08-08:06:29:43] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:29:44] Unpackaging file:///C:/Users/Troy%20M/Documents/hs_11jul.pdf to C:\Users\Troy M\AppData\Local\Temp\fla13FC.tmp
    [2011-08-08:06:29:45] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:29:46] Application Installer end with exit code 7
    [2011-08-08:06:30:25] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:30:25] Commandline is:
    [2011-08-08:06:30:25] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:30:28] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-08-08:06:30:28] Runtime Installer end with exit code 0
    [2011-08-08:06:30:29] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:30:29] Commandline is: -installupdatecheck
    [2011-08-08:06:30:29] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:30:29] Performing pingback request
    [2011-08-08:06:30:29] Pingback request completed with HTTP status 200
    [2011-08-08:06:30:29] Starting runtime background update check
    [2011-08-08:06:30:29] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.0.19530/update
    [2011-08-08:06:30:29] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.0.19530/update to C:\Users\Troy M\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-08-08:06:30:30] Runtime update not available
    [2011-08-08:06:30:30] Unpackaging cancelled
    [2011-08-08:06:30:30] Runtime Installer end with exit code 0
    [2011-08-08:06:31:02] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:31:02] Commandline is: "C:\Users\Troy M\Documents\hs_11jul.pdf"
    [2011-08-08:06:31:02] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:31:02] Unpackaging file:///C:/Users/Troy%20M/Documents/hs_11jul.pdf to C:\Users\Troy M\AppData\Local\Temp\fla43F2.tmp
    [2011-08-08:06:31:02] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:31:05] Application Installer end with exit code 7
    [2011-08-08:06:31:08] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:31:08] Commandline is: "C:\Users\Troy M\Documents\hs_11jul.pdf"
    [2011-08-08:06:31:08] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:31:08] Unpackaging file:///C:/Users/Troy%20M/Documents/hs_11jul.pdf to C:\Users\Troy M\AppData\Local\Temp\fla5C13.tmp
    [2011-08-08:06:31:08] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:31:10] Application Installer end with exit code 7
    [2011-08-08:06:31:25] Runtime Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:31:25] Commandline is: -arp:uninstall
    [2011-08-08:06:31:25] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:31:27] Runtime Installer end with exit code 6
    [2011-08-08:06:32:54] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:32:54] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\ShowSummaryReport_08082011_113253AM.pdf"
    [2011-08-08:06:32:54] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:32:55] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/ShowSummaryReport_0808201 1_113253AM.pdf to C:\Users\Troy M\AppData\Local\Temp\flaFB7D.tmp
    [2011-08-08:06:32:55] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:34:32] Application Installer end with exit code 7
    [2011-08-08:06:36:06] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:36:06] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\ShowSummaryReport_08082011_113606AM.pdf"
    [2011-08-08:06:36:06] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:36:06] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/ShowSummaryReport_0808201 1_113606AM.pdf to C:\Users\Troy M\AppData\Local\Temp\flaE83C.tmp
    [2011-08-08:06:36:06] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:36:08] Application Installer end with exit code 7
    [2011-08-08:06:40:11] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:40:11] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\ShowSummaryReport_08082011_114010AM.pdf"
    [2011-08-08:06:40:11] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:40:11] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/ShowSummaryReport_0808201 1_114010AM.pdf to C:\Users\Troy M\AppData\Local\Temp\flaA488.tmp
    [2011-08-08:06:40:11] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:40:17] Application Installer end with exit code 7
    [2011-08-08:06:41:40] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:41:40] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\SalesReceiptReport_08082011_114140AM.pdf"
    [2011-08-08:06:41:40] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:41:40] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/SalesReceiptReport_080820 11_114140AM.pdf to C:\Users\Troy M\AppData\Local\Temp\fla138.tmp
    [2011-08-08:06:41:41] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:42:57] Application Installer begin with version 2.7.0.19530 on Windows 7 x86
    [2011-08-08:06:42:57] Commandline is: "C:\Users\Troy M\PamperedPartnerPlus\workspace\.report\SalesReceiptReport_08082011_114257AM.pdf"
    [2011-08-08:06:42:57] Installed runtime (2.7.0.19530) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-08-08:06:42:57] Unpackaging file:///C:/Users/Troy%20M/PamperedPartnerPlus/workspace/.report/SalesReceiptReport_080820 11_114257AM.pdf to C:\Users\Troy M\AppData\Local\Temp\fla2E11.tmp
    [2011-08-08:06:42:58] Got an unexpected fatal error while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2011-08-08:06:43:02] Application Installer end with exit code 7
    [2011-08-08:06:44:48] Application Installer end with exit code 7

    i have reader... and this is the error message i get when i attempt to open one
    sorry, an error has occured.
    The application could not be installed because the installer file is damaged.  Try obtaining a new installer file from the application author.
    Date: Mon, 8 Aug 2011 11:19:37 -0600
    From: [email protected]
    To: [email protected]
    Subject: I need help fixing this... i can't get PDF to open
    To open files with the .pdf extension, please use http://get.adobe.com/reader/.
    Thanks,
    Chris
    >

  • When I try to share photos on Iphoto a windo comes up and says "The email server didn't recognize your usernme/password combination.   Where do I go to fix this?

    When I try to share photos on IPhoto a window comes up and says "The server didn't recognize your username/password combination."  Where to I go to fix this?

    Hey, click on Iphoto on the top bar.
    Then go to preferences.
    Go to accounts, and change your user name and password for the email.
    Hope this helps.

  • My battery on my iphone theree is growning and it turns off around 80% then in order for it to turn back on i need to put it on the charger , somebody please help me i need to fix this is there anyway  ican??

    my battery on my iphone three is growning and it turns off around 80% then in order for it to turn back on i need to put it on the charger , somebody please help me i need to fix this is there anyway  ican?

    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    If the issue persists, then take the device to Apple for evaluation.
    FYI, Apple will not replace the battery without first doing basic troubleshooting or testing the battery.

  • Well my ipod 4th gen was updated it shut off and now when i try to turn it on it stays on the apple logo for abit then gets stuck on a white screen od blue or mixed colores i really need help fixing this plzz help :(

    Well my ipod 4th gen was updated it shut off and now when i try to turn it on it stays on the apple logo for abit then gets stuck on a white screen od blue or mixed colores i really need help fixing this plzz help

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Ok so I am having issues with charging my iPad as well. So I took advice from this forum and yes, if you turn the brightness down my iPad charges. Thanks Apple I just went and spent money on a new charger I didn't need. Really you need to fix this issue.

    Ok so I am having issues with charging my iPad as well. So I took advice from this forum and yes, if you turn the brightness down my iPad charges. Thanks Apple I just went and spent money on a new charger I didn't need. Really you need to fix this issue.

    Wow. Okay...
    I'll let the real veterans in this forum tackle your issues one after the other. But, I can tell you, all will be well.
    My only comment would be re: your computer specs:
    BJReis wrote:
    .  This may be due to somewhat older equipment:
    GHz Intel Core Duo MacBook Pro with a 4GB memory computer with Ddr3 running OSX 10.8.4
    To be completely honest, FCPX is a RAM hog. It just is. But, RAM is relatively cheap, and the pay-off is good.
    4GB is right on the edge, IMHO. 16G is ideal.
    I wish you luck, hang in there, and standby for more help.

  • I am in password/Apple ID ****! The Apple ID that is showing up on my iPod is one I can't find the password for. I need to fix this since I reset the iPod and can't get my apps back until I can get it to accept a password. What can I do to?

    My iPod touch has an Apple ID that I haven't used for a while. It won't accept the password I had for it, and won't accept a new one either. I got a new one following the instructions, and it won't accept the new one either. I need to get this fixed and I'm getting nowhere! Please help.

    Are you running into the Activation Lock?
    iCloud: Find My iPhone Activation Lock in iOS 7
    You have to enter the Apple ID and password last used in Settings>iCloud on the iPod.
    Yo have to recover use of that ID/password
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • I need help fixing this asap

    I'm just new to java so this code is not be the best way to do it but anyways I need to fix the repainting in this asap since its due in about 1 1/2 hrs I tried every thing I know but so far none has worked. I really don't care much about efficiency now. What's wrong with this and how do I fix this?
         public void moveDisc(int n, int s, int d, int x)
              if(s != d) {
                   if(n == 1)
                        transferDisc(s,d);
                   if (n > 1)
                        moveDisc(n-1,s,x,d);
                        transferDisc(s,d);
                        moveDisc(n-1,x,d,s);
         public void transferDisc(int s, int d) {
              cntnt[d][cntnt[d][0]+1] = cntnt[s][cntnt[s][0]];
              cntnt[s][cntnt[s][0]] = 0;
              cntnt[s][0]--;
              cntnt[d][0]++;
              peg[1].removeAll();
              peg[2].removeAll();
              peg[3].removeAll();
              for(int y = 1; y < 4; y++) {
                   peg[y].add(Box.createVerticalGlue());
                   for(int x = 7; x > 0; x--) {
                        if(cntnt[y][x] != 0)
                             peg[y].add(discs[cntnt[y][x]]);
              peg[1].repaint();
              peg[2].repaint();
              peg[3].repaint();
              movDisplay.setText(Integer.toString(++ctr));
              try {
                   Thread.sleep(1000);
              } catch(InterruptedException ie) {}
         }

    the peg[] are JPanels.
    I think it's probably in the repaint since the
    program waits for the sum total of the sleeptime and
    does nothing until the time is over then it displays
    the final position after the time is up.Very much possible. You tell the AWT thread to repaint, but right after you tell it to do nothing for a second. It's be easier if there were a correct view-model separation, you could time the changes to the model and the view would paint whatever state the model is in, without the need to wait for anything.

  • In outlook I do not see the clickable icons; however, I see them in internet explorer, so its something with Firefox.What do I need to fix this,I prefer Firefox

    I prefer to use Firefox and would appreciate knowing how to fix this. Thank you.

    I take it you are talking about the '''Microsoft Live Mail''' site?
    '''mail.live.com''' Outlook is a very old phased out name.
    In order to better assist you with your issue please provide us with a screenshot. If you need help to create a screenshot, please see [[How do I create a screenshot of my problem?]]
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. This will help us to visualize the problem.
    Thank you!

  • OS X version 10.8.5; Email problem. Last Email received on my computer was on 5/27/2014. I need to fix this problem. I am receiving mail on my iPhone

    OS X version 10.8.5.
    Last Email was dated 5/27/2014. Can some one help me fix this problem?

    As a test launch iPhoto with the Option key held down and create a new, test library.  Import some photos and test to see if the same problem persists. Does it?

  • Anyone Know how to fix the Poor Connection Message for facetime for ios6. (Apple need to fix this situation)

    Anyone know how to fix this Message when using Facetime on iOS6 ?
    It been so annoying and i can not even facetime with my friend.
    My Connection is fine and everything was fine till Today after updating to iOS6 this message keeps Appearing
    Poor Connection The video will resume automatically when the connection improves.
    This has made facetime completely useless...
    im so annoyed atm from this update. the main feature on the iphone 4/4s/5 will become useless. until apple fix this problem quickly and removing that message.

    Same thing happening here. I had no problems until ios6 was installed.  I have an ipad

  • Apple you need to fix this

    Apple, I know you are here. I know this has been posted before, but I'm going to post this anyway. MAKE IT POSSIBLE TO PLAY MUSIC VIDEOS IN A PLAYLIST. This is ridiculous. I spent a lot of money on an Apple TV to entertain. It's stupid that I have to choose a video after every song, good lord.

    Yes, please send your AppleTV enhancement request to the link Meg provided. Many of us would like to be able to play video playlists from start to finish but if we want this "fixed" we need to make certain that these requests go to the AppleTV product feedback page which is not the same as the Apple Discussions forums (which is where we are right here).

  • When trying to import photos with iPhoto from photoshop.. won't let me keeps saying that the photos are already in the iPhoto library but they are not... need to fix this

    When trying to import photos with iPhoto from photoshop... won't let me keeps saying that the photos are already in the iPhoto library but they are not

    If you are using Photoshop from within iPhoto the following may help with the workflow.  However, we do need to know the answers to the questions posed by Terence and Larry to be able to help you.
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Screenshots are from PSE 10
    Note 1:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    Note 2:  editing a RAW file with either PSE or PS creates a new file which must be saved outside of iPhoto, i.e. the Desktop, and imported as a new photo into the iPhoto Library.

  • Safari crashes without warning almost every time I use it. I really need to fix this!

    Here is my crash report.
    Process:         WebProcess [2514]
    Path: /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8536 (8536.30.1)
    Build Info: WebKit2-7536030001000000~9
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    User ID:         501
    Date/Time:       2014-04-22 10:11:50.058 +1000
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report: 633882 sec
    Crashes Since Last Report: 552
    Per-App Interval Since Last Report: 348853 sec
    Per-App Crashes Since Last Report:   54
    Anonymous UUID: FC077F6B-FA35-AE32-A73E-8A3C0A937D4D
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000028
    VM Regions Near 0x28:
    -->
        __TEXT 000000010ce51000-000000010ce52000 [    4K] r-x/rwx SM=COW /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore 0x00007fff8c952155 JSC::SlotVisitor::drain() + 309
    1   com.apple.JavaScriptCore 0x00007fff8c951a26 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 294
    2   com.apple.JavaScriptCore 0x00007fff8c8fb5ce JSC::Heap::markRoots(bool) + 1630
    3   com.apple.JavaScriptCore 0x00007fff8c8fabf8 JSC::Heap::collect(JSC::Heap::SweepToggle) + 152
    4   com.apple.JavaScriptCore 0x00007fff8c8f9a0b JSC::DefaultGCActivityCallbackPlatformData::timerDidFire(__CFRunLoopTimer*, void*) + 315
    5   com.apple.CoreFoundation 0x00007fff8f7c9804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    6   com.apple.CoreFoundation 0x00007fff8f7c931d __CFRunLoopDoTimer + 557
    7   com.apple.CoreFoundation 0x00007fff8f7aead9 __CFRunLoopRun + 1529
    8   com.apple.CoreFoundation 0x00007fff8f7ae0e2 CFRunLoopRunSpecific + 290
    9   com.apple.HIToolbox 0x00007fff8ef54eb4 RunCurrentEventLoopInMode + 209
    10  com.apple.HIToolbox 0x00007fff8ef54c52 ReceiveNextEventCommon + 356
    11  com.apple.HIToolbox 0x00007fff8ef54ae3 BlockUntilNextEventMatchingListInMode + 62
    12  com.apple.AppKit 0x00007fff8fb4f533 _DPSNextEvent + 685
    13  com.apple.AppKit 0x00007fff8fb4edf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    14  com.apple.AppKit 0x00007fff8fb461a3 -[NSApplication run] + 517
    15  com.apple.WebCore 0x00007fff94d2f4ff WebCore::RunLoop::run() + 63
    16  com.apple.WebKit2 0x00007fff8d348462 WebKit::WebProcessMain(WebKit::CommandLine const&) + 2586
    17  com.apple.WebKit2 0x00007fff8d30ebfd WebKitMain + 285
    18  com.apple.WebProcess 0x000000010ce51e7b 0x10ce51000 + 3707
    19  libdyld.dylib 0x00007fff92ef37e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib 0x00007fff8b3c5d16 kevent + 10
    1   libdispatch.dylib 0x00007fff8da28dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib 0x00007fff8da289ee _dispatch_mgr_thread + 54
    Thread 2:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib 0x00007fff8b3c50fa __psynch_cvwait + 10
    1   libsystem_c.dylib 0x00007fff89e5efe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 0x00007fff8c7cbb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 0x00007fff8c9eebfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    6   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 3:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib 0x00007fff8b3c50fa __psynch_cvwait + 10
    1   libsystem_c.dylib 0x00007fff89e5efe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 0x00007fff8c9519d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore 0x00007fff8c9518b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    6   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   com.apple.JavaScriptCore 0x00007fff8c913a3f JSC::JSActivation::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 703
    1   com.apple.JavaScriptCore 0x00007fff8c952158 JSC::SlotVisitor::drain() + 312
    2   com.apple.JavaScriptCore 0x00007fff8c951a26 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 294
    3   com.apple.JavaScriptCore 0x00007fff8c9518b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    6   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 5:: JavaScriptCore::Marking
    0   com.apple.JavaScriptCore 0x00007fff8c952616 JSC::SlotVisitor::copyAndAppend(void**, unsigned long, JSC::JSValue*, unsigned int) + 230
    1   com.apple.JavaScriptCore 0x00007fff8c9143af JSC::JSArray::visitChildren(JSC::JSCell*, JSC::SlotVisitor&) + 79
    2   com.apple.JavaScriptCore 0x00007fff8c95214d JSC::SlotVisitor::drain() + 301
    3   com.apple.JavaScriptCore 0x00007fff8c951a26 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 294
    4   com.apple.JavaScriptCore 0x00007fff8c9518b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    5   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    7   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib 0x00007fff8b3c3686 mach_msg_trap + 10
    1   libsystem_kernel.dylib 0x00007fff8b3c2c42 mach_msg + 70
    2   com.apple.CoreFoundation 0x00007fff8f7a9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 0x00007fff8f7ae916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 0x00007fff8f7ae0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation 0x00007fff8adc0546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation 0x00007fff8ae1e562 __NSThread__main__ + 1345
    7   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    8   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 7:: WebCore: Scrolling
    0   libsystem_kernel.dylib 0x00007fff8b3c3686 mach_msg_trap + 10
    1   libsystem_kernel.dylib 0x00007fff8b3c2c42 mach_msg + 70
    2   com.apple.CoreFoundation 0x00007fff8f7a9233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 0x00007fff8f7ae916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 0x00007fff8f7ae0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreFoundation 0x00007fff8f7bcdd1 CFRunLoopRun + 97
    6   com.apple.WebCore 0x00007fff94d445e1 WebCore::ScrollingThread::initializeRunLoop() + 273
    7   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    9   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 8:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib 0x00007fff8b3c5322 __select + 10
    1   com.apple.CoreFoundation 0x00007fff8f7edf46 __CFSocketManager + 1302
    2   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    3   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 9:: WebCore: LocalStorage
    0   libsystem_kernel.dylib 0x00007fff8b3c50fa __psynch_cvwait + 10
    1   libsystem_c.dylib 0x00007fff89e5efe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 0x00007fff8c7cbb2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore 0x00007fff94d69d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore 0x00007fff942ba12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    7   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 10:: WebCore: LocalStorage
    0   libsystem_kernel.dylib 0x00007fff8b3c50fa __psynch_cvwait + 10
    1   libsystem_c.dylib 0x00007fff89e5efe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore 0x00007fff8c7cbb2d ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore 0x00007fff94d69d01 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81
    4   com.apple.WebCore 0x00007fff942ba12a WebCore::StorageThread::threadEntryPoint() + 154
    5   com.apple.JavaScriptCore 0x00007fff8ca0425f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib 0x00007fff89e5a7a2 _pthread_start + 327
    7   libsystem_c.dylib 0x00007fff89e471e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib 0x00007fff8b3c56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib 0x00007fff89e5cf4c _pthread_workq_return + 25
    2   libsystem_c.dylib 0x00007fff89e5cd13 _pthread_wqthread + 412
    3   libsystem_c.dylib 0x00007fff89e471d1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib 0x00007fff8b3c56d6 __workq_kernreturn + 10
    1   libsystem_c.dylib 0x00007fff89e5cf4c _pthread_workq_return + 25
    2   libsystem_c.dylib 0x00007fff89e5cd13 _pthread_wqthread + 412
    3   libsystem_c.dylib 0x00007fff89e471d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000000ffffd9dd  rcx: 0x000000014d028000  rdx: 0x0000000000000000
      rdi: 0x0000000151603b11  rsi: 0x000000010cf44e28  rbp: 0x00007fff52dac560  rsp: 0x00007fff52dac530
       r8: 0x00000000000000b3   r9: 0x00007fff52dac500  r10: 0x000000010cf32000  r11: 0x000000014d06cbd8
      r12: 0x000000010cf44e28  r13: 0xffff000000000002  r14: 0x000000010cf44c40  r15: 0x00007fff78d3fa28
      rip: 0x00007fff8c952155  rfl: 0x0000000000010287  cr2: 0x0000000000000028
    Logical CPU: 2
    Binary Images:
           0x10ce51000 -        0x10ce51fff com.apple.WebProcess (8536 - 8536.30.1) <F967F09F-969C-3788-9376-7B4067F402B4> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcess
           0x10ce55000 -        0x10ce55fff WebProcessShim.dylib (7536.30.1) <15AC7990-1B63-3AD9-905F-7331C901A578> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x14fdd3000 -        0x14fde9fff com.apple.WebInspector (8536 - 8536.30) <7DD903D1-505E-34D3-835A-15BE44CC49B6> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x15086a000 -        0x15086ffff com.apple.IOAccelerator (74.5.1 - 74.5.1) <574EC60B-E292-3FEA-8A66-B12DB2C1CEC5> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x150877000 -        0x150883fff libGPUSupportMercury.dylib (8.9.2) <971EDFC6-3E6A-375C-9133-F50DFDDCEBDD> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x15088b000 -        0x1508b6fff GLRendererFloat (8.9.2) <18D6F0AD-C5F1-3E8F-89C2-89426A3D6FE4> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1508bf000 -        0x1508c8fe7 libcldcpuengine.dylib (2.2.16) <B6E3B14B-1EAC-3FDD-8AED-87231A033BED> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x150c99000 -        0x150cafff7 com.apple.webcontentfilter.framework (3.1 - 5) <B9C18026-4D06-3C13-8842-15C190E214E5> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x151830000 -        0x1519eefff GLEngine (8.9.2) <420E03C3-B91D-33C7-A1C4-BE60A1544971> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x151a25000 -        0x151b95fff libGLProgrammability.dylib (8.9.2) <83DBCC22-F711-3F9D-B622-6DE5D9DD90AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x151bcd000 -        0x152055ff7 com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.12.47 - 8.1.2) <ED3787B7-1558-3C4C-8F84-7E810A27FF7E> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
           0x153806000 -        0x153807ff7 ATSHI.dylib (341.1) <6860AB9D-27E6-3516-91BF-05E4B9E8A8F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
        0x7fff6ca51000 -     0x7fff6ca8593f dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff886f5000 -     0x7fff8881fff7 com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88820000 -     0x7fff88820fff com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88821000 -     0x7fff88872ff7 com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff88873000 -     0x7fff8887efff com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8887f000 -     0x7fff888d6ff7 com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff888d7000 -     0x7fff88912fff com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff88913000 -     0x7fff8896dff7 com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8896e000 -     0x7fff8896fff7 libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff88970000 -     0x7fff88c41ff7 com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff88c42000 -     0x7fff88c46fff libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88c82000 -     0x7fff88cc2ff7 com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff88d1d000 -     0x7fff88f9efff com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff88f9f000 -     0x7fff8912afff com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8912b000 -     0x7fff89135fff com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff89136000 -     0x7fff8913bfff libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8913c000 -     0x7fff898e3fff com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff898e4000 -     0x7fff89903ff7 libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff89904000 -     0x7fff89cfbfff libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89d44000 -     0x7fff89d4fff7 com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff89d50000 -     0x7fff89e45fff libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff89e46000 -     0x7fff89f12ff7 libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff89f13000 -     0x7fff89f41fff com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff89f42000 -     0x7fff89f73ff7 com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff89f74000 -     0x7fff89fd0fff com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89fd1000 -     0x7fff89fd2fff libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff89fd3000 -     0x7fff89fd8fff com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8a139000 -     0x7fff8a13aff7 libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a148000 -     0x7fff8a17fff7 libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff8a1c8000 -     0x7fff8a1cbfff libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8a1ce000 -     0x7fff8a2ccfff com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8a2cd000 -     0x7fff8a34cff7 com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a34d000 -     0x7fff8a360ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8a361000 -     0x7fff8a36dfff libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8a7a9000 -     0x7fff8a7e3ff7 com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a7e4000 -     0x7fff8a959ff7 com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8a999000 -     0x7fff8a9a2ff7 com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8a9a3000 -     0x7fff8a9a4fff libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
        0x7fff8a9a5000 -     0x7fff8a9a9fff com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8a9aa000 -     0x7fff8aa06ff7 com.apple.Symbolication (1.3 - 93) <C0FEE99C-6AD9-35D7-9B41-574F25F843B9> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8aa62000 -     0x7fff8ac10fff com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ac11000 -     0x7fff8ac15ff7 com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8ac16000 -     0x7fff8ad87ff7 com.apple.QTKit (7.7.1 - 2599.31) <E088A52C-914C-3BD7-AD50-CD40CA5D1308> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8ad88000 -     0x7fff8b0e7fff com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8b179000 -     0x7fff8b1a2fff libsandbox.1.dylib (220.3) <2C26165F-C3D5-3458-8D3E-EE748A3DA19A> /usr/lib/libsandbox.1.dylib
        0x7fff8b1a3000 -     0x7fff8b213fff com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8b214000 -     0x7fff8b263ff7 libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8b264000 -     0x7fff8b2c3fff com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b2c4000 -     0x7fff8b308fff libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff8b309000 -     0x7fff8b35ffff com.apple.HIServices (1.20 - 417) <BCD36950-013F-35C2-918E-05A93A47BE8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b365000 -     0x7fff8b3b2fff com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8b3b3000 -     0x7fff8b3ceff7 libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8b3cf000 -     0x7fff8b3dcfff libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8b3de000 -     0x7fff8bd6e4af com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8bd6f000 -     0x7fff8bda5fff com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8be5f000 -     0x7fff8be6cfff com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8be6d000 -     0x7fff8be88ff7 com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8be89000 -     0x7fff8be8ffff com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bec5000 -     0x7fff8befdfff libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff8befe000 -     0x7fff8bf02fff libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8bf03000 -     0x7fff8bf66ff7 com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8bf69000 -     0x7fff8bf93ff7 com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8bf94000 -     0x7fff8bf95fff libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8bfea000 -     0x7fff8c13cfff com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c13d000 -     0x7fff8c14cfff com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8c156000 -     0x7fff8c175ff7 com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8c176000 -     0x7fff8c23bff7 com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c246000 -     0x7fff8c268ff7 libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff8c269000 -     0x7fff8c307ff7 com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8c308000 -     0x7fff8c32dff7 libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8c32e000 -     0x7fff8c32efff com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8c380000 -     0x7fff8c697ff7 com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c698000 -     0x7fff8c6a3ff7 com.apple.DisplayServicesFW (2.7.2 - 357) <8AE56B58-A521-3F29-AAE2-10ADADBD30EA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8c6a4000 -     0x7fff8c6bbfff com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8c6bc000 -     0x7fff8c6caff7 libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8c729000 -     0x7fff8c7c4fff com.apple.CoreSymbolication (3.0 - 117) <50716F74-41C2-3BB9-AC16-12C4D4C2DD1E> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8c7c5000 -     0x7fff8ca60ff7 com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8ca61000 -     0x7fff8caa9fff libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8caaa000 -     0x7fff8cac1fff libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8cac2000 -     0x7fff8cb30ff7 com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8cb31000 -     0x7fff8cb46fff com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8cb61000 -     0x7fff8cb6fff7 libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff8ccca000 -     0x7fff8d0e7fff FaceCoreLight (2.4.1) <DDAFFD7A-D312-3407-A010-5AEF3E17831B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d0e8000 -     0x7fff8d0effff com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8d0f0000 -     0x7fff8d0f6fff libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8d0f7000 -     0x7fff8d129fff com.apple.framework.Admin (12.1 - 12.1) <2DA7835C-D3AB-3512-BDC1-03F437270772> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8d244000 -     0x7fff8d430ff7 com.apple.WebKit2 (8536 - 8536.30.1) <5A3C2412-FF47-3160-9634-32222C98D887> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8d431000 -     0x7fff8d631fff libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8d632000 -     0x7fff8d635ff7 com.apple.LoginUICore (2.1 - 2.1) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8d6c6000 -     0x7fff8d72ffff libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8d730000 -     0x7fff8d850fff com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8d851000 -     0x7fff8d923ff7 com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8d924000 -     0x7fff8d98cfff libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8d98d000 -     0x7fff8d9faff7 com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8da04000 -     0x7fff8da0eff7 com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8da24000 -     0x7fff8da39ff7 libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8da3a000 -     0x7fff8da3cfff com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8da3d000 -     0x7fff8da3dfff com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8da3e000 -     0x7fff8da89fff com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8da8a000 -     0x7fff8daabff7 libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8daac000 -     0x7fff8dab7ff7 com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8dab8000 -     0x7fff8dcedff7 com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8dcf4000 -     0x7fff8dcf6fff libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8dcf7000 -     0x7fff8dd51fff com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8dd52000 -     0x7fff8dd5afff liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8dd5b000 -     0x7fff8dd90ff7 libTrueTypeScaler.dylib (84.6) <635BEEBD-7969-3083-8B1A-D49E9DA81517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8dd91000 -     0x7fff8dea992f libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8deaa000 -     0x7fff8e159fff com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8e15a000 -     0x7fff8e170fff com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8e171000 -     0x7fff8e180ff7 libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8e1dc000 -     0x7fff8e1e4ff7 libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e26f000 -     0x7fff8e273fff libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8e274000 -     0x7fff8e296ff7 com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e2a8000 -     0x7fff8e2b3fff libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8e2b4000 -     0x7fff8e6f0fef com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8e6f1000 -     0x7fff8e746ff7 libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8e747000 -     0x7fff8e74afff com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8e74b000 -     0x7fff8e74dff7 libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8e74e000 -     0x7fff8e750fff com.apple.securityhi (4.0 - 55002) <A91F8981-ECB6-3B65-A7BA-8DCBD9CCE3D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8e7df000 -     0x7fff8e82bff7 libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff8e82c000 -     0x7fff8e833fff libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8e834000 -     0x7fff8e883ff7 libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e884000 -     0x7fff8eb48fff com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8eb49000 -     0x7fff8eb74fff libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8ed61000 -     0x7fff8ede2fff com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8ede3000 -     0x7fff8ee04fff com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8ee05000 -     0x7fff8ee09fff libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8ee0a000 -     0x7fff8ee0ffff libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8eee9000 -     0x7fff8eef4ff7 com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8eef5000 -     0x7fff8f225fff com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8f233000 -     0x7fff8f335fff libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f336000 -     0x7fff8f5edff7 com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8f5ee000 -     0x7fff8f67bff7 com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f67c000 -     0x7fff8f67cfff com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8f74c000 -     0x7fff8f778fff com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8f779000 -     0x7fff8f963ff7 com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8f964000 -     0x7fff8f964ffd com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8f997000 -     0x7fff8f9d1fff com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8f9d2000 -     0x7fff8f9f9ff7 com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8f9fa000 -     0x7fff90627fff com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff90628000 -     0x7fff9063efff com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff9063f000 -     0x7fff906bfff7 com.apple.ApplicationServices.ATS (332 - 341.1) <39B53565-FA31-3F61-B090-C787C983142E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90ea6000 -     0x7fff90ea6fff com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90ea7000 -     0x7fff90f00ff7 com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff90f01000 -     0x7fff9115cff7 com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff9115f000 -     0x7fff91173fff com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff91174000 -     0x7fff91174fff com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff91183000 -     0x7fff91189ff7 libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff9118a000 -     0x7fff911b8ff7 libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff9123c000 -     0x7fff9123cfff com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff9123d000 -     0x7fff9133aff7 libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff9133e000 -     0x7fff91374fff libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff91375000 -     0x7fff9187cff7 com.apple.Safari.framework (8536 - 8536.30.1) <5C62034A-BAA0-32BB-84C2-2559389B72C4> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff9187d000 -     0x7fff91a18fef com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff91a19000 -     0x7fff91a5cff7 com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff91a5d000 -     0x7fff91b68fff libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff91b69000 -     0x7fff91b6bff7 com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff91b6c000 -     0x7fff91b79ff7 com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff91b7a000 -     0x7fff91b8bff7 libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff91b91000 -     0x7fff91c2bfff libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff91c2c000 -     0x7fff91c2efff com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff91c2f000 -     0x7fff91e99fff com.apple.RawCamera.bundle (4.05 - 690) <811A4D96-D91B-39AE-A9DC-652E3EB8937E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff91e9a000 -     0x7fff91eadff7 libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff91eae000 -     0x7fff91ecefff libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff91ecf000 -     0x7fff91fe8fff com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff91fe9000 -     0x7fff920bcff7 com.apple.DiscRecording (7.0 - 7000.2.4) <6DCA9535-E276-3D77-BEB3-296B537AA6BB> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff920cf000 -     0x7fff920d1fff libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff920d2000 -     0x7fff920e0fff libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff920e1000 -     0x7fff920e5fff libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff920e6000 -     0x7fff92197fff com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff92198000 -     0x7fff9224bff7 com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff92b1b000 -     0x7fff92b42fff com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff92b43000 -     0x7fff92b86ff7 com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff92b87000 -     0x7fff92b8afff libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff92bc6000 -     0x7fff92bc8ff7 com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff92c6b000 -     0x7fff92caaff7 com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff92cab000 -     0x7fff92cc5fff com.apple.CoreMediaAuthoring (2.1 - 914) <5637F52D-3AB9-38FD-B851-265B9F5A2FE8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff92cc6000 -     0x7fff92cd2ff7 com.apple.DirectoryService.Framework (10.8 - 151.10) <5AA375C4-9FD4-3F4F-849D-0329E0D5DC04> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff92cee000 -     0x7fff92debfff libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff92dec000 -     0x7fff92dedfff liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff92dee000 -     0x7fff92ef0fff libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff92ef1000 -     0x7fff92ef4ff7 libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff9314d000 -     0x7fff93197ff7 libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff93199000 -     0x7fff9321bff7 com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9321c000 -     0x7fff93220ff7 com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff93221000 -     0x7fff9333bfff com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff9333c000 -     0x7fff93346fff libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
        0x7fff93347000 -     0x7fff93438ff7 com.apple.DiskImagesFramework (10.8.3 - 345) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff93439000 -     0x7fff934cdff7 com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff934f1000 -     0x7fff93677fff libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff93678000 -     0x7fff93678fff com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff93679000 -     0x7fff9391dff7 com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff939be000 -     0x7fff939fbfef libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff939fc000 -     0x7fff93ad6fff com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff93ad7000 -     0x7fff93b03ff7 libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff93d7a000 -     0x7fff93e09fff libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
        0x7fff93e0a000 -     0x7fff93e31ff7 com.apple.PerformanceAnalysis (1.16 - 16) <E8DA9FDB-3A58-3934-A7C9-2728B683D741> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff93e32000 -     0x7fff93e5efff com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff93e5f000 -     0x7fff93eb6ff7 com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff93ec3000 -     0x7fff94021fef com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff94022000 -     0x7fff94025fff com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff94026000 -     0x7fff9408eff7 libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff9408f000 -     0x7fff940c3fff com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff940c4000 -     0x7fff940c4fff libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff9411c000 -     0x7fff941d9ff7 com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff941da000 -     0x7fff941e1fff com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff941e2000 -     0x7fff941ffff7 com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff94200000 -     0x7fff94201ff7 libSystem.B.dylib (169.3) <5ED23C27-47AF-3C93-984A-172751CF745A> /usr/lib/libSystem.B.dylib
        0x7fff9421e000 -     0x7fff9421fff7 libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff94220000 -     0x7fff94232ff7 libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff94233000 -     0x7fff94282fff com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff94283000 -     0x7fff9429afff com.apple.CFOpenDirectory (10.8 - 151.10) <F7AD9844-559A-366E-8192-BB4FCF9EE7A3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff9429b000 -     0x7fff9525aff7 com.apple.WebCore (8536 - 8536.30.2) <3FF4783B-EF75-34F5-995C-316557148A18> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff9525b000 -     0x7fff9525bfff com.apple.Carbon (154 - 155) <CC5AA589-242E-3BE1-B776-7D4FFD93D0C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9525c000 -     0x7fff95302ff7 com.apple.CoreServices.OSServices (557.6 - 557.6) <FFDDD2D8-690D-388F-A48F-4750A792D2CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95303000 -     0x7fff9535ffff com.apple.corelocation (1239.40 - 1239.40) <2F743CD8-A9F5-3375-A3B0-BB0D756FC239> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff95360000 -     0x7fff9536efff com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff9536f000 -     0x7fff953bafff com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff953bb000 -     0x7fff953f7fff com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff953f8000 -     0x7fff95420fff libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff955d3000 -     0x7fff955dafff libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff955df000 -     0x7fff955dffff libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff955e0000 -     0x7fff955ecfff com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff955f5000 -     0x7fff955f6fff libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        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: 1356
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=224.6M resident=189.6M(84%) swapped_out_or_unallocated=35.0M(16%)
    Writable regions: Total=1.3G written=109.7M(8%) resident=143.6M(11%) swapped_out=0K(0%) unallocated=1.1G(89%)
    REGION TYPE VIRTUAL
    =========== =======
    ATS (font support) 31.8M
    ATS (font support) (reserved) 4K        reserved VM address space (unallocated)
    CG image 264K
    CG raster data 128K
    CG shared images 1216K
    CoreAnimation 2108K
    CoreServices 1128K
    IOKit 24.6M
    JS JIT generated code 256.0M
    JS JIT generated code (reserved) 768.0M        reserved VM address space (unallocated)
    JS VM register file 4096K
    JS garbage collector 15.2M
    MALLOC 172.1M
    MALLOC guard page 48K
    Memory tag=242 12K
    Memory tag=251 28K
    OpenGL GLSL 1936K
    OpenGL GLSL (reserved) 128K        reserved VM address space (unallocated)
    SQLite page cache 2688K
    STACK GUARD 56.0M
    Stack 13.7M
    VM_ALLOCATE 16.4M
    WebCore purgeable data 528K
    __DATA 20.0M
    __IMAGE 528K
    __LINKEDIT 53.9M
    __TEXT 170.6M
    __UNICODE 544K
    mapped file 92.4M
    shared memory 3468K
    =========== =======
    TOTAL 1.7G
    TOTAL, minus reserved VM space 941.2M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B09, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384A54463235363634485A2D3147364D3120
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x802C, 0x384A54463235363634485A2D3147364D3120
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.4f2 12041, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: HL-DT-ST DVDRW GS31N
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1d181000 / 6
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 4

    Have you tried to open it with a blank HTML page?    You can create one easily with http://www.barebones.com/ Textwrangler, an call it index.html
    All you need is this in your page:
    <HTML>
    <HEAD></HEAD>
    <BODY></BODY>
    </HTML>
    If it opens with a blank page, go into your Safari preferences and empty the cache and cookies of the default page through the security preferences and manage websites button.  That will at least allow you to open the default page.   It might be better if you open on something like http://www.apple.com/ or http://www.google.com/
    If you have a Google account or GMail account, it might be better if you open off Google if the cookie there is getting corrupted.   Note, 10.8.5 is available and offers better security.  Backup your data before updating:
    http://support.apple.com/kb/DL1676
    http://support.apple.com/kb/DL1737

  • URGENT!!! Bios Bug found for P500 series BIOS v2.90. TAIS really needs to fix this!!

    Affected unit: P500-ST6844 PSPGSU-0Q2012
    I have had sleep issues with my laptop since I first purchased it back in 2010. I have made a previous post about it here: http://forums.toshiba.com/t5/Batteries-and-Power/L​aptop-turns-off-instead-of-going-to-sleep/m-p/3101​...
    I recently found some some helpful troubleshooting documents for windows 7 power management on the Microsoft website.  One of the utilities it suggested to use is the PWRTEST.exe included Windows driver SDK. Running PWRTEST /sleep /s:4 results in a successful Hibernate cycle, however running PWRTEST /sleep /s:3 results in:
    NO.0 Transition--TargetState: S3
    Error: Pwrtest tracing might be buffer overflow, and the data of this power is discarded.
        File: d:\5359\base\power\tools\pwrtest\exe\pstrace.cpp
        Line: 1653
        Error Code: 0xc0000001
     importing pwrtest.etl created by the utility into the event viewer reveals bunch of these errors:
    Unexpected GPE event was fired on GPE bits that should be disabled.
    - <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/ev​ent">
    - <System>
    <Provider Name="Microsoft-Windows-Kernel-Acpi" Guid="{c514638f-7723-485b-bcfc-96565d735d4a}" />
    <EventID>2</EventID>
    <Version>0</Version>
    <Level>4</Level>
    <Task>101</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8000000000000001</Keywords>
    <TimeCreated SystemTime="2012-12-23T03:10:45.894731800Z" />
    <EventRecordID>4045</EventRecordID>
    <Correlation />
    <Execution ProcessID="0" ThreadID="0" ProcessorID="3" KernelTime="1572689" UserTime="0" />
    <Channel />
    <Computer>ChrisSolomon-PC</Computer>
    <Security />
    </System>
    - <EventData>
    <Data Name="GpeRegister">3</Data>
    <Data Name="UnexpectedEventMap">142</Data>
    </EventData>
    </Event>
    as well as this error :
    Event xmlns="http://schemas.microsoft.com/win/2004/08/events/ev​ent">
    - <System>
    <Provider Name="" Guid="{f2e0e060-bf32-4b88-b8e4-5cad15af6ae9}" />
    <EventID>0</EventID>
    <Version>0</Version>
    <Level>1</Level>
    <Task>0</Task>
    <Opcode>2</Opcode>
    <Keywords>0x0</Keywords>
    <TimeCreated SystemTime="2012-12-23T03:10:45.852354300Z" />
    <EventRecordID>4043</EventRecordID>
    <Correlation />
    <Execution ProcessID="5644" ThreadID="3088" ProcessorID="0" KernelTime="1925" UserTime="1240" />
    <Channel />
    <Computer>ChrisSolomon-PC</Computer>
    <Security />
    </System>
    - <ProcessingErrorData>
    <ErrorCode>15003</ErrorCode>
    <DataItemName />
    <EventPayload>4F626A656374203D205C5F53422E545641502E5350464300</EventPayload>
    </ProcessingErrorData>
    </Event>
    doing reasearch on the first error reveals that this is caused by a bug in the BIOS.
    the bug causes either one of two things two happen P500 does not enter Sleep (S3) properly, or when S3 is attempted the unit appears to enter S3 successfully, and the led sleep indicator blinks, but when trying to resume from S3, unit starts up from an off state and hangs after Toshiba bios screen is displayed. normal boot operation only occurs after forcing a power down and restarting unit.

    Anyone running windows in the same laptop can check the same issue of battery drain due to WOl being enabled by default - in the Device Manager under the network cards, opening the settings menu for the ethernet wired card the default for Wake-on-LAN on my computer was set to enabled. This can be changed to disabled, and you may need to also disable the setting for Wake on Magic Packet. Also in the Power Management tab it is possible to uncheck the settings for "Allow this device to wake the computer" and "Only allow a magic packet to wake the computer"
    In my laptop these were all set to enabled by default.

Maybe you are looking for

  • Before Firefox 16 I was able to have full transparency and see through to my desktop. Now I am unable to do this but want it back, can I still do this and how?

    Depending on my theme and style I was able to force Firefox to be transparent and work with Aero to show through to my desktop or other windows behind the browser. I really liked this ability, however, sometime after Firefox 16 this stopped working a

  • How can I delete a duplicate drive in the folders area?

    Not sure how I ended up with a shared network drive duplicated under the folders area of Lightroom 3.6.  Maybe it was a user error but now my network drive where I have 15,000 pictures appears twice in the folder area and it is constantly updating (s

  • Apple's Image Capture deleted all my iPhone Videos

    I found out that because I have been using Image Capture to import all my pictures and videos from my 3GS to Aperture 3, with the setting "delete after finishing import" I have actually LOST ALL THE VIDEOS I took in the last months. Including those o

  • Email address

    Hi, I am executing Tran code : PRAA to get vendors based on Emp data. I declared email address under info type 0105.updated Vendor is creating fine  but email address doesn't updated. Email address in Xk01 is smtp_addr, but this filed doesn't find in

  • Transport Requests : Issue

    Hi All, I Transported one request from my development system to the quality system. It showed be that the objects under the requests are transported with warnings!. warnings were there because some objects were there I activated with errors(Activate