JToolBar ImageIcons disappear periodically

I'm at a real lost and I hope someone can point me in
the right direction. I use ImageIcons in my toolbar and
most of the time everything paints correctly. Periodically,
though, some of the images don't repaint and I'm left with
some blank buttons. I'm using 1.4 on Windows NT.

This seems to be a problem with the VM on Windows. I have it happening on my NT machine with Suns JDK1.4 in all my Java apps, it doesn't happen on my Win2000 laptop. I remember from the jEdit mailing list that at least one other person had the same problem with Win2000.
I'm not worried about it as its just cosmetic. If you move the mouse over the toolbar icons they reappear.
Col

Similar Messages

  • HELP! - ImageIcons disappear

    First, I'm using 1.4 on Windows NT. Periodically the
    ImageIcons on my toolbar buttons disappear. Most of
    the time everything is fine, but sometimes the images
    just disappear. If I drag another window over my toolbar,
    the images get redrawn most of the time, but its not
    a guarantee. From what I have seen on this Forum, other
    folks have also encountered this problem, but I have
    yet to hear of a solution other than to ignore it. If anyone
    has any kind of solution, I would appreciate hearing from
    you.

    As a workaround you can set the following property when you run your java program:
    -Dsun.java2d.noddraw=true
    This is a known bug (4664818).
    Hope that helps...

  • WRT54GS - 7.0 Wireless signal disappears periodically

    I have had my WRT54GS - 7.0 for about two months. Because of the way my apartment is set up, I am using a wireless card in my pc instead of a wired LAN connection from my cable modem. My ISP is fine; the computer wired to the router never experiences any difficulty.
    My problem is that once in a while my wireless signal dips or disappears. My pc is only about 40 feet from the wireless router, and most of the time my signal is quite strong. I have software that allows me to see competing wireless networks and I know that I am not sharing a channel with anyone. It doesn't happen regularly; it will be fine for a week or even a month, then I'll have a horrendous couple of days where nothing I do can get it to connect. Sometimes it is two hours before the signal comes back. Cycling the power and resetting the router has no effect.
    Should I buy a wireless repeater, or is there some other sinister agent at work besides cruddy signal transmission?
    Any and all suggestions are welcome, and thanks to all who took time to read!
    Message Edited by dgold on 04-11-200704:54 PM

    dgold!
    Make sure that there are no interferences between the two devices. Changing the channel would do as well, an if still it's the same. Set the "advance wireless settings" on the router [Beacon = 70; RTS = 2305; Fragmentation = 2306].

  • Emails in my inbox disappear periodically

    Can anyone tell me how to prevent my emails from disappearing from my inbox on my iphone?  its a work phone so not sure if its the phone, AT&T service, or my work server. 

    Your computer is likely configured to remove messages from the server after it gets them, so when the iPhone checks for those messages, they're gone.
    Check the information in http://support.apple.com/kb/HT3228 to see if your email client is listed.

  • Bookmarks toolbar disappear firefox 24

    All my bookmarks are disappearing periodically (2-3 times) from my bookmark toolbar using Firefox 24 OS Win 7 64 bit.
    My solution is to select View/Toolbars from the menu bar, deselect "Bookmarks Toolbar". Then go back into View/Toolbars and reselect "Bookmarks Toolbar". Then all of my toolbar bookmarks re-appear.
    I am seeing users report similar issues and wonder if my simple fix will work for them. If I determine what causes this in the first place, I will repost my findings.

    *https://support.mozilla.org/kb/How+to+customize+the+toolbar
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    *''Once you get the pop-up, just select "'Start in Safe Mode"''
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • What's wrong with my component?

    i make a new component which is a dragable icon here is my piece of code
    //class: DragAbleComponent.the father of my component
    import java.awt.Graphics;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import javax.accessibility.Accessible;
    import javax.swing.JComponent;
    public abstract class DragAbleComponent extends JComponent implements MouseListener,
              FocusListener, Accessible ,MouseMotionListener{
         private int X;
         private int Y;
         private static final long serialVersionUID = 1L;
         public void mouseClicked(MouseEvent e) {
              this.requestFocusInWindow();
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public void mousePressed(MouseEvent e) {}
         public void mouseReleased(MouseEvent e) {}
         public void focusGained(FocusEvent e) {
              this.repaint();}
         public void focusLost(FocusEvent e) {
         this.repaint();}
         protected abstract void paintComponent(Graphics graphics);
         public int getX() {
              return X;
         public void setX(int x) {
              X = x;
         public int getY() {
              return Y;
         public void setY(int y) {
              Y = y;
    //class:DragableIcon the component
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.event.InputEvent;
    import java.awt.event.MouseEvent;
    import javax.swing.Action;
    import javax.swing.ActionMap;
    import javax.swing.InputMap;
    import javax.swing.JComponent;
    import javax.swing.KeyStroke;
    import javax.swing.TransferHandler;
    public class DragableIcon extends DragAbleComponent {
         private Image image;
         private MouseEvent firstMouseEvent = null;
         private static boolean installKeyBordMapings = true;
         private static final long serialVersionUID = 1L;
         public DragableIcon(Image image) {
              super();
              this.image = image;
              this.setFocusable(true);
              this.addMouseListener(this);
              this.addFocusListener(this);
              this.addMouseMotionListener(this);
              this.initKeyBordMaping();
         private void initKeyBordMaping(){
              if (installKeyBordMapings) {
         InputMap imap = this.getInputMap();
    //     imap.put(KeyStroke.getKeyStroke("ctrl X"),
    //     TransferHandler.getCutAction().getValue(Action.NAME));
         imap.put(KeyStroke.getKeyStroke("ctrl C"),
         TransferHandler.getCopyAction().getValue(Action.NAME));
         imap.put(KeyStroke.getKeyStroke("ctrl V"),
         TransferHandler.getPasteAction().getValue(Action.NAME));
              ActionMap map = this.getActionMap();
    //     map.put(TransferHandler.getCutAction().getValue(Action.NAME),
    //     TransferHandler.getCutAction());
         map.put(TransferHandler.getCopyAction().getValue(Action.NAME),
         TransferHandler.getCopyAction());
         map.put(TransferHandler.getPasteAction().getValue(Action.NAME),
         TransferHandler.getPasteAction());
         @Override
         protected void paintComponent(Graphics graphics) {
              Graphics g = graphics.create();
         //Draw in our entire space, even if isOpaque is false.
         g.setColor(Color.WHITE);
         g.fillRect(0, 0, image == null ? 125 : image.getWidth(this),
         image == null ? 125 : image.getHeight(this));
         if (image != null) {
         //Draw image at its natural size of 125x125.
         g.drawImage(image, 0, 0, this);
         //Add a border, red if picture currently has focus
         if (isFocusOwner()) {
         g.setColor(Color.RED);
         } else {
         g.setColor(Color.BLACK);
         g.drawRect(0, 0, image == null ? 125 : image.getWidth(this),
         image == null ? 125 : image.getHeight(this));
         // g.drawImage(image, 0, 0, this);
         g.dispose();
         public void mouseDragged(MouseEvent e) {
    //Don't bother to drag if the component displays no image.
    if (image == null) return;
    if (firstMouseEvent != null) {
    e.consume();
    //If they are holding down the control key, COPY rather than MOVE
    int ctrlMask = InputEvent.CTRL_DOWN_MASK;
    int action = ((e.getModifiersEx() & ctrlMask) == ctrlMask) ?
    TransferHandler.COPY : TransferHandler.MOVE;
    int dx = Math.abs(e.getX() - firstMouseEvent.getX());
    int dy = Math.abs(e.getY() - firstMouseEvent.getY());
    //Arbitrarily define a 5-pixel shift as the
    //official beginning of a drag.
    if (dx > 5 || dy > 5) {
    //This is a drag, not a click.
    JComponent c = (JComponent)e.getSource();
    TransferHandler handler = c.getTransferHandler();
    //Tell the transfer handler to initiate the drag.
    handler.exportAsDrag(c, firstMouseEvent, action);
    firstMouseEvent = null;
         public void mouseMoved(MouseEvent e) {}
         public void mousePressed(MouseEvent e) {
         //Don't bother to drag if there is no image.
         if (image == null) return;
         firstMouseEvent = e;
         e.consume();
         public void mouseReleased(MouseEvent e) {
         firstMouseEvent = null;
         public static boolean isInstallKeyBordMapings() {
              return installKeyBordMapings;
         public static void setInstallKeyBordMapings(boolean installKeyBordMapings) {
              DragableIcon.installKeyBordMapings = installKeyBordMapings;
         public Image getImage() {
              return image;
         public void setImage(Image image) {
              this.image = image;
    //and here is my pane
    import java.awt.BorderLayout;
    import java.awt.event.ItemEvent;
    import java.awt.event.ItemListener;
    import javax.swing.ImageIcon;
    import javax.swing.JPanel;
    import javax.swing.JToolBar;
    import cn.com.ynld.bms.applet.gui.handler.IconTransferHandler;
    import cn.com.ynld.bms.applet.service.TransfAble;
    import cn.com.ynld.bms.applet.service.UpdateAble;
    public class ElectronicPane extends JPanel
                                                                                    implements ItemListener,UpdateAble{
    private UpdateAble updateAble = null;
    private ScrollAbleImage image;
    private JToolBar toolBar;
    private IconTransferHandler handler;
         private static final long serialVersionUID = 1L;
         public ElectronicPane(){
              super(new BorderLayout());
              handler = new IconTransferHandler();
         this.creatToolBar();
         this.add(this.toolBar);
         this.setTransferHandler(handler);
         public void itemStateChanged(ItemEvent e) {}
         public void addTransferAble(String key, TransfAble transferAble) {
              // TODO
         public TransfAble getTransferAble(String key) {
              // TODO
              return null;
         public void removeTransferAble(String key) {
              this.updateAble.removeTransferAble(key);
         public void update(UpdateAble updateAble) {
              this.updateAble = updateAble;
              this.init();
         private void init(){
              this.image = new ScrollAbleImage();
              this.image.update(updateAble);
              this.add(image,BorderLayout.CENTER);
              this.repaint();
              //this.image.repaint();
         private void creatToolBar(){
              this.toolBar = new JToolBar();
              DragableIcon alarm = new DragableIcon(createImageIcon("/root/Desktop/drawing/png-0003.png", "alarm").getImage());
              alarm.setTransferHandler(handler);
              DragableIcon damage = new DragableIcon(createImageIcon("/root/Desktop/drawing/png-0007.png", "device").getImage());
              alarm.setTransferHandler(handler);
              this.toolBar.add(alarm);
              this.toolBar.addSeparator();
              this.toolBar.add(damage);
              this.toolBar.setFloatable(false);
         /** Returns an ImageIcon, or null if the path was invalid. */
    protected static ImageIcon createImageIcon(String path,
    String description) {
    // java.net.URL imageURL = DragPictureDemo.class.getResource(path);
    if (path == null) {
    System.err.println("Resource not found: "
    + path);
    return null;
    } else {
    return new ImageIcon(path, description);
    the problem is i add DragableIcons to my toolbar but only the first icon can be seen!!!!
    what's wrong
    thanks for any help!

    what's wrong
        private void creatToolBar() {
            this.toolBar = new JToolBar();
            ImageIcon alarm = createImageIcon(
                                  "/root/Desktop/drawing/png-0003.png",
                                  "alarm");
    //        alarm.setTransferHandler(handler);
            // register icon with its Action
            alarmAction.putValue(Action.SMALL_ICON, alarm);
            ImageIcon damage = createImageIcon(
                                   "/root/Desktop/drawing/png-0007.png",
                                   "device");
    //        damage.setTransferHandler(handler);
            // set the icon to the Action that will use it
            damageAction.putValue(Action.SMALL_ICON, damage);
            // toolBars are equipped to receive an Action or JComponent
            // they don't know what to do with ImageIcons
            this.toolBar.add(alarmAction);
            this.toolBar.addSeparator();
            this.toolBar.add(damageAction);
            this.toolBar.setFloatable(false);
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path, String description) {
            // Use the containing class name. This works for static context in
            // which the "this" keyword does not work.
            // Otherwise, you could simply use getResource.
            java.net.URL imageURL = ElectronicPane.class.getResource(path);
            if (path == null) {
                System.err.println("Resource not found: " + path);
                return null;
            } else {
                return new ImageIcon(path, description);
        private Action alarmAction = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                Toolkit.getDefaultToolkit().beep();
        private Action damageAction = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                System.out.println("damage action");
        };

  • Google Calendar delegates being listed twice

    About two months ago this problem started happening. I have several google calendars that I access with MacOS Calendar (Mountain Lion).
    As usual, the main calendar shows up under "GMail" in the sidebar and all the other sshow up under "Delegates". But recently, all the calendars in delegates have also been showing up under "GMail", creating duplicate event entries in the calendar view. This happens intermitently. It will just appear and disappear periodically. Everytime it happens, I need to unselect all the calendars under 'Gmail' so I don't see the duplicates, then after a while they will disappear altogether, then reappear later, selected.
    Anyone else seeing this? Any solution?
    Geoff
    p.s. I find the Google calendar support pretty flaky in general. Get a lot of server errors here and there, and find the whole way "delegates" to be handled is very cumborsome, curiously much more complicated than in calendar.google.com.

    Are you seeing the double calendar problem on iOS? I'm not. I think the architecture is different on iOS because it doesn't require the Delegates setup that iCal/Calendar on Mac OS requires to access multiple calendars. I proposed BusyCal as a solution to the Mac iCal/Calendar issues before I heard that Google was making changes to their calendar service, apparently to remove the need for delegates...
    https://groups.google.com/a/googleproductforums.com/d/msg/calendar/-/tgyr5MbVYS0 J
    This would be a nice improvement, but it appears that the production rollout of this change has caused serious problems that have been wreaking havoc on users for a couple of weeks now. In addition to the double calendars appearing and disappearing, I also cannot create alerts from Mac iCal/Calendar. I'm not seeing either of these problems on iOS Calendars (an iPhone running iOS 6 and an iPad running iOS 5.) I also do not have either of these problems with the Google Calendar Website.
    I'd love to hear from anyone who uses BusyCal, to know if they're seeing either of these problems. There is a trial version at http://www.busymac.com/busycal/ which I'm going to try when I get a little time to mess with it. I'd buy it (it's only $30), but I'm really fine with iCal/Calendar... if it would just work. The fixes and improvements in Calendar on Mt Lion are a solid step in the right direction, so I'm hopeful in the long term.

  • Periods disappear after a number list

    Every time I try to make a numbered list in a column the periods disappear.  I tried to add them manually but they still disappear.
    any help is appreciated.
    Pages '09 version 4.1

    On the left of  "Bullets & Numbers" there is a small triangle. Click it so that it faces down. At the bottom of the section you will see a radio button and "Start From". Check the button and enter the number you wish the list to start from.

  • My Finder Window when open and desktop icons are blinking/flashing/periodically disappearing.

    The other day I was working on my iMac when the screen all of a sudden froze. iTunes was playing and continued to play, but I could not do anything. This has happened before, so I didn't panick, but just did a hard reset. I was then prompted to recover my computer from my external harddrive/time machine. This took about 10 hours (over firewire). Since then the computer works again, but the Finder window when open as well as the icons on my desktop are constantly flashing or blinking (more like periodically disappearing and reappearing) when I'm in the Finder, I'm then brought back to the previous folder I was in when it reappears.
    I read that this might have to do with Stuffit, which I deleted. I also deleted the Project 179 from Canon, as it was the last program I installed on the day that the computer went glitchy. I also tried both of these:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "cd desktop" and hit enter.
    4. type "rm -rf .DS_Store" and enter
    5. type "exit" and enter
    If it doesn't work try the follow:
    1. click on "spotlight" on the top right corner of your desktop.
    2. type "terminal" (without the quotation marks) and open it.
    3. when the terminal opens, type "sudo rm -rf ~/.Trash/" (This will empty your trash) and enter
    4. type your administrator password. As you type, you will not see any character on the screen. Just type it and hit enter. (If you left your password blank, you have to make one by going to system preferences - users & groups - change password)
    5. type "exit" and enter
    Please help!

    Thank you Lic Davis (Emmanuel Kant) for the help. Here is the information you requested:
    03.09.13 22:40:31.267 Google Drive[295]: GsyncAppDeletegate.py : Finder debug level logs : False
    03.09.13 22:40:38.000 kernel[0]: Data/Stack execution not permitted: Finder[pid 205] at virtual address 0x1017e9000, protections were read-only
    03.09.13 22:40:59.487 com.apple.launchd.peruser.501[182]: (com.apple.Finder[205]) Job appears to have crashed: Bus error: 10
    03.09.13 22:41:01.571 ReportCrash[333]: Saved crash report for Finder[205] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4101_christian-langeneggers-computer.crash
    03.09.13 22:41:01.719 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221753_christian-langeneggers-computer.crash
    03.09.13 22:41:34.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[339]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:41:35.201 ReportCrash[333]: Saved crash report for Finder[339] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4135_christian-langeneggers-computer.crash
    03.09.13 22:41:35.209 ReportCrash[333]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221854_christian-langeneggers-computer.crash
    03.09.13 22:42:35.860 com.apple.launchd.peruser.501[182]: (com.apple.Finder[353]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:42:36.168 ReportCrash[361]: Saved crash report for Finder[353] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4236_christian-langeneggers-computer.crash
    03.09.13 22:42:36.179 ReportCrash[361]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-221956_christian-langeneggers-computer.crash
    03.09.13 22:43:37.168 com.apple.launchd.peruser.501[182]: (com.apple.Finder[362]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:43:37.431 ReportCrash[370]: Saved crash report for Finder[362] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4337_christian-langeneggers-computer.crash
    03.09.13 22:43:37.435 ReportCrash[370]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222057_christian-langeneggers-computer.crash
    03.09.13 22:44:38.395 com.apple.launchd.peruser.501[182]: (com.apple.Finder[371]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:44:38.648 ReportCrash[378]: Saved crash report for Finder[371] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4438_christian-langeneggers-computer.crash
    03.09.13 22:44:38.652 ReportCrash[378]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222159_christian-langeneggers-computer.crash
    03.09.13 22:45:39.694 com.apple.launchd.peruser.501[182]: (com.apple.Finder[379]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:45:39.919 ReportCrash[387]: Saved crash report for Finder[379] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4539_christian-langeneggers-computer.crash
    03.09.13 22:45:39.923 ReportCrash[387]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222259_christian-langeneggers-computer.crash
    03.09.13 22:46:40.982 com.apple.launchd.peruser.501[182]: (com.apple.Finder[388]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:46:41.200 ReportCrash[394]: Saved crash report for Finder[388] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4641_christian-langeneggers-computer.crash
    03.09.13 22:46:41.203 ReportCrash[394]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222401_christian-langeneggers-computer.crash
    03.09.13 22:47:42.267 com.apple.launchd.peruser.501[182]: (com.apple.Finder[395]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:47:42.502 ReportCrash[401]: Saved crash report for Finder[395] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4742_christian-langeneggers-computer.crash
    03.09.13 22:47:42.506 ReportCrash[401]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222502_christian-langeneggers-computer.crash
    03.09.13 22:48:43.568 com.apple.launchd.peruser.501[182]: (com.apple.Finder[402]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:48:43.785 ReportCrash[409]: Saved crash report for Finder[402] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4843_christian-langeneggers-computer.crash
    03.09.13 22:48:43.788 ReportCrash[409]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222603_christian-langeneggers-computer.crash
    03.09.13 22:49:44.854 com.apple.launchd.peruser.501[182]: (com.apple.Finder[410]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:49:45.072 ReportCrash[416]: Saved crash report for Finder[410] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 4945_christian-langeneggers-computer.crash
    03.09.13 22:49:45.076 ReportCrash[416]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222704_christian-langeneggers-computer.crash
    03.09.13 22:50:46.145 com.apple.launchd.peruser.501[182]: (com.apple.Finder[417]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:50:46.366 ReportCrash[424]: Saved crash report for Finder[417] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5046_christian-langeneggers-computer.crash
    03.09.13 22:50:46.369 ReportCrash[424]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222806_christian-langeneggers-computer.crash
    03.09.13 22:51:47.438 com.apple.launchd.peruser.501[182]: (com.apple.Finder[425]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:51:47.663 ReportCrash[431]: Saved crash report for Finder[425] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5147_christian-langeneggers-computer.crash
    03.09.13 22:51:47.669 ReportCrash[431]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-222910_christian-langeneggers-computer.crash
    03.09.13 22:52:48.737 com.apple.launchd.peruser.501[182]: (com.apple.Finder[432]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:52:48.977 ReportCrash[439]: Saved crash report for Finder[432] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5248_christian-langeneggers-computer.crash
    03.09.13 22:52:48.980 ReportCrash[439]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223010_christian-langeneggers-computer.crash
    03.09.13 22:53:50.024 com.apple.launchd.peruser.501[182]: (com.apple.Finder[440]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:53:50.294 ReportCrash[446]: Saved crash report for Finder[440] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5350_christian-langeneggers-computer.crash
    03.09.13 22:53:50.297 ReportCrash[446]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223112_christian-langeneggers-computer.crash
    03.09.13 22:54:51.329 com.apple.launchd.peruser.501[182]: (com.apple.Finder[447]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:54:51.561 ReportCrash[454]: Saved crash report for Finder[447] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5451_christian-langeneggers-computer.crash
    03.09.13 22:54:51.574 ReportCrash[454]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223224_christian-langeneggers-computer.crash
    03.09.13 22:55:52.619 com.apple.launchd.peruser.501[182]: (com.apple.Finder[455]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:55:52.841 ReportCrash[461]: Saved crash report for Finder[455] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5552_christian-langeneggers-computer.crash
    03.09.13 22:55:52.846 ReportCrash[461]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223347_christian-langeneggers-computer.crash
    03.09.13 22:56:53.940 com.apple.launchd.peruser.501[182]: (com.apple.Finder[462]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:56:54.161 ReportCrash[469]: Saved crash report for Finder[462] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5654_christian-langeneggers-computer.crash
    03.09.13 22:56:54.165 ReportCrash[469]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223448_christian-langeneggers-computer.crash
    03.09.13 22:57:55.237 com.apple.launchd.peruser.501[182]: (com.apple.Finder[470]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:57:55.450 ReportCrash[476]: Saved crash report for Finder[470] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5755_christian-langeneggers-computer.crash
    03.09.13 22:57:55.454 ReportCrash[476]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223552_christian-langeneggers-computer.crash
    03.09.13 22:58:56.506 com.apple.launchd.peruser.501[182]: (com.apple.Finder[477]) Job appears to have crashed: Segmentation fault: 11
    03.09.13 22:58:56.731 ReportCrash[484]: Saved crash report for Finder[477] version 10.8.3 (10.8.3) to /Users/christianlangenegger/Library/Logs/DiagnosticReports/Finder_2013-09-03-22 5856_christian-langeneggers-computer.crash
    03.09.13 22:58:56.735 ReportCrash[484]: Removing excessive log: file://localhost/Users/christianlangenegger/Library/Logs/DiagnosticReports/Find er_2013-09-03-223653_christian-langeneggers-computer.crash
    FIRST CRASH REPORT:
    Process:         Finder [406]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.8.3 (10.8.3)
    Build Info:      Finder_FE-808003001000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [189]
    User ID:         501
    Date/Time:       2013-09-03 20:12:41.325 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Sleep/Wake UUID: D46AA1C3-1916-4FB6-866D-EA8269293442
    Interval Since Last Report:          32117 sec
    Crashes Since Last Report:           501
    Per-App Interval Since Last Report:  31460 sec
    Per-App Crashes Since Last Report:   501
    Anonymous UUID:                      DELETED PER REQUEST
    Crashed Thread:  7
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001017e91b4
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1017e91b4:
    -->
        __TEXT                 000000010a81b000-000000010acd6000 [ 4844K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000011039c686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000011039bc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010d225233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010d22a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010d22a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x000000010be05eb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x000000010be05c52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x000000010be05ae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x000000010dd98533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x000000010dd97df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x000000010dd8f1a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x000000010dd33bd6 NSApplicationMain + 869
    12  com.apple.finder                        0x000000010a820b56 0x10a81b000 + 23382
    13  libdyld.dylib                           0x00000001101be7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000011039ed16 kevent + 10
    1   libdispatch.dylib                       0x0000000110185dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001101859ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x000000011039e322 __select + 10
    1   com.apple.CoreFoundation                0x000000010d269f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00000001102247a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00000001102111e1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000011039e6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110226f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110226d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00000001102111d1 start_wqthread + 13
    Thread 7 Crashed:
    0   ???                                     0x00000001017e91b4 0 + 4320039348
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x000000000000005e  rcx: 0x000000010c71a000  rdx: 0x000000000000005e
      rdi: 0x000000010c71a000  rsi: 0x000000010baf0000  rbp: 0x000000010c71bff4  rsp: 0x000000010c71bf7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x000000010baf0000  r15: 0x0000000000000000
      rip: 0x00000001017e91b4  rfl: 0x0000000000010206  cr2: 0x00000001017e91b4
    Logical CPU: 1
    Binary Images:
           0x10a81b000 -        0x10acd5ff7  com.apple.finder (10.8.3 - 10.8.3) <5AF2416D-6AF0-386F-86D5-A276C74780E6> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10ade2000 -        0x10af02fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10af76000 -        0x10afc7ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10aff6000 -        0x10b2c7ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10b400000 -        0x10b443ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10b456000 -        0x10b45cfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10b46b000 -        0x10b4d9ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10b50b000 -        0x10b5d0ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10b647000 -        0x10b7f5fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10b8b3000 -        0x10b8b3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10b8ba000 -        0x10b8c9fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10b8d7000 -        0x10b9b1fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10ba3a000 -        0x10ba96fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x10bad0000 -        0x10badefff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x10baf3000 -        0x10bcf3fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x10bd95000 -        0x10bd9cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10bda6000 -        0x10c0d6fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10c232000 -        0x10c4e1fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10c720000 -        0x10c81efff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10c8d4000 -        0x10c92efff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10c974000 -        0x10c977fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10c982000 -        0x10cad4fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10cb5f000 -        0x10cc50ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x10ccb6000 -        0x10ccb7fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10ccbf000 -        0x10cd4efff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
           0x10cd76000 -        0x10cdbffff  com.apple.DiskManagement (5.2.1 - 665.1) <8F2C8673-B1DE-33CE-A024-5E179EA8D378> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x10cde5000 -        0x10cdeffff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
           0x10ce00000 -        0x10ce27ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ce4a000 -        0x10ce7efff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10ceac000 -        0x10cf14ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x10cf6e000 -        0x10cf6fff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
           0x10cf7d000 -        0x10d09592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10d0ba000 -        0x10d18cff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10d1f0000 -        0x10d1f0fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10d1f5000 -        0x10d3dfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10d541000 -        0x10d541fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10d549000 -        0x10d8a8fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10dacb000 -        0x10dbe4fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10dc43000 -        0x10e870fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10ef69000 -        0x10f0deff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10f1a3000 -        0x10f1b6ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x10f1c4000 -        0x10f1e5fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10f200000 -        0x10f20dff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10f21f000 -        0x10fbaf4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10fcb8000 -        0x10fd38ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10fd68000 -        0x10fe25ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10fe71000 -        0x10fec7fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10ff00000 -        0x10ff13ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10ff28000 -        0x10ff82fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10ffb1000 -        0x10fff0ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x11000a000 -        0x11001efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x110034000 -        0x110046ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x110052000 -        0x110056fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x110061000 -        0x1100cafff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x110130000 -        0x110135fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x11013c000 -        0x11014afff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x11015e000 -        0x110163fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x11016d000 -        0x110174fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x110181000 -        0x110196ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x1101af000 -        0x1101b0ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x1101bc000 -        0x1101bfff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x1101c7000 -        0x1101c7fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x1101ce000 -        0x1101d6fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x1101e4000 -        0x1101eafff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x1101f4000 -        0x1101f6fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x1101fd000 -        0x1101feff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110206000 -        0x110207fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110210000 -        0x1102dcff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110325000 -        0x11032dff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110337000 -        0x11036dfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x11038c000 -        0x1103a7ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x1103bf000 -        0x1103edff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x1103f9000 -        0x110407ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x11041a000 -        0x110425fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110432000 -        0x110433ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x11043f000 -        0x110441ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x110449000 -        0x11044fff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x11045d000 -        0x11047fff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110497000 -        0x1104e6ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x1104f6000 -        0x110542ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x11055a000 -        0x11057fff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x1105b7000 -        0x1105c5ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x1105cb000 -        0x1108e2ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x11095d000 -        0x1109defff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x110a39000 -        0x110adfff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x110b45000 -        0x110bd2ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x110c1b000 -        0x110c7afff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x110ca9000 -        0x110d5afff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x110dae000 -        0x110ddfff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x110e07000 -        0x110f04fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x110f20000 -        0x11101dff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x111056000 -        0x111065ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x11106e000 -        0x111072fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x11107d000 -        0x11107dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x111084000 -        0x111091fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x11109c000 -        0x111109ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x111145000 -        0x111149ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x111154000 -        0x111155fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111159000 -        0x11117aff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x111188000 -        0x11119ffff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1111ad000 -        0x1111c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1111e0000 -        0x11120bfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x11121e000 -        0x11121efff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x111224000 -        0x11132ffff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x111394000 -        0x1113e3ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x111410000 -        0x1115abfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x1115d1000 -        0x1115d1fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x1115d6000 -        0x11163efff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x11164c000 -        0x1116e6fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1116f8000 -        0x111aeffff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x111b56000 -        0x111cdcfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x111d0c000 -        0x111d34fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x111d42000 -        0x111d97ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x111daa000 -        0x111dcafff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x111dd7000 -        0x111ddbfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x111de0000 -        0x111ee2fff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x111f14000 -        0x111f17fff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x111f1e000 -        0x111f62fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
           0x111f75000 -        0x111f97ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x111fb2000 -        0x111fecff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x11200f000 -        0x11202eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x112039000 -        0x11212efff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x112142000 -        0x1121c4ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x1121ee000 -        0x1121f0fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1121fb000 -        0x112200fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x112211000 -        0x11221cfff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x112224000 -        0x11222fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x11223d000 -        0x11225cff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x112269000 -        0x112276fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x11227f000 -        0x1122a9ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x1122ca000 -        0x11256eff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x112655000 -        0x1126acff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x1126d3000 -        0x11271dff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x112730000 -        0x112737fff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x112743000 -        0x11275afff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x112771000 -        0x1127aefef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x1127ba000 -        0x1127bcfff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x1127c7000 -        0x1127cbfff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x1127d8000 -        0x1127e4fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1127f3000 -        0x11284dff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x112863000 -        0x112c80fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x112e95000 -        0x1130caff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1131ce000 -        0x113211ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x11324f000 -        0x11324fffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x11325c000 -        0x113266fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x113274000 -        0x1132d7ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1132ff000 -        0x113315fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x113327000 -        0x11334efff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x11336b000 -        0x113409ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113440000 -        0x113440fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x113443000 -        0x1134c1ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x113500000 -        0x113509ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x113517000 -        0x1135b2fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x1135d3000 -        0x11362fff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x113678000 -        0x1136aefff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x1136cf000 -        0x113993fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x113be5000 -        0x113bf1ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x113c00000 -        0x113c07fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x113c11000 -        0x113c11fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x113c1a000 -        0x113c54fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x113c89000 -        0x113cc4fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x113cd6000 -        0x113f31ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x114093000 -        0x114146ff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x1141ba000 -        0x1141e6fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x114217000 -        0x1144b2ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x114560000 -        0x1146d1ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x1147de000 -        0x114829fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x114850000 -        0x114b07ff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x114b9e000 -        0x114fdafef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x11506e000 -        0x11506efff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x115075000 -        0x11508ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x1150ae000 -        0x1150fbfff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x115127000 -        0x115285fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x1152d0000 -        0x1153eafff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x11540f000 -        0x115bb6fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x115bd4000 -        0x115c00fff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x115c18000 -        0x115c63fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x115c8c000 -        0x115cdbfff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x115d17000 -        0x115d6eff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x115d7e000 -        0x115d82ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x115d8a000 -        0x115d8dfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x115d99000 -        0x115daefff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x115dd0000 -        0x115dedff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x115e00000 -        0x115e02ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x115e0b000 -        0x115e0dfff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x115e15000 -        0x115ea9ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x115eff000 -        0x115f0aff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x115f16000 -        0x115f6fff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x115fb7000 -        0x115fd2ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x115fee000 -        0x1160f0fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
           0x11615d000 -        0x1163defff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x116408000 -        0x116408fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x116411000 -        0x116481fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x1164d7000 -        0x1164e2ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1164f4000 -        0x116505ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
           0x116511000 -        0x116548ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
           0x11655e000 -        0x116631ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x116699000 -        0x1166e1fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
           0x1166f7000 -        0x116737ff7  com.apple.MediaKit (14

  • Period (SPMON) as input parameter without separator disappears

    Hello @all,
    we have ERP2005 and following problem on a simple selection screen with parameter SPMON (= period, e.g. 10.2006).
    If the user type in 102006 without separator "." than the value 102006 disappears from input field on the selection screen.
    If the user type in 10.2006 than the value remains in the input field and could be processed.
    The parameter is defined as following:
    PARAMETER P_SPMON TYPE SPMON.
    Have anyone an idea what to do for processing with value 102006? I tried to make some conversions in "at selection-screen" but the value is at this time already empty!!! So no conversion helped.
    The correction of OSS-Note 888352 is already installed.
    Under 4.6c this "bug" didn't appeared, here we could type in the period without separator and the system convert it automatically to 10.2006!
    Regards
    Chris
    Message was edited by: Christian David

    Hi Chris
      I dont have any problem with the below code.
    <b>parameters: p_mon like mcs0-spmon.</b>
      Am on 4.7
    Kind Regards
    Eswar

  • The customized settings on my toolbar periodically disappear, and I have to re-set them. How can I avoid this nuisance?

    The customized settings on my toolbar periodically disappear, and I have to re-set them. How can I avoid this nuisance?

    If you mean you're about to perform a restore from a backup to a new device, it depends on the app.  Some will retain their passwords, some will not.  That's my experience.

  • HT204370 Movie disappeared before watching , and before 30'day expiry period!

    My movie I purchased and have not watched yet has disappeared from my  iTunes  account before the 30 days expiry period. i have not clicked play on the movie yet and I purchased less then 30 days ago.  The two movies have disappeared from my iTunes account or perhaps I am not looking for them on my account properly? I have already been billed and its weird because I would to watch from the same device I purchased from... Can someone tell me w how I can get restored on my iTunes account? Thanks!
    Nic-Nac

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • After short period of time my messages are disappearing from my Icloud mail account.Why does it happen?Can I restore them back?

    I can't understand my Icloud mail behavior.All messages I sent are stored in sent box as usual whereas messages I receive are disappearing after short period of time (no more then 2 weeks).Why does it happen?Do I have any chance to restore them?

    Unfotunately I'm not eligable for MAC support over the phone and have to take it in to the Genius Bar. Hmmmpf.
    But I was able to isolate the errors (using Console) that occurred just prior to the network failing:
    8/30/09 10:53:05 AM Dock[231] _DESCRegisterDockExtraClient failed 268435459
    8/30/09 10:53:25 AM SystemUIServer[232] * CFMessagePort: bootstrap_register(): failed 1100 (0x44c) 'Permission denied', port = 0x9307, name = 'com.apple.tsm.uiserver'
    See /usr/include/servers/bootstrap_defs.h for the error codes.
    8/30/09 10:53:25 AM com.apple.launchd[196] ([0x0-0xc00c].com.apple.systemuiserver[232]) Check-in of Mach service failed. PID 232 is not privileged: com.apple.tsm.uiserver
    8/30/09 10:53:33 AM GrowlHelperApp[249] WARNING: could not register Growl server.
    8/30/09 10:53:52 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[259]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    8/30/09 10:54:36 AM [0x0-0x1a01a].com.apple.Safari[261] Debugger() was called!
    8/30/09 11:00:50 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[279]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    8/30/09 11:05:52 AM com.apple.launchd[196] (com.apple.NetworkDiagnostics[290]) Check-in of Mach service failed. Already active: com.apple.NetworkDiagnostic.agent
    Any idea what these mean?

  • Rented movies disappear off iPad before rental period ends

    Hi
    2 of my rented movies (which had over 10 days left in the viewing period) randomly disappeared from the Videos app. I could see the movie covers in the Videos app, and then the app died. When I restarted the app, the "rental" tab was no longer visible. I cant seem to find the movies even if I connect the iPad back to my MacBook/iTunes
    Any similar experiences/suggestions?
    Thanks

    Hi,
    According to the iTunes Help viewer...
    "A rented item expires 30 days after you rent it or 24 hours after you begin playing it, whichever comes first. Expired rentals are deleted automatically"
    If you had started then stopped the movie(s), then it's possible the rental time expired.
    More info here: http://www.apple.com/support/itunes/
    Click: Video Purchases / Rentals / Move rental FAQ's...
    Carolyn

  • ImageIcon doesn't show up on JToolBar

    Hi everybody,
    I'm making a JToolBar, and creating ImageIcons for the buttons, but the ImageIcons don't show up on the buttons. In fact, the buttons don't seem to show up on the toolbar at all. They're obviously there, because the tooltip shows up when you mouse over them, but without the mouseover, there is no outline or image seen on the toolbar. Would anyone mind looking at my test program and helping me figure out why, please? My code is:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JToolBar;
    public class ToolBarTest extends JFrame {
         public ToolBarTest() {
              try {
                   JToolBar toolbar = new JToolBar();
                   String test = "Blah;myimage.gif";
                   String[] data = test.split( ";" );
                  JButton button = new JButton();
                  button.setToolTipText( data[0] );
                  button.setIcon( new ImageIcon( data[1] ) );
                  button.setPreferredSize( new Dimension( 32, 32 ) );
                  toolbar.add( button );
                   add( toolbar, BorderLayout.PAGE_START );
              } catch( Exception e ) {
                   e.printStackTrace();
                   System.exit( -1 );
         public static void main(String[] args) { new ToolBarTest(); }
    }Technically, as I'm sure you can see, this code won't work unless you put a valid image name in there.
    Any help anyone could give me on this, I would really appreciate.
    Thanks,
    Jezzica85

    Hi,
    Just made some tiny changes to your test program. For me it seems to work OK. Because I have no myicon.bmp on the class path, I created a simple image.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.geom.Ellipse2D;
    import java.awt.image.BufferedImage;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JToolBar;
    import javax.swing.SwingUtilities;
    public class ToolBarTest extends JFrame {
        // PB to prevent a warning
        private static final long serialVersionUID = 1L;
         * Create some simple image
        private Image createImage() {
         BufferedImage image = new BufferedImage(32, 32,
              BufferedImage.TYPE_INT_ARGB);
         Graphics2D g = image.createGraphics();
         Ellipse2D dot = new Ellipse2D.Double(0, 0, 32, 32);
         g.setColor(Color.RED);
         g.fill(dot);
         g.dispose();
         return image;
        public ToolBarTest() {
         try {
             JToolBar toolbar = new JToolBar();
             String test = "Blah;myicon.bmp";
             String[] data = test.split(";");
             JButton button = new JButton();
             button.setToolTipText(data[0]);
             // PB button.setIcon(new ImageIcon(data[1]));
             // PB no myicon.bmp in my class path
             button.setIcon(new ImageIcon(createImage()));
             // PB button.setPreferredSize(new Dimension(32, 32));
             toolbar.add(button);
             add(toolbar, BorderLayout.PAGE_START);
             setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             pack(); // PB
             setVisible(true);
         } catch (Exception e) {
             e.printStackTrace();
             System.exit(-1);
        public static void main(String[] args) {
         // PB do GUI stuff on the EDT
         SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
              new ToolBarTest();
    }Piet

Maybe you are looking for