I can't understand these code!

October 15, 2002
Tech Tips Quiz
[http://developer.java.sun.com/developer/Quizzes/techtips3/index.html]
public class OverDemo1 {        
// overload methodA between short/int
static void methodA(short s) {
System.out.println(
"methodA(short) called");
static void methodA(int i) {
System.out.println("methodA(int) called");
// overload methodB between float/double
static void methodB(float f) {
System.out.println(
"methodB(float) called");
static void methodB(double d) {
System.out.println(
"methodB(double) called");
public static void main(String args[]) {
// call methodA with char argument
methodA('a'); //methodA(int) called
// call methodB with int argument
methodB(Integer.MAX_VALUE); // methodB(float) called
Why does methodA('a') call methodA(int i)?
How about char and int and short?
int is 32bit,char and short is 16bit.

There is nothing weird.
2**-15<= short <2**15-1
2**-31<= int <2**31-1
0<= char <2**16-1
So you can't converse char to short without loosing of precision.

Similar Messages

  • What is "verzoekcode" ? Where can I find these code ?

    We can not find the request code. Where can I find these request code ?

    https://exception.licenses.adobe.com/aoes/aoes/v1/cst1?locale=en
    Hilfe
    http://helpx.adobe.com/x-productkb/global/service1.html

  • How can I get refund codes back after deleting the e-mail?

    A mistake by iTunes had me purchase Taylor Swift's Red album for full price even though I had previously purchased a few singles. iTunes sent me an e-mail with some refund codes, but I can no longer locate the e-mail. I looked on my account under "Gifts" but they are not there. How can I retrieve these codes?
    Thank you!!

    You'll have to contact the iTunes Store again and ask if they can resend.
    Regards.

  • I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:The disc can't be burned because an unexpected error occurred (error code 0x80020000).

    I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:    The disc can’t be burned because an unexpected error occurred (error code 0x80020000).

    I tried every obvious solution to this problem with different types of disc (-R; +R; -RW and +RW) and the problem persisted.  Then I read about removing a hyphen in picture filenames.  I renamed all the images and bingo there were no further problems.  Apple should have solved this by now.  This error code has been reported for several years and my MacBook Pro is quite new.  Anyway, I hope this helps.  It does work.
    Piggywiggle

  • Can't Understand ADF example code

    Hi All,
    I am trying to learn ADF from the Oracle Tutorial, but I can't understand this loop:
    public Integer getNextLineItem() {
    int maxLineNo = 0;
    for (ServiceHistories
    svh:getServiceRequests().getServiceHistoriesCollection()){
    if (svh.getLineNo() !=null) {
    int testLineNo = svh.getLineNo().intValue();
    if (testLineNo > maxLineNo){
    maxLineNo = testLineNo;
    return ++maxLineNo;
    }

    Hi,
    It is always a best practice to post the required information while posting the questions.
    1. JDeveloper version.
    2. The link to the tutorial you are using.
    From the initial look, the code looks for the rows in the ServiceRequests table (as collection), and gets the linenumber column. Check its value, and returns the max line number +1.
    -Arun

  • Need help to explain these codes!!! Urgently!!!

    Hi anyone who's here to help...I am doing my Final year project report now...i dunno how to explain these codes in word...can anyone tell me what it means? what are these codes for...? what does each paragraph indicate?
    thanks.
    sorry, maybe i only insert pieces of the codes and its vague...ok, in this source code...what i dun understand is....i have cut and paste the sections of codes which i dun understand as below..
    bcoz this codes are passed down from my seniors who had graduated...and my task is to explain these codes in the form of a report without me having any background on programming...i tried asking some frens...its either they dunno or forgotten...this is my last hope...thanks again...thanks..
    * new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;[list]
    **like whats does "thread scroller" means? Looping purpose? what's looping then?
    **also, i've tried on changing the "Loopcounter = 0" to other numbers like 2 and 5...and when i run it on the appletviewer..my image simply runs out of my page...
    [list]
    *And this part...what does it mean?
    /*new added code*/                                      
                public void start() {                    
                if (scroller == null) {               
                scroller = new Thread(this);         
                scroller.start();                          
        } [list]
    for this section here, i really dunno what it says.. "public void start"--start what? scroller again? new Thread(this)?
    [list]
        public void stop() {    
            if (scroller != null) { 
                scroller.stop();   
                scroller = null; 
        } [list]
    I dunno about this section also.. stops wat??
    [list]
        public void run() {                                                           
              try {Thread.currentThread().sleep(100);}                
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {  
              try {Thread.currentThread().sleep(20);} 
                catch (InterruptedException e){}  
              rm.load();       
        } [list]
    wat is it runing here? try? catch? for? wat does it mean?????
    [list]
        public void destroy(){;}                  
        public void update(Graphics g){paint(g);}
    }[list]
    now this.. wat is it destroying?? updateing wat???
    [list]
    this is my whole program like...
    import java.awt.*;     /*Contains all of the classes for creating user
                   interfaces and for painting graphics and images.*/
    import java.applet.*;     /*Provides the classes necessary to create an applet and the
                   classes an applet uses to communicate with its applet context.*/
    /* Loadable is required for RealMedia so that it know that this code
    can load images and sounds and has the startUp() method
    /* HotSpotListener is required to let HotSpot call hotSpotEvent(HotSpot) when it
    has been clicked
    //runnable is for looping purpose ....to animate the text or images.
    public class LibraryTest extends Applet implements Loadable, HotSpotListener, Runnable
         // RealMedia will load and save images and sounds.
         // It will also give information on the loading process.     
         RealMedia rm;
         // Four buttons that can be clicked on.
         HotSpot hs1,hs2,hs3,hs4;
         // 1 will show image 0 and 1 will show image 1.
         int x =0;
    /* new added code */
         Thread scroller;     //for looping purpose
         int loopcounter,count;
         // thread is to allow the program to be called every and then.
         public void init()
              /*new added code */
              loopcounter=0;
              // We'll place the buttons ourselves.
              setLayout(null);
              setBackground(Color.white);
              // create the RealMedia object
              rm = new RealMedia(this);
              //Start adding all image files you will use
              // image0 called pic_black
              rm.add("pic_black.jpg","image0");
              rm.add("EG3165 Tutorial 1.jpg","image0_1");
              rm.add("Question.jpg","image0_2");
              rm.add("Solution.jpg","image0_3");
              rm.add("Exercise.jpg","image0_4");
              //rm.add("cute.gif","image0_5");
              rm.add("mac-win.gif","image0_6");
              rm.add("walking-floppy.gif","image0_7");
              rm.add("eg3165_t001ver03_00.gif","image1");
              rm.add("eg3165_t001ver03_01.gif","image2");
              rm.add("eg3165_t001ver03_02.gif","image3");
              rm.add("eg3165_t001ver03_03.gif","image4");
              rm.add("eg3165_t001ver03_04.gif","image5");
              rm.add("eg3165_t001ver03_05.gif","image6");
              rm.add("eg3165_t001ver03_06.gif","image7");
              rm.add("eg3165_t001ver03_07.gif","image8");
              rm.add("eg3165_t001ver03_08.gif","image9");
              // Start button with 4 images
              // 1 Default state, mouseOver and mouseClick state.
              rm.add("1st.gif");
              rm.add("1st.gif");
              rm.add("1st.gif");
              // 2 Other button
              rm.add("prev.gif");
              rm.add("prev.gif");
              rm.add("prev.gif");
              // 3
              rm.add("next.gif");
              rm.add("next.gif");
              rm.add("next.gif");
              // 4
              rm.add("last.gif");
              rm.add("last.gif");
              rm.add("last.gif");
              // load the images now
              rm.load();
         public void startUp()
              // button 1
              hs1 = new HotSpot(this);
              hs1.setImage(rm.get("1st.gif"),1);
              hs1.setImage(rm.get("1st.gif"),2);
              hs1.setImage(rm.get("1st.gif"),3);
              hs1.setBounds(200,515,40,38);
              // same for button 2
              hs2 = new HotSpot(this);
              hs2.setImage(rm.get("prev.gif"),1);
              hs2.setImage(rm.get("prev.gif"),2);
              hs2.setImage(rm.get("prev.gif"),3);
              hs2.setBounds(250,515,40,38);
              // same for button 3
              hs3 = new HotSpot(this);
              hs3.setImage(rm.get("next.gif"),1);
              hs3.setImage(rm.get("next.gif"),2);
              hs3.setImage(rm.get("next.gif"),3);
              hs3.setBounds(300,515,40,38);
              // same for button 4
              hs4 = new HotSpot(this);
              hs4.setImage(rm.get("last.gif"),1);
              hs4.setImage(rm.get("last.gif"),2);
              hs4.setImage(rm.get("last.gif"),3);
              hs4.setBounds(350,515,40,38);
              // Place them
              add(hs1);
              add(hs2);
              add(hs3);
              add(hs4);
              // Repaint makes sure they are immediately visible.
              hs1.repaint();
              hs2.repaint();
              hs3.repaint();
              hs4.repaint();
         // Here the images are drawn.
         public void paint(Graphics g)
              g.setColor(Color.white);
              // When it is still loading show a loading message.
              if (!rm.isLoaded())
                   g.drawString("loading file "+rm.getCurrent(),20,20);
                   g.drawString("of "+rm.getTotalFiles(),20,40);
                   g.drawString("Percent: "+rm.getPercent(),20,60);
                   g.fillRect(20,80,rm.getPercent(),20);
              // Otherwise draw image1 or 2
              else
                   if (x == 0)
                        //place images using x-coordinates, y-coordinates.
                        g.drawImage(rm.get("image0"),20,20,this);
                        g.drawImage(rm.get("image0_1"),80+loopcounter,100+loopcounter,this);
                        g.drawImage(rm.get("image0_2"),190+loopcounter,175+loopcounter,this);
                        g.drawImage(rm.get("image0_3"),240+loopcounter,220+loopcounter,this);
                        g.drawImage(rm.get("image0_4"),290+loopcounter,265+loopcounter,this);
                        //g.drawImage(rm.get("image0_5"),150+loopcounter,285+loopcounter,this);
                        g.drawImage(rm.get("image0_6"),400,370,200,100,this);
                        g.drawImage(rm.get("image0_7"),100,300,this);
                        loopcounter+=2;
                        if (loopcounter == 50)
                        loopcounter = 0;
         // if loopcounter+=2, coordinate=x+loopcounter, y+loopcounter.
         /* e.g. round 1, loopcounter=0, coordinate=1,3 */
         /* e.g. round 2, loopcounter=2, coordinate=3,5 */
         /* e.g. round 3, loopcounter=4, coordinate=7,9 */
                   else if (x == 1)
                        g.drawImage(rm.get("image1"),20,20,this);
                   else if (x == 2)
                        g.drawImage(rm.get("image2"),20,20,this);
                   else if (x == 3)
                        g.drawImage(rm.get("image3"),20,20,this);
                   else if (x == 4)
                        g.drawImage(rm.get("image4"),20,20,this);
                   else if (x == 5)
                        g.drawImage(rm.get("image5"),20,20,this);
                   else if (x == 6)
                        g.drawImage(rm.get("image6"),20,20,this);
                   else if (x == 7)
                        g.drawImage(rm.get("image7"),20,20,this);
                   else if (x == 8)
                        g.drawImage(rm.get("image8"),20,20,this);
                   else if (x == 9)
                        g.drawImage(rm.get("image9"),20,20,this);
         // This method is called when a button has been clicked.
         public void hotSpotEvent(HotSpot hs)
              // if it was button 1 show image1.
              if (hs == hs1)
                   x = 1;
              // else show image2
              else if (hs == hs2)
                   {x = x - 1;
                   if ( x <= 1 ) x = 1;
              else if (hs == hs3)
                   {x = x + 1;
                   if ( x >= 9 ) x = 9;
              else
                   x = 9;
              // and repaint to show them.
              repaint();
         // Necessary for RealMedia to load your images
         public Image loadImage(String file)
              return getImage(getCodeBase(),file);
         // Also required but not used this time.
         public AudioClip loadAudio(String file)
              return getAudioClip(getDocumentBase(),file);
    /*new added code*/
         public void start() {
                if (scroller == null) {
                scroller = new Thread(this);
                scroller.start();
        public void stop() {
            if (scroller != null) {
                scroller.stop();
                scroller = null;
        public void run() {
              try {Thread.currentThread().sleep(100);}
                catch (InterruptedException e){}
            for (count=0; count <= 400; ) {
              try {Thread.currentThread().sleep(20);}
                catch (InterruptedException e){}
              rm.load();
        public void destroy(){;}
        public void update(Graphics g){paint(g);}
    }

    Thread scroller;//for looping purpose
    **like whats does "thread scroller" means? Looping purpose? what's looping then?So, you don't know what a variable declaration is, and you don't know what looping is, and you're unable to find out other than by having somebody here tell you (your school has no library, no bookstore, and no access to google--only to the Java forums).
    Either your school is absolutely backwards and useless, or you're a stupid lazy git who deserves to fail the course. Either way, somebody here posting an answer for you is not going to help you.
    The following might.
    Sun's basic Java tutorial
    Sun's New To Java Center. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    http://javaalmanac.com. A couple dozen code examples that supplement The Java Developers Almanac.
    jGuru. A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    Bruce Eckel's Thinking in Java (Available online.)
    Joshua Bloch's Effective Java
    Bert Bates and Kathy Sierra's Head First Java. This one has been getting a lot of very positive comments lately.

  • How much does this cost? & I still can't understand how this work

    How much does this cost? & I still can't understand how this work

    Hello mkopti,
    ePrint is a free feature include on most of our wireless printers that are e-all-in-one enabled. It allows you to register your printer on HP's website http://www.eprintcenter.com and create an account. Once an account has been created you can enable the web services feature, after connecting to a valid network with internet access, which will print off a registration code you can use to add the printer to your account and customize an email address for the printer. This allows you to print to the printer from virtually anywhere simply by sending an email to the printers email address and when it is received it will print.
    Most of these printers are also Airprint enabled meaning you can print locally from the same network on the iPad, iPod, and iPhone (version 4.3.2 and higher) by using the built in "Print" command in the idevices.
    If you have any other questions or need clarification feel free to reply to this post and I will try to answer any questions you have.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • I have entererd the wrong E-mail address for my £15iTunes gift card, how can i get my code back so i can put it on the right account?

    i entered the wrong E-mail address when it asked me for my Apple ID, now my card is useless and i dont have the £15 credit i paid for, i was wondering, if i gave you the code, would you be able to trace what address i typed in (Which will be similar to the one i have now) and would you be able to transfter the £15 credit onto my account?
    I can send you the code if you like?
    Many thanks, James Cummings.

    First, you're not communicating with Apple when you post in these forums. The only people who will respond are fellow users and there's nothing we can do directly with this problem.
    But I can tell you that if you redeemed the card through the wrong iTunes Store ID, then sorry, but there's no way to transfer credit from one account to another. You'll have to use the iTunes Store ID under which you redeemed the card to make your purchases. You would not have been able to redeem the card through another account unless you had the password to that account, though, so you may not have actually successfully redeemed the card. Have you tried to redeem it through your "real" iTunes Store account?
    Regards.

  • After updating software on my Apple TV it is asking to connect to iTunes. Can't understand why?

    After updating software on my Apple TV it is asking to connect to iTunes. Can't understand why?

    You can try borrowing one. These cables are common for Android, Kindle etc. users.
    Here are some steps and notes to try:
    MANY people are reporting they've had to try multiple micro USB cables to find one that works. I got one that worked from a neighbor.
    For clarification, this needs to be a "micro" USB, not a "mini" USB
    Some people have also reported they've had to try the Restore process more than once.
    1. Unplug Apple TV and move it to your computer running latest version of iTunes.
    2. Quit iTunes if running.
    3. Plug micro USB cable to the back of the Apple TV.
    4. Power the Apple TV using  the AC cable.
    5. iTunes shoud either launch itself (a good indication that the micro USB cable you're using is compatible), or launch iTunes.
    6. Click Restore. Software will download and install (big file).

  • How to or which table i can find Sales Tax Code in CRM

    Hi,
    I need to get Sales Tax Code(mwsk1) in BADI 'CRM_COND_COM_BADI'. if i use CRM_ORDER_READ( ET_PRIDOC) or CRM_PRIDOC_READ_OW it is going into endless loop. So i can't use these Function modules in CRM_COND_COM_BADI.
    Can you help me table or any other way to get sales tax code of Pricing conditions that appear on the sales order in CRM.
    Thanks,
    Praveen

    Hi,
    try by getting header and item guid in et_pridoc->pric_cond.
    Regards,
    Padma.

  • Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?  I open gmail. I want to save an email to one of my folders. I position my cursor over the appropriate Folder icon or by choice, to th

    Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?
    I open gmail. I want to save an email to one of my folders.
    I position my cursor over the appropriate Folder icon or by choice, to the Trash.
    The friendly finger pointing cursor icon changes to an arrow icon.
    The hand icon allows me flawless access to opening and/or moving emails.
    The arrow, however does not open the link.
    On the Google menu bar the cursor hand with finger opens the links to Everett (my name), Search, Images, Maps and Play.
    When I attempt to open the remaining links in the menu bar (YouTube, News, Gmail, Drive, Calendar and More) the arrow icon replaces the hand. The arrow icon does not work. It will not activate these links.  Nor does it open email messages in the Inbox.
    Usually I reset, even reboot Safire and sometimes the problem goes away, then reappears.
    Can you imagine if this condition should it happen to a tech savvy Google Support person? Perhaps one can share and make my problem go away.
    I am considering dropping Google as my mail source. Unfortunate!
    Everett Halvorsen
    [email protected]
    718.490.3824

    I have uninstalled my Access Connection, but this problem seems to persist. IBM technician have changed the wireless card of my T60, the first few days after it was changed was very fine, no problem at all. About a week later, the problem occured again, and it happened quite frequently after that occurence. Now i really have no idea what is the cause and how to solve it. Will be greatful if there is anyone that can help me.

  • Copying Project to NAS - Crash Report - Can anyone understand them?

    Hi,
    I have been trying to copy a project and event files to a NAS drive for back-up.  I have done this before without any problem, but for some reason iMovie keeps crashing, can anyone understand the crash report and point me in the direction of what is causing the crash.
    Thks
    Russell
    Process:         iMovie [5569]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.8 (1778)
    Build Info:      iMovieApp-1778000000000000~2
    App Item ID:     408981434
    App External ID: 10440451
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    User ID:         501
    Date/Time:       2012-11-11 22:25:04.695 +0000
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000003806c4ed
    VM Regions Near 0x3806c4ed:
        CoreServices           0000000025a42000-0000000025c87000 [ 2324K] rw-/rwx SM=COW 
    -->
        __TEXT                 000000003e000000-000000003e042000 [  264K] r-x/rwx SM=COW  /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    Application Specific Information:
    objc_msgSend() selector name: cancelUserAttentionRequest:
    Performing @selector(a_panelOK:) from sender NSButton 0x79e3b930
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x92144a84 objc_msgSend + 20
    1   com.apple.AppKit                        0x9993d232 runModalCleanup + 51
    2   com.apple.AppKit                        0x9993d1f7 -[NSApplication endModalSession:] + 133
    3   com.apple.iMovieApp                     0x001ebab1 0x91000 + 1419953
    4   com.apple.iMovieApp                     0x001ebb86 0x91000 + 1420166
    5   com.apple.iMovieApp                     0x001ea206 0x91000 + 1413638
    6   com.apple.iMovieApp                     0x001aac24 0x91000 + 1154084
    7   com.apple.iMovieApp                     0x001ab256 0x91000 + 1155670
    8   com.apple.iMovieApp                     0x001ab793 0x91000 + 1157011
    9   com.apple.iMovieApp                     0x000c80da 0x91000 + 225498
    10  libobjc.A.dylib                         0x9215d628 -[NSObject performSelector:withObject:withObject:] + 77
    11  com.apple.iMovieApp                     0x000cde6b 0x91000 + 249451
    12  com.apple.AppKit                        0x9993d136 -[NSApplication endSheet:returnCode:] + 314
    13  com.apple.iMovieApp                     0x000db982 0x91000 + 305538
    14  com.apple.iMovieApp                     0x000c6f39 0x91000 + 220985
    15  libobjc.A.dylib                         0x9215d5d3 -[NSObject performSelector:withObject:] + 70
    16  com.apple.AppKit                        0x99b37bd2 -[NSApplication sendAction:to:from:] + 436
    17  com.apple.iMovieApp                     0x000e29d0 0x91000 + 334288
    18  com.apple.AppKit                        0x99b379e0 -[NSControl sendAction:to:] + 102
    19  com.apple.AppKit                        0x99b378ef -[NSCell _sendActionFrom:] + 159
    20  com.apple.AppKit                        0x99b35e60 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1895
    21  com.apple.AppKit                        0x99b3569f -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 511
    22  com.apple.AppKit                        0x99b34db9 -[NSControl mouseDown:] + 867
    23  com.apple.AppKit                        0x99b2ca21 -[NSWindow sendEvent:] + 6968
    24  com.apple.AppKit                        0x99b27a0f -[NSApplication sendEvent:] + 4278
    25  com.apple.iMovieApp                     0x000e2700 0x91000 + 333568
    26  com.apple.AppKit                        0x99a4172c -[NSApplication run] + 951
    27  com.apple.AppKit                        0x999e46f6 NSApplicationMain + 1053
    28  com.apple.iMovieApp                     0x0009335a 0x91000 + 9050
    29  com.apple.iMovieApp                     0x00092ec5 0x91000 + 7877
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95584c02 __select_nocancel + 10
    1   libdispatch.dylib                       0x994c5a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x994c57a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x955827d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95581cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x90039599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9003ef7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9003e63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9004e061 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x0397c72f AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 266
    7   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    8   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x95584be6 __select + 10
    1   com.apple.CoreFoundation                0x90082c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    3   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x955848e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93714289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x93714512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x971fc6ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x971fc184 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x971fc40d TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x94e2d5ac 0x94837000 + 6251948
    7   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    8   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9558280e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x952e77ee 0x94837000 + 11208686
    2   com.apple.QuickTimeComponents.component          0x94e9be26 0x94837000 + 6704678
    3   com.apple.QuickTimeComponents.component          0x952e7580 0x94837000 + 11208064
    4   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    5   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 6:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x955848e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93714289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x937a1afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x94f44556 0x94837000 + 7394646
    4   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    5   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 7:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x955848e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93714289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x937a1afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x94f44556 0x94837000 + 7394646
    4   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    5   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 8:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x955848e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x93714289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x937a1afc pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x94f44556 0x94837000 + 7394646
    4   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    5   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x955850ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9371204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93711e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x936f9cca start_wqthread + 30
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x95584c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x93799a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9379992a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x99c30d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x991e91d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x991e915b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x9370f557 _pthread_start + 344
    7   libsystem_c.dylib                       0x936f9cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x955850ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9371204c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x93711e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x936f9cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x3806c4ed  ebx: 0x80618d30  ecx: 0x9a2a9aeb  edx: 0x00000000
      edi: 0x9993d20d  esi: 0x80618d30  ebp: 0xbff6ef18  esp: 0xbff6eedc
       ss: 0x00000023  efl: 0x00010206  eip: 0x92144a84   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x3806c4ed
    Logical CPU: 0
    Binary Images:
       0x91000 -   0x517fef  com.apple.iMovieApp (9.0.8 - 1778) <8B088F1A-C83A-3009-BCDA-03F2292C7A8F> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x5db000 -   0x5f1ff3  com.apple.iLifeFaceRecognition (1.0 - 21.1) <B06AF65E-3188-3361-BD75-3EE9B2DF4A68> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x5ff000 -   0x600ff3  com.apple.Helium (3.1.0 - 18567.3) <72A242AC-3BA7-3DD5-A043-000C7A9DCD11> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x607000 -   0x635fe3  com.apple.MPEG2TSDecoder (1.0 - 84) <7E230E93-F7F6-34A2-8B60-E6F79E353426> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x670000 -   0x6efff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
      0x733000 -   0x851ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
      0x903000 -   0x904ff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x90b000 -   0x90cfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x913000 -   0x938ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x940000 -   0x974fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x97d000 -   0xae4fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xaeb000 -   0xceefeb  com.apple.Helium.HeliumRender (2.1.0 - 18567.3) <A20BE37C-2987-3BB8-AA52-0607FE7CCF8C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xd43000 -   0xdc4fe7  com.apple.Helium.Heliumfilters (2.1.0 - 18567.3) <3DCC7DCF-8734-31A0-9B6F-0139CC6CB71C> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumFilters.framework/Versions/A/HeliumFilters
    0x10fe000 -  0x12bbfeb  com.apple.Helium.HeliumSensoCore (2.0.2 - 18567.3) <BFA19728-C6DD-3D2D-BFF5-1099CBB20679> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumSensoCore.framework/Versions/A/HeliumSensoCore
    0x12f4000 -  0x1f83ff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x3978000 -  0x39a9ff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
    0x3a1e000 -  0x3a2bff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x3af2000 -  0x3af3ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x4635000 -  0x47c1ff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x47f8000 -  0x4804ffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x480c000 -  0x4838ffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4841000 -  0x4849ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x4850000 -  0x4852fff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x64c2000 -  0x64c5ffe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x64cb000 -  0x651cff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 332) <DED18914-309A-31FF-A367-BB0D62384728> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x6539000 -  0x659bfff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x65d5000 -  0x65e2ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x65ec000 -  0x65fbffd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <A9BF8310-F1D2-38EC-AA1A-5ECB479B89CE> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x6606000 -  0x660dff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x6617000 -  0x6673fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x66a0000 -  0x66d2ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x66e4000 -  0x66edfff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x8856000 -  0x89a7ff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x8ce0000 -  0x9036ff3  com.apple.driver.AppleIntelHDGraphicsGLDriver (8.0.61 - 8.0.0) <79DF96F0-6564-396E-88B9-8B2A20CD14DA> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0x9139000 -  0x91f7ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9317000 -  0x9473fff  com.apple.iLMBAperture31Plugin (2.7.2 - 339) <31453F49-445D-3339-850B-961880BFC73A> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x94bb000 -  0x94c2ff8  com.apple.iLMBAperturePlugin (2.7.2 - 339) <2D2C9870-E0B6-3868-8394-79E91AC706E4> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x94c9000 -  0x967bffb  com.apple.iLMBAperturePlugin2012 (2.7.2 - 339) <010C3E35-C2A2-378E-8818-3E4F95582F56> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0x96d6000 -  0x96d6fff  com.apple.iLMBAppDefPlugin (2.7.2 - 339) <70319805-38A9-3043-ADAF-A8E3460C2E7F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x96db000 -  0x96e4ff7  com.apple.iLMBFinalCutPlugin (2.7.2 - 339) <FCDE7192-2E1A-38F8-916A-0CA934540DC2> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x96eb000 -  0x96ecfff  com.apple.iLMBFolderPlugin (2.7.2 - 339) <A492DD96-B17A-3581-8F02-BB46C385D5B9> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x96f1000 -  0x96f4fff  com.apple.iLMBGarageBandPlugin (2.7.2 - 339) <78FF504C-F636-3C8D-8AAA-BACF4D5B7D9B> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x96fa000 -  0x9706ff3  com.apple.iLMBiMoviePlugin (2.7.2 - 339) <43670574-38EA-316D-8246-CCFA1EC939FF> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x970f000 -  0x9722fff  com.apple.iLMBiPhoto8Plugin (2.7.2 - 339) <3A40E2BF-F18E-32A9-A9C1-A7ABB6530CF0> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x9751000 -  0x98b0fff  com.apple.iLMBiPhoto9Plugin (2.7.2 - 339) <E63985DE-DFFA-3459-870F-045D31ED2F38> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x98f9000 -  0x9901ffb  com.apple.iLMBiPhotoPlugin (2.7.2 - 339) <C223ED5C-2B22-3EA8-899B-7B152E32B018> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x9908000 -  0x9abbff3  com.apple.iLMBiPhotoPlugin2012 (2.7.2 - 339) <C60F1D91-5FA8-31AF-A6AA-DF919D7DF7D2> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0x9b17000 -  0x9b1fffe  com.apple.iLMBiTunesPlugin (2.7.2 - 339) <50409BA5-9D15-3D95-BBC5-36C6EA6EC85B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x9b26000 -  0x9bdcff3  com.apple.iTunesAccess (10.7 - 10.7) <FC3334BD-4462-8A94-6FD0-C09E33A04255> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9c06000 -  0x9c07fff  com.apple.iLMBMoviesFolderPlugin (2.7.2 - 339) <64E4136B-AAD7-35AF-89EA-2560CE1C403C> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x9c0c000 -  0x9c0effb  com.apple.iLMBPhotoBooth2Plugin (2.7.2 - 339) <0DC888AC-D093-39EF-A839-A262A3CDD0BC> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x9c14000 -  0x9c15ffd  com.apple.iLMBPhotoBoothPlugin (2.7.2 - 339) <E69485DC-8BE8-31AD-A002-79D7CE66F11C> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xb05a000 -  0xb05aff1 +cl_kernels (???) <334A24DD-DB3C-4591-9D29-984C81370398> cl_kernels
    0xb172000 -  0xb177fff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <58BDA15D-2B2D-3E77-BC8C-D14AB1E4AC4E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xbdd1000 -  0xbe63ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0xc626000 -  0xc63cffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0xc7d0000 -  0xc9d5fff  com.apple.audio.codecs.Components (3.0 - 3.0) <B826A71F-1D4C-3B2D-B104-D06583172F1B> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xccc4000 -  0xccd1ffb +net.telestream.license (1.0.9.3-GC - 1.0.9.3-GC) <77301FCB-B789-671B-9FEC-9852A1240F83> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xd151000 -  0xd158ffc  com.apple.AppleGVAHW.component (1.1 - 1) <402A3FA9-6028-3639-989F-E9FCA85D04CF> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xd161000 -  0xd1f7ffa  com.apple.mobiledevice (555.40 - 555.40) <40C9AB96-15C5-3D69-BA35-A73BB9380856> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0xd3f8000 -  0xd41effb  com.apple.QuartzComposer.ExtraPatches (4.1 - 284) <BC445DFA-0C21-332E-AD55-31224AF4E57A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xd42f000 -  0xd549ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0xd5e6000 -  0xd62effb  com.apple.audio.midi.CoreMIDI (1.9 - 78) <7AAE4076-36FA-37C1-9EAE-344F1C8F14D9> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xd653000 -  0xd73cffb  com.apple.PubSub (1.0.5 - 65.32) <47AA4035-0FAE-31ED-B7AD-C0DA089EE82D> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0xd795000 -  0xd7c0ff7  com.apple.audio.OpenAL (1.6 - 1.6) <B10D8F86-253D-37C8-BC11-64DEEF81AC45> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xdb03000 -  0xdb2eff7  com.apple.iMovieQCPlugIns (1.1 - 1778) <931824E8-B2C7-3E5A-8E5C-00C8B2398459> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0xdc48000 -  0xdc4bff7 +net.culater.SIMBL.osax (0.9.9 - 0.9.9) <FB5B987E-B3AE-8F9B-7BAE-2C635D76A7F2> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0xdc5d000 -  0xdc5fff7 +jp.cvz.ColorfulSidebar (1.1 - 110) <D52D10A1-E8B2-5B55-AF73-0E7990AA3941> /Users/USER/Library/Application Support/SIMBL/*/ColorfulSidebar.bundle/Contents/MacOS/ColorfulSidebar
    0xdd23000 -  0xdd44fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xdd53000 -  0xdd57ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xde2b000 -  0xe020fe2 +net.telestream.wmv.import (2.4.4.2 - 2.4.4.2) <FF8C3F37-9865-F04A-928F-C8BAE5AF122F> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe055000 -  0xe100fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xe144000 -  0xe306fe2 +net.telestream.wmv.advanced (2.4.4.2 - 2.4.4.2) <611D64FD-48DB-356C-D3FB-D96F131B00F5> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xe34a000 -  0xe3b2feb  com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xe3e3000 -  0xe42cfff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <3048BA40-0E8E-357A-8F9D-27D2FD322036> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xe4f0000 -  0xe63aff7  com.apple.AppleGVAFramework (4.0.27 - 4.0.27) <A821DD12-2544-3EAB-8439-4D17BCEB8460> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xe656000 -  0xe690fff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe69c000 -  0xe6b4ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1fb99000 - 0x1ff5eff3  com.apple.SceneKit (3.2 - 155.4) <B9CAA858-8106-3853-8A8B-9C19F2E9167B> /System/Library/Frameworks/SceneKit.framework/SceneKit
    0x25092000 - 0x25121ff7  unorm8_rgba.dylib (2.1.19) <EAF23AD7-DEC1-3346-A7AA-21B308CA2A85> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
    0x3e000000 - 0x3e041fff  com.apple.glut (3.5.2 - GLUT-3.5.2) <0A9E8D36-8EA6-328D-AEF9-E7A7B1A830D4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x7015dff7  com.apple.audio.units.Components (1.8 - 1.8) <2637680C-A07E-3387-BD21-33B04B7C7A95> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8ed4a000 - 0x8f58bffb  com.apple.GeForceGLDriver (8.0.61 - 8.0.0) <36946D7B-4FF7-34CC-B6FE-D6F48406A60F> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe90000 - 0x8fec2e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x901efff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x901f5000 - 0x9036dff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9036e000 - 0x9062efff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9062f000 - 0x90653fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x90654000 - 0x90658ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x90659000 - 0x90766ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x90767000 - 0x90807ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90808000 - 0x90811ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90869000 - 0x908c6fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x908c7000 - 0x908ddfff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x908de000 - 0x908f3fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x908f4000 - 0x908fafff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x908fb000 - 0x90983fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x91201000 - 0x9149aff3  com.apple.AddressBook.framework (7.1 - 1167) <AF7B18F2-D0FF-33AA-9CE9-4106B1CDAE1D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9149b000 - 0x9149ffff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x914a0000 - 0x914a0fff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x914a3000 - 0x9162cff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9162d000 - 0x9165efff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9165f000 - 0x91735fff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9173c000 - 0x9184cff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9184d000 - 0x9187cff7  com.apple.securityinterface (6.0 - 55024.4) <7C5E28DC-F8BE-3238-883F-E1646A2AF895> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9187d000 - 0x919b8ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x919b9000 - 0x91a6dfff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91a81000 - 0x91ac5fff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91ac6000 - 0x91ac6fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91af8000 - 0x91b16ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91b17000 - 0x91b19ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x91b1a000 - 0x91c12ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x91c13000 - 0x91c8cff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91c8d000 - 0x91c8dfff  com.apple.quartzframework (1.5 - 1.5) <9018BE5B-4070-320E-8091-6584CC17F798> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91c8e000 - 0x91c9cfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x91c9d000 - 0x91c9efff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x91cad000 - 0x91cb0ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x91cb1000 - 0x91cb3ffc  com.apple.QuickTimeH264.component (7.7.1 - 2599.13) <C19F08F9-F383-35C9-8D5C-BD53A238951C> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x91cb4000 - 0x91cd9ff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <F6A88D89-AB4A-3217-9D65-C2C259B5F09B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91cda000 - 0x91ce8ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x91cec000 - 0x91d71ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91d72000 - 0x91d97ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91d98000 - 0x91da2fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x91da3000 - 0x91da6ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91db2000 - 0x91dd7ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91dd8000 - 0x91ddafff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91e95000 - 0x91e95fff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91e96000 - 0x91e96fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e97000 - 0x91e98ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x91e99000 - 0x91ea7fff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91ea8000 - 0x91fa4ff3  com.apple.DiskImagesFramework (10.8 - 344) <98C16F91-9D3E-3FD0-A30B-BD49EE4ED9A4> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x91fa5000 - 0x9201aff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9201b000 - 0x92137ff7  com.apple.desktopservices (1.7.2 - 1.7.2) <8E74D101-8398-34F1-A463-B4950680A597> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92138000 - 0x9213efff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9213f000 - 0x9224c057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x9224d000 - 0x922c9ff3  com.apple.Metadata (10.7.0 - 707.3) <6B6A6216-23D0-34CE-8099-BEE9BA42501E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x922f0000 - 0x92312fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x92313000 - 0x926f6ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92701000 - 0x9271efff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x9271f000 - 0x92756ffa  com.apple.LDAPFramework (2.4.28 - 194.5) <8368FAE7-2B89-3A7D-B6EE-7184B522CB66> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92824000 - 0x9282efff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x9282f000 - 0x92876ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92877000 - 0x9287bffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9287c000 - 0x92893ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x92894000 - 0x9289efff  libCSync.A.dylib (324.6) <D2E8AC70-C6D1-3C40-8A82-E50422EDCFBF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9289f000 - 0x928d2ff5  libssl.0.9.8.dylib (47) <3224FBB3-3074-3022-AD9A-187703680C03> /usr/lib/libssl.0.9.8.dylib
    0x928d3000 - 0x928dfff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x928e0000 - 0x92939fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9293a000 - 0x92bddffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x92bde000 - 0x92c0aff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x92c0b000 - 0x92c4cff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x92c4d000 - 0x92c53fff  com.apple.phonenumbers (1.1 - 47) <DD22B3D1-DA4B-3794-9D73-E90D49A1F88E> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x92c54000 - 0x92c5fffb  com.apple.DirectoryService.Framework (10.8 - 151.10) <234F4A14-60ED-300B-93B2-D5052878558F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92c60000 - 0x92cb7ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92cb8000 - 0x92d76ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92d77000 - 0x92f8efff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92f8f000 - 0x92fd8ff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x92fd9000 - 0x933d5feb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x933d6000 - 0x93403ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x93404000 - 0x93454ff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x93455000 - 0x93482ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x93483000 - 0x935e0ffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x935e1000 - 0x9363cfff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9363d000 - 0x936f4ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.13) <1B5BA13C-4AB7-333E-9A14-A95EC9E55049> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x936f5000 - 0x936f8ff3  com.apple.AppleSystemInfo (2.0 - 2) <4639D755-8A68-31C9-95C4-7E7F70C233FA> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x936f9000 - 0x937b6feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x937b7000 - 0x938a0ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x938a1000 - 0x938c1ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x938c2000 - 0x93907ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93908000 - 0x93961ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93962000 - 0x939b1ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x939b2000 - 0x93a09ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x93a0a000 - 0x93a0afff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a0b000 - 0x93a17ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x93a18000 - 0x93a19ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x93a1a000 - 0x93c72ff1  com.apple.JavaScriptCore (8536 - 8536.26.7) <75629E05-65FE-3699-8CDC-80C95015CF42> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93c73000 - 0x93c76ffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x93c77000 - 0x93c84fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93c85000 - 0x93da3ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x93da4000 - 0x941e6fff  com.apple.CoreGraphics (1.600.0 - 324.6) <66556166-F9A7-3EEC-A562-46061C7A79E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x941e7000 - 0x9427eff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94281000 - 0x9428dffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9428e000 - 0x94291fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94292000 - 0x942a2ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x942a3000 - 0x94312ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x94313000 - 0x94316ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x94317000 - 0x9432efff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9432f000 - 0x94353fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94354000 - 0x94445ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x94446000 - 0x9444cffc  libCGXCoreImage.A.dylib (324.6) <D75B1309-D224-344F-A28F-2B552859DDFC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x9444d000 - 0x94558ff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x94559000 - 0x946b1ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x946b2000 - 0x946b9ffe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x946ba000 - 0x9471eff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9471f000 - 0x9472bffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x9472c000 - 0x94745ffb  com.apple.frameworks.preferencepanes (15.0 - 15.0) <802C922C-CF94-357F-B1AE-4244AA025C04> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94746000 - 0x9478bff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9478c000 - 0x94824fff  com.apple.CoreServices.OSServices (557.4 - 557.4) <C724AB29-A596-3E1E-9FF1-A4E509AD843A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94825000 - 0x94829fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9482a000 - 0x9482affd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9482b000 - 0x94836fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x94837000 - 0x9556fff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95570000 - 0x9558affc  libsystem_kernel.dylib (2050.18.24) <C17D49D0-7961-3B67-B443-C788C6E5AA76> /usr/lib/system/libsystem_kernel.dylib
    0x9558b000 - 0x95807ff7  com.apple.QuickTime (7.7.1 - 2599.13) <FE609160-E1EF-341D-9B6A-205D3E03A4D2> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95808000 - 0x9580ffff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x95810000 - 0x95928ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x95929000 - 0x959bbffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x959bc000 - 0x95a0aff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95a0b000 - 0x95a71ffc  com.apple.ISSupport (1.9.8 - 56) <D2AC4E10-0B3C-3194-AEB7-1E9964CBC0D0> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95a72000 - 0x95a9bfff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x95a9c000 - 0x95aa0fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95aa1000 - 0x95aa8ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95aa9000 - 0x95cd9fff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95cda000 - 0x95cdaffe  com.apple.AOSMigrate (1.0 - 1) <4EA0829E-6AE5-3877-A5B6-032AFDF28D39> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x95cdb000 - 0x95ce5ffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x95ce6000 - 0x95d80fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x95d81000 - 0x95dc0ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x95dc1000 - 0x95dc1fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95dc2000 - 0x95e03ff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x95e04000 - 0x95fc0ffd  libicucore.A.dylib (491.11.1) <B19E450A-BAF1-3967-9C95-7F77DC0B4639> /usr/lib/libicucore.A.dylib
    0x96001000 - 0x960ffff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96100000 - 0x961e1fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x961e2000 - 0x961ebffe  com.apple.aps.framework (3.0 - 3.0) <09D5F4F3-03FD-3077-A51D-B368F18ED1D4> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x961ec000 - 0x961ecfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x961ed000 - 0x964d8ff7  com.apple.AOSKit (1.05 - 151) <F470C45E-620C-3FF2-AB1C-2D57FCD215E7> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
    0x964d9000 - 0x96746fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96747000 - 0x96789ffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9678a000 - 0x9685efff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9685f000 - 0x96c7cfff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x96c7d000 - 0x97010ffb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x97011000 - 0x97079fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9707a000 - 0x970a4ff9  com.apple.framework.Apple80211 (8.0.1 - 801.17) <8A8BBBFD-496B-35A6-A26E-ADF8D672D908> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x970a5000 - 0x970b7fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x970b8000 - 0x970d4ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x970d5000 - 0x970e8ff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x970e9000 - 0x97102fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x97139000 - 0x9743eff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <4571EDDC-704A-3FB1-B9A6-59870AA6165F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9743f000 - 0x97448ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97449000 - 0x97466fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x97467000 - 0x9749aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x97814000 - 0x97815fff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x97816000 - 0x97856fff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x97857000 - 0x9788cff7  com.apple.framework.internetaccounts (2.1 - 210) <8F2D0EB8-C997-3833-AA80-95AF7AA377BE> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x9788d000 - 0x97896ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97897000 - 0x978d9ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x978da000 - 0x9791cfff  libcurl.4.dylib (69.2) <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9791d000 - 0x9791ffff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x97920000 - 0x9796cfff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x9796d000 - 0x97996ff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97997000 - 0x97998fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x97999000 - 0x979f3fff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x979f4000 - 0x97a04ff7  libsasl2.2.dylib (166) <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x97a05000 - 0x97a1afff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97a1b000 - 0x97a56fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97a57000 - 0x97e0fffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97e10000 - 0x97e46ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x97e4b000 - 0x97e4cfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x97e4d000 - 0x97e7dff3  libtidy.A.dylib (15.10) <F2F4E000-E305-3089-91E6-3DB0ED07E74A> /usr/lib/libtidy.A.dylib
    0x97e7e000 - 0x97ed9ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97eda000 - 0x97f89ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x97f8a000 - 0x97f92fff  com.apple.DiskArbitration (2.5.1 - 2.

    Wait... under "Thread 0 crashed", there's NOTHING!?!?! I've never seen CrashReporter do THAT before. That falls under the "I have no idea" category. Maybe a massive stack stomper bug; it looks like an entire page of memory was zeroed for some reason.
    You might try swapping out RAM and/or reseating it, as that could easily be caused in hardware (though I would expect it to affect more than just Finder if it did). That's about all I can think of.... Beyond that... no idea.

  • How can we put program code which looks similar to SAP Program in SAP ?

    when we copy the code and paste here in this editor, the setup of all the code becomes disturbed and we may not able to understand, plz suggest how can we post the code which is actully looks similar in SAP abap program ?
    Thanks & Regards,
    Amit
    Edited by: akg.amit on Oct 20, 2010 8:35 AM

    Hi Amit,
    Check this thread.
    How to post code in SCN, and some things NOT to do...
    Regards,
    Immanuel.

  • Can't understand why my DefaultListCellRenderer doesn't work

    Hello i know that from the subject title it seems that this is the wrong category to post but because i need to load thumbnails in list and i resize them i didn't know where to post sorry if it is the wrong plase and also sorry for my bad english.
    I am making a programm that get's from the user some image paths , then makes thumbnails and then shows the thumbnails with a status and the name of the image. My list has HORIZONTAL_WRAP layout orientation and because i want to show the name the status and the thumbnail in the list i made a DefaultListCellRenderer. The problem is that when i add elements in the list it appears nothing but when i press with the mouse somewhere int the list the listImagesValueChanged is invoked and the data are passed correctly. I made an class named ImageThubInfo to save the name and the thumbnail for eatch image, also i am using a swing worker to create the thubnails and pass them along with all other information in ImageThubInfo and then store all ImageThubInfo objects to a list. When the worker thread is done it tries to add those elements to the list here is my code
    import java.awt.image.BufferedImage;
    import javax.swing.ImageIcon;
    import javax.swing.JOptionPane;
    * ImageThubInfo stores information for each image
    * @author maxsap
    public class ImageThubInfo  {
        public ImageThubInfo() {
        public ImageThubInfo(String status, String name, int width, int height, long size) {
            this(status, name, width, height, size, null);
        public ImageThubInfo(String status, String name, int width, int height, long size,BufferedImage thumbnail) {
            this.status = status;
            setName(name);
            this.width = width;
            this.height = height;
            this.size = size;
            this.thumbnail = thumbnail;
        public void setStatus(String status) {
            this.status = status;
        public String getStatus() {
            return status;
        public void setName(String name) {
            int indexOf = name.indexOf(".");
            this.name = name.substring(0, indexOf);
            JOptionPane.showMessageDialog(null, this.name);
        public String getName() {
            return name;
        public void setWidth(int width) {
            this.width = width;
        public int getWidth() {
            return width;
        public void setHeight(int heigth) {
            this.height = height;
        public int getHeight() {
            return height;
        public void setSize(long size) {
            this.size = size;
        public float getSize() {
            return size;
        public void setThumbnail(ImageIcon BufferedImage) {
            this.thumbnail = thumbnail;
        public BufferedImage getThumbnail() {
            return thumbnail;
        private String status;
        private String name;
        private int width;
        private int height;
        private long size;
        private BufferedImage thumbnail;
    }this is my DefaultListCellRenderer class
    import java.awt.Component;
    import java.awt.image.BufferedImage;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.ImageIcon;
    import javax.swing.JList;
    * @author maxsap
    public class ImageThubInfoRenderer extends DefaultListCellRenderer {
        public ImageThubInfoRenderer(){}
          @Override
        public Component getListCellRendererComponent(JList list,
                Object value,
                int index,
                boolean isSelected,
                boolean cellHasFocus) {
             super.getListCellRendererComponent(list,value,index,isSelected,
                                                                cellHasFocus);
            ImageThubInfo info = (ImageThubInfo) value;
            String name = info.getName();
            String state = info.getStatus();
            BufferedImage thumbnail = (BufferedImage)info.getThumbnail();
            setIcon(new ImageIcon(thumbnail));
            setText(name+" Current State: "+state);
            if (isSelected) {
                setBackground(list.getSelectionBackground());
                setForeground(list.getSelectionForeground());
            } else {
                setBackground(list.getBackground());
                setForeground(list.getForeground());
            return this;
    }and this is my swing worker class
    public class ThumbLoader extends SwingWorker<List<ImageThubInfo>, BufferedImage> {
          private DefaultListModel model;
          private int total;
          private File [] files;
          private List<ImageThubInfo> imageList;
          protected ThumbLoader(DefaultListModel model,File []files){
                this.model = model;
                this.files= files;
          @Override
          protected List<ImageThubInfo> doInBackground() throws Exception {
                imageList = new LinkedList<ImageThubInfo>();
                 for (int i = 0; i < files.length; i++) {
                    ImageIcon icon;
                    icon = createImageIcon(files.toString());
    if(icon != null){
    ImageIcon thumbnailIcon = new ImageIcon(getScaledImage(icon.getImage(), 100, 100,files[i]));
    return imageList;
    protected ImageIcon createImageIcon(String path) {
    if (path != null) {
    return new ImageIcon(path);
    } else {
    System.err.println("Couldn't find file: " + path);
    return null;
    private Image getScaledImage(Image srcImg, int w, int h, File file){
    BufferedImage resizedImg = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = resizedImg.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    g2.drawImage(srcImg, 0, 0, w, h, null);
    ImageThubInfo tubInfo = new ImageThubInfo("Waiting",file.getName(),srcImg.getHeight(null),srcImg.getHeight(null),300,resizedImg);
    imageList.add(tubInfo);
    JOptionPane.showMessageDialog(null, new ImageIcon(resizedImg));
    g2.dispose();
    return resizedImg;
    }protected void done() {
    setProgress(100);
    try {
    //JOptionPane.showMessageDialog(null, imageList.size());
    List<ImageThubInfo> imageList = this.get();
    for(int i=0; i< imageList.size(); i++){
    JOptionPane.showMessageDialog(null, new ImageIcon(imageList.get(i).getThumbnail()));
    model.addElement(imageList.get(i));
    } catch (InterruptedException ex) {
    Logger.getLogger(ThumbLoader.class.getName()).log(Level.SEVERE, null, ex);
    } catch (ExecutionException ex) {
    Logger.getLogger(ThumbLoader.class.getName()).log(Level.SEVERE, null, ex);
    JOptionPane.showMessageDialog(null, "DONE");
    }}can anyone tell me what i am doing wrong???? please help because i really can't understand what i am doing wrong.
    thenks in advance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Works okay now. Many changes to ThumbLoader:
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.util.concurrent.*;
    import java.util.logging.*;
    import java.util.List;
    import java.util.LinkedList;
    import javax.swing.DefaultListCellRenderer;
    import javax.swing.*;
    public class ThumbLoader extends SwingWorker<List<ImageThubInfo>, Void> {
        private DefaultListModel model;
        private int total;
        private File[] files;
        private List<ImageThubInfo> imageList;
        protected ThumbLoader(DefaultListModel model, File[] files){
            this.model = model;
            this.files = files;
        @Override
        protected List<ImageThubInfo> doInBackground() throws Exception {
            imageList = new LinkedList<ImageThubInfo>();
            for (int i = 0; i < files.length; i++) {
                BufferedImage image = null;
                try {
                    image = javax.imageio.ImageIO.read(files);
    } catch(IOException e) {
    System.out.println("read error for " + files[i].getPath() +
    ": " + e.getMessage());
    if(image != null){
    BufferedImage scaled = getScaledImage(image, 100, 100);
    ImageThubInfo tubInfo = new ImageThubInfo("Waiting",
    files[i].getName(),
    image.getHeight(),
    image.getHeight(),
    300, scaled);
    imageList.add(tubInfo);
    return imageList;
    private BufferedImage getScaledImage(BufferedImage srcImg, int w, int h){
    BufferedImage resizedImg = new BufferedImage(w, h,
    BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = resizedImg.createGraphics();
    g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
    RenderingHints.VALUE_INTERPOLATION_BICUBIC);
    g2.drawImage(srcImg, 0, 0, w, h, null);
    g2.dispose();
    // JOptionPane.showMessageDialog(null, new ImageIcon(resizedImg));
    return resizedImg;
    protected void done() {
    setProgress(100);
    try {
    //JOptionPane.showMessageDialog(null, imageList.size());
    // List<ImageThubInfo> imageList = this.get();
    imageList = get();
    for(int i=0; i< imageList.size(); i++){
    // JOptionPane.showMessageDialog(null, new ImageIcon(
    // imageList.get(i).getThumbnail()));
    model.addElement(imageList.get(i));
    } catch (InterruptedException ex) {
    // Logger.getLogger(ThumbLoader.class.getName()).log(Level.SEVERE,
    // null, ex);
    System.out.println("InterruptedException: " + ex.getMessage());
    } catch (ExecutionException ex) {
    // Logger.getLogger(ThumbLoader.class.getName()).log(Level.SEVERE,
    // null, ex);
    System.out.println("ExecutionException: " + ex.getMessage());
    // JOptionPane.showMessageDialog(null, "DONE");
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import javax.swing.*;
    public class Test {
        private JScrollPane getContent() {
            File[] files = getFiles();
            DefaultListModel model = new DefaultListModel();
            JList list = new JList(model);
            list.setCellRenderer(new ImageThubInfoRenderer());
            SwingWorker worker = new ThumbLoader(model, files);
            worker.execute();
            return new JScrollPane(list);
        private File[] getFiles() {
            String prefix = "images/geek/geek";
            String[] ids = { "-c---", "--g--", "---h-", "----t" };
            String ext = ".gif";
            File[] files = new File[ids.length];
            for(int i = 0; i < ids.length; i++) {
                String path = prefix + ids[i] + ext;
                URL url = getClass().getResource(path);
                try {
                    files[i] = new File(url.toURI());
                } catch(URISyntaxException e) {
                    System.out.println("everything is busted!");
            return files;
        public static void main(String[] args) {
            Test test = new Test();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(test.getContent());
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    }geek images from [Geek Images|http://java.sun.com/docs/books/tutorial/uiswing/examples/components/index.html]

  • How to understand these terms in SD?

    Hi all,
    I have encounted some terms when I tried to understand SD module. Please can some explain these terms in SD as following,
    1. Sold-to party
    2. Ship-to party
    3. Bill-to party
    I tried to create the a sales order, i hadn't found where we can define it? can someone tell me when can we define it and what is the table field? Thanks a lot!
    Any response will be awarded.
    Regards,
    Samson

    Dear Samson
    In general, sold to party is the one from who you receive a sales order.  Ship to party is the one to whom you ship the goods and Bill to Party is the one to whom you bill for the materials sent to ship to party on behalf of sold to party.
    In SAP, after entering VA01 and sales area (sales organization, distribution channel and division), your mouse will automatically sit by default into sold to party's tab and below that you can see ship to party.  As for as Bill to Party is concerned, select a line item, again select "Goto - item - partners".  These partner functions will flow from your sold to party customer master.
    Thanks
    G. Lakshmipathi

Maybe you are looking for

  • Conditionally include Front Panel of a Subvi in an EXE

    I want to make two versions of an EXE, one "normal" version and a debug version. I know how to set conditional disable symbols via pre/post build actions (btw. NI: these variables should REALLY be defineable per build specification; even bare command

  • Thanks to hplip changes, I can no longer print with my Deskjet F4140..

    Hi. Ever since the upgrade of hplip, I've been unable to print. I searched the forums already and have removed hplip's entry from etc/rc.conf, as well as uninstalling the package. CUPS is up to date, but when I went through the "Add Printer" process,

  • ITunes 11.3 issues

    Anyone have problems with iTunes not opening on macbook after updating to 11.3?  I just updated to iTunes 11.3 this morning and now it will not open.

  • Launching Aperture 3 generates "Problem Report"

    I thought I was almost done rebuilding my MacBook Pro after a hard drive failure. Aperture 3 was loaded and updates applied. I verified some basic usage with one of my libraries; including a couple minor adjustments. Subsequent to that I install Fina

  • A handy guide for Activity Monitor processes?

    Hello. Is there a handy guide to all (or most/many) of the processes going on in Activity Monitor? I am thinking along the lines of this page: http://www.westwind.com/reference/OS-X/background-processes.html ..but with more processes (e.g., this one