Delaying Error Messages

I'm looking for a way to stop error messages during the excecution of a program. The situation is basically this:
I am currently working on a Labview program that interacts with a program on a different computer using text files. Essentially the labview program provides instructions (in the form of a text file with the instructions for what the temperature of a piece of hardware should be), the other program uses these instructions to change the temperature of the hardware. The other program also constantly updates a text file that represents the current temperature of the piece of hardware. My labview program is then grabbing that text file reading it and recording it in an array with many other temperatures.
The problem is that when the labview program is trying to read the file at the same time as the other program is saving it my labview program gets an error message. Because this program is being used in a research study I obviously dont want error messages going off and delaying my program at random invalidating data etc etc. I'm wondering if theres a way to set my program so rather than producing an error message it simply no longer writes a temperature value to that file but writes "X" or "ERROR" in the spot of that value instead.
Is this possible? Am I going about this the wrong way? I'm relatively new to this so any help would be appreciated.
"There will be water if God wills it"

Here is what I do for your specific problem
The creator of the file does this:
Create an empty file named "file.lock"
Create or modify actual file named "file.txt"
Delete "file.lock"
The consumer of the file does this:
Look for files with .txt extension
Finds "file.txt"
Checks if "file.lock" exists
If "file.lock" does not exist then read "file.txt"
If "file.lock" does exist then start over
As others have pointed out you might take advantage of the OS file copy functions as they do something similar at a lower level or just retry.
=====================
LabVIEW 2012

Similar Messages

  • "Class Circle not found in TryBouncingBalls" error message. Help !

    Dear People,
    I have an error message :
    "TryBouncingBalls.java": Error : class Circle not found in class stan_bluej_ch5_p135.TryBouncingBalls at line 67, "
    Circle circle = new Circle(xPos + 130, 30);
    below are the classes TryBouncingBalls, BouncingBall, BallDemo, Canvas
    Thank you in advance
    Stan
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    public class TryBouncingBalls
    public static void main(String[] args)
    Canvas myCanvas = new Canvas("Creativity at its best");
    myCanvas.setVisible(true);
    BouncingBall ball = new BouncingBall(50,50,16, Color.red, 500, myCanvas);
    BouncingBall ball2 = new BouncingBall(70,80,20, Color.green, 500, myCanvas);
    BouncingBall ball3 = new BouncingBall(90,100,16, Color.red, 500, myCanvas);
    BouncingBall ball4 = new BouncingBall(30,30,20, Color.green, 500, myCanvas);
    ball.draw();
    ball2.draw();
    ball.draw();
    ball2.draw();
    // make them bounce
    boolean finished = false;
    while(!finished) {
    myCanvas.wait(50); // small delay
    ball.move();
    ball2.move();
    ball3.move();
    ball4.move();
    // stop once ball has travelled a certain distance on x axis
    if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550)
    finished = true;
    myCanvas.setFont(new Font("helvetica", Font.BOLD, 14));
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("We are having fun, ...\n\n", 20, 30);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.black);
    myCanvas.drawString("...drawing lines...", 60, 60);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawLine(200, 20, 300, 50);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.blue);
    myCanvas.drawLine(220, 100, 370, 40);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.green);
    myCanvas.drawLine(290, 10, 320, 120);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawString("...and shapes!", 110, 90);
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("to bring to focus creative ideas !", 310, 290);
    // the shape to draw and move
    int xPos = 10;
    Rectangle rect = new Rectangle(xPos + 40, 150, 30, 20);
    Rectangle rect2 = new Rectangle(xPos + 80, 120, 50, 25);
    Rectangle rect3 = new Rectangle(xPos+ 1200, 180, 30, 30);
    Rectangle rect4 = new Rectangle(xPos + 150, 220, 40, 15);
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    Circle circle = new Circle(xPos + 130, 30);
    // Circle circle2 = new Circle(xPos + 150, 50);
    // Circle circle3 = new Circle(xPos + 170, 30);
    // Circle circle4 = new Circle(xPos + 200, 40);
    // myCanvas.fill(circle);
    // myCanvas.fill(circle2);
    // myCanvas.fill(circle3);
    // myCanvas.fill(circle4);
    // move the rectangle and circles across the screen
    for(int i = 0; i < 200; i ++) {
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    myCanvas.wait(10);
    myCanvas.erase(rect);
    myCanvas.erase(rect2);
    myCanvas.erase(rect3);
    myCanvas.erase(rect4);
    xPos++;
    rect.setLocation(xPos, 150);
    rect2.setLocation(xPos, 120);
    rect3.setLocation(xPos, 180);
    rect4.setLocation(xPos, 220);
    // at the end of the move, draw once more so that it remains visible
    myCanvas.fill(rect);
    myCanvas.fill(rect2);
    myCanvas.fill(rect3);
    myCanvas.fill(rect4);
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    * Class BouncingBall - a graphical ball that observes the effect of gravity. The ball
    * has the ability to move. Details of movement are determined by the ball itself. It
    * will fall downwards, accelerating with time due to the effect of gravity, and bounce
    * upward again when hitting the ground.
    * This movement can be initiated by repeated calls to the "move" method.
    * @author Bruce Quig
    * @author Michael Kolling (mik)
    * @author David J. Barnes
    * @version 1.1 (23-Jan-2002)
    public class BouncingBall
    private static final int gravity = 3; // effect of gravity
    private int ballDegradation = 2;
    private Ellipse2D.Double circle;
    private Color color;
    private int diameter;
    private int xPosition;
    private int yPosition;
    private final int groundPosition; // y position of ground
    private Canvas canvas;
    private int ySpeed = 1; // initial downward speed
    * Constructor for objects of class BouncingBall
    * @param xPos the horizontal coordinate of the ball
    * @param yPos the vertical coordinate of the ball
    * @param ballDiameter the diameter (in pixels) of the ball
    * @param ballColor the color of the ball
    * @param groundPos the position of the ground (where the wall will bounce)
    * @param drawingCanvas the canvas to draw this ball on
    public BouncingBall(int xPos, int yPos, int ballDiameter, Color ballColor,
    int groundPos, Canvas drawingCanvas)
    xPosition = xPos;
    yPosition = yPos;
    color = ballColor;
    diameter = ballDiameter;
    groundPosition = groundPos;
    canvas = drawingCanvas;
    * Draw this ball at its current position onto the canvas.
    public void draw()
    canvas.setForegroundColor(color);
    canvas.fillCircle(xPosition, yPosition, diameter);
    * Erase this ball at its current position.
    public void erase()
    canvas.eraseCircle(xPosition, yPosition, diameter);
    * Move this ball according to its position and speed and redraw.
    public void move()
    // remove from canvas at the current position
    erase();
    // compute new position
    ySpeed += gravity;
    yPosition += ySpeed;
    xPosition +=2;
    // check if it has hit the ground
    if(yPosition >= (groundPosition - diameter) && ySpeed > 0) {
    yPosition = (int)(groundPosition - diameter);
    ySpeed = -ySpeed + ballDegradation;
    // draw again at new position
    draw();
    * return the horizontal position of this ball
    public int getXPosition()
    return xPosition;
    * return the vertical position of this ball
    public int getYPosition()
    return yPosition;
    package stan_bluej_ch5_p135;
    import java.awt.*;
    import java.awt.geom.*;
    * Class BallDemo - provides two short demonstrations showing how to use the
    * Canvas class.
    * @author Michael Kolling and David J. Barnes
    * @version 1.0 (23-Jan-2002)
    public class BallDemo
    private Canvas myCanvas;
    * Create a BallDemo object. Creates a fresh canvas and makes it visible.
    public BallDemo()
    myCanvas = new Canvas("Ball Demo", 600, 500);
    myCanvas.setVisible(true);
    * This method demonstrates some of the drawing operations that are
    * available on a Canvas object.
    public void drawDemo()
    myCanvas.setFont(new Font("helvetica", Font.BOLD, 14));
    myCanvas.setForegroundColor(Color.red);
    myCanvas.drawString("We can draw text, ...", 20, 30);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.black);
    myCanvas.drawString("...draw lines...", 60, 60);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawLine(200, 20, 300, 50);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.blue);
    myCanvas.drawLine(220, 100, 370, 40);
    myCanvas.wait(500);
    myCanvas.setForegroundColor(Color.green);
    myCanvas.drawLine(290, 10, 320, 120);
    myCanvas.wait(1000);
    myCanvas.setForegroundColor(Color.gray);
    myCanvas.drawString("...and shapes!", 110, 90);
    myCanvas.setForegroundColor(Color.red);
    // the shape to draw and move
    int xPos = 10;
    Rectangle rect = new Rectangle(xPos, 150, 30, 20);
    // move the rectangle across the screen
    for(int i = 0; i < 200; i ++) {
    myCanvas.fill(rect);
    myCanvas.wait(10);
    myCanvas.erase(rect);
    xPos++;
    rect.setLocation(xPos, 150);
    // at the end of the move, draw once more so that it remains visible
    myCanvas.fill(rect);
    * Simulates two bouncing balls
    public void bounce()
    int ground = 400; // position of the ground line
    myCanvas.setVisible(true);
    // draw the ground
    myCanvas.drawLine(50, ground, 550, ground);
    // crate and show the balls
    BouncingBall ball = new BouncingBall(50, 50, 16, Color.blue, ground, myCanvas);
    ball.draw();
    BouncingBall ball2 = new BouncingBall(70, 80, 20, Color.red, ground, myCanvas);
    ball2.draw();
    // make them bounce
    boolean finished = false;
    while(!finished) {
    myCanvas.wait(50); // small delay
    ball.move();
    ball2.move();
    // stop once ball has travelled a certain distance on x axis
    if(ball.getXPosition() >= 550 && ball2.getXPosition() >= 550)
    finished = true;
    ball.erase();
    ball2.erase();
    package stan_bluej_ch5_p135;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.geom.*;
    * Class Canvas - a class to allow for simple graphical
    * drawing on a canvas.
    * @author Michael Kolling (mik)
    * @author Bruce Quig
    * @version 1.8 (23.01.2002)
    public class Canvas
    private JFrame frame;
    private CanvasPane canvas;
    private Graphics2D graphic;
    private Color backgroundColor;
    private Image canvasImage;
    * Create a Canvas with default height, width and background color
    * (300, 300, white).
    * @param title title to appear in Canvas Frame
    public Canvas(String title)
    this(title, 600, 600, Color.white);
    * Create a Canvas with default background color (white).
    * @param title title to appear in Canvas Frame
    * @param width the desired width for the canvas
    * @param height the desired height for the canvas
    public Canvas(String title, int width, int height)
    this(title, width, height, Color.white);
    * Create a Canvas.
    * @param title title to appear in Canvas Frame
    * @param width the desired width for the canvas
    * @param height the desired height for the canvas
    * @param bgClour the desired background color of the canvas
    public Canvas(String title, int width, int height, Color bgColor)
    frame = new JFrame();
    canvas = new CanvasPane();
    frame.setContentPane(canvas);
    frame.setTitle(title);
    canvas.setPreferredSize(new Dimension(width, height));
    backgroundColor = bgColor;
    frame.pack();
    * Set the canvas visibility and brings canvas to the front of screen
    * when made visible. This method can also be used to bring an already
    * visible canvas to the front of other windows.
    * @param visible boolean value representing the desired visibility of
    * the canvas (true or false)
    public void setVisible(boolean visible)
    if(graphic == null) {
    // first time: instantiate the offscreen image and fill it with
    // the background color
    Dimension size = canvas.getSize();
    canvasImage = canvas.createImage(size.width, size.height);
    graphic = (Graphics2D)canvasImage.getGraphics();
    graphic.setColor(backgroundColor);
    graphic.fillRect(0, 0, size.width, size.height);
    graphic.setColor(Color.black);
    frame.show();
    * Provide information on visibility of the Canvas.
    * @return true if canvas is visible, false otherwise
    public boolean isVisible()
    return frame.isVisible();
    * Draw the outline of a given shape onto the canvas.
    * @param shape the shape object to be drawn on the canvas
    public void draw(Shape shape)
    graphic.draw(shape);
    canvas.repaint();
    * Fill the internal dimensions of a given shape with the current
    * foreground color of the canvas.
    * @param shape the shape object to be filled
    public void fill(Shape shape)
    graphic.fill(shape);
    canvas.repaint();
    * Fill the internal dimensions of the given circle with the current
    * foreground color of the canvas.
    public void fillCircle(int xPos, int yPos, int diameter)
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, yPos, diameter, diameter);
    fill(circle);
    * Fill the internal dimensions of the given rectangle with the current
    * foreground color of the canvas. This is a convenience method. A similar
    * effect can be achieved with the "fill" method.
    public void fillRectangle(int xPos, int yPos, int width, int height)
    fill(new Rectangle(xPos, yPos, width, height));
    * Erase the whole canvas.
    public void erase()
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    Dimension size = canvas.getSize();
    graphic.fill(new Rectangle(0, 0, size.width, size.height));
    graphic.setColor(original);
    canvas.repaint();
    * Erase the internal dimensions of the given circle. This is a
    * convenience method. A similar effect can be achieved with
    * the "erase" method.
    public void eraseCircle(int xPos, int yPos, int diameter)
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, yPos, diameter, diameter);
    erase(circle);
    * Erase the internal dimensions of the given rectangle. This is a
    * convenience method. A similar effect can be achieved with
    * the "erase" method.
    public void eraseRectangle(int xPos, int yPos, int width, int height)
    erase(new Rectangle(xPos, yPos, width, height));
    * Erase a given shape's interior on the screen.
    * @param shape the shape object to be erased
    public void erase(Shape shape)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.fill(shape); // erase by filling background color
    graphic.setColor(original);
    canvas.repaint();
    * Erases a given shape's outline on the screen.
    * @param shape the shape object to be erased
    public void eraseOutline(Shape shape)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.draw(shape); // erase by drawing background color
    graphic.setColor(original);
    canvas.repaint();
    * Draws an image onto the canvas.
    * @param image the Image object to be displayed
    * @param x x co-ordinate for Image placement
    * @param y y co-ordinate for Image placement
    * @return returns boolean value representing whether the image was
    * completely loaded
    public boolean drawImage(Image image, int x, int y)
    boolean result = graphic.drawImage(image, x, y, null);
    canvas.repaint();
    return result;
    * Draws a String on the Canvas.
    * @param text the String to be displayed
    * @param x x co-ordinate for text placement
    * @param y y co-ordinate for text placement
    public void drawString(String text, int x, int y)
    graphic.drawString(text, x, y);
    canvas.repaint();
    * Erases a String on the Canvas.
    * @param text the String to be displayed
    * @param x x co-ordinate for text placement
    * @param y y co-ordinate for text placement
    public void eraseString(String text, int x, int y)
    Color original = graphic.getColor();
    graphic.setColor(backgroundColor);
    graphic.drawString(text, x, y);
    graphic.setColor(original);
    canvas.repaint();
    * Draws a line on the Canvas.
    * @param x1 x co-ordinate of start of line
    * @param y1 y co-ordinate of start of line
    * @param x2 x co-ordinate of end of line
    * @param y2 y co-ordinate of end of line
    public void drawLine(int x1, int y1, int x2, int y2)
    graphic.drawLine(x1, y1, x2, y2);
    canvas.repaint();
    * Sets the foreground color of the Canvas.
    * @param newColor the new color for the foreground of the Canvas
    public void setForegroundColor(Color blue)
    graphic.setColor(Color.blue);
    * Returns the current color of the foreground.
    * @return the color of the foreground of the Canvas
    public Color getForegroundColor()
    return graphic.getColor();
    * Sets the background color of the Canvas.
    * @param newColor the new color for the background of the Canvas
    public void setBackgroundColor(Color newColor)
    backgroundColor = newColor;
    graphic.setBackground(newColor);
    * Returns the current color of the background
    * @return the color of the background of the Canvas
    public Color getBackgroundColor()
    return backgroundColor;
    * changes the current Font used on the Canvas
    * @param newFont new font to be used for String output
    public void setFont(Font newFont)
    graphic.setFont(newFont);
    * Returns the current font of the canvas.
    * @return the font currently in use
    public Font getFont()
    return graphic.getFont();
    * Sets the size of the canvas.
    * @param width new width
    * @param height new height
    public void setSize(int width, int height)
    canvas.setPreferredSize(new Dimension(width, height));
    Image oldImage = canvasImage;
    canvasImage = canvas.createImage(width, height);
    graphic = (Graphics2D)canvasImage.getGraphics();
    graphic.drawImage(oldImage, 0, 0, null);
    frame.pack();
    * Returns the size of the canvas.
    * @return The current dimension of the canvas
    public Dimension getSize()
    return canvas.getSize();
    * Waits for a specified number of milliseconds before finishing.
    * This provides an easy way to specify a small delay which can be
    * used when producing animations.
    * @param milliseconds the number
    public void wait(int milliseconds)
    try
    Thread.sleep(milliseconds);
    catch (InterruptedException e)
    // ignoring exception at the moment
    * Nested class CanvasPane - the actual canvas component contained in the
    * Canvas frame. This is essentially a JPanel with added capability to
    * refresh the image drawn on it.
    private class CanvasPane extends JPanel
    public void paint(Graphics g)
    g.drawImage(canvasImage, 0, 0, null);

    Dear Miciuli,
    I found the definition for the circle in the canvas class and used it to creates circles ! Thank you for jaring my brain into thinking !
    Stan
    Ellipse2D.Double circle = new Ellipse2D.Double(xPos, 70, 30 , 30);

  • Error message about firewall and internet sharing

    hello all i have a question regarding the use of firewall and internet sharing.
    I have a PMG5 connected to internet through Airport. I've linked an Xbox 360 via the built-in ethernet port in order to access Xbox Live. I had to open specific UDP ports on the OS X firewall but it now works fine. However, in the Sharing Preference Pane, Internet Tab, i still get an error message saying that my Internet Sharing is disturbed by the settings of the firewall and sharing services, it says that i did not activate "personal web sharing" in the first two tabs...but i DID ! And there's no way to get rid of this error message.
    I know I know some may consider it's not a real problem because it's just an error message while the connection actually works fine but well, I tend to hate error messages when they're not supposed to show up. So if anyone know the answer, thanks in advance...
    Good day to everyone
    Vince, Paris...

    sorry about the delay in replying, was kinda busy
    well trashing the pref files was useless and i tried with another user, same thing. As for the second opinion, the problem was not about which port was used cause as i said the connection sharing works fine and anyway it was the correct port that was checked, it's just that i get an error message while there is no apparent error and everything works fine, i'm told that personal web sharing is not enabled but it is...
    Anyway as i said, it's probably not a real matter, as long as it works...which brings me to another thing. I've created a special protocol in the firewall to enable a proper dialog with the xbox. it's basically the same thing you do for ichat AV when you have video connection problems, you track down the concerned UDP port using terminal, you allow traffic and all... The protocol for the xbox worked great for some days, but now it seems it's not enough, the game set keeps trying on another port and i constantly have to update the protocol or deactivate the firewall...and enabling back all UDP traffic is not enough to solve it.
    In a way i think everything is linked, the initial error message when everything was fine and the current trouble. Any idea?
    thanks
    Vince

  • Logic won't open, long error message

    Hi Apple Support Community.
    I am running Logic version 9.1.7 on OS X 10.6.8 on an iMac with a 2GHz Intel Core 2 Duo processor with 2.5 GB 667MHz DDR2 SDRAM.
    For reasons I cannot understand my Logic version will not open. When the application shortcut clicked on, the dialog panel which shows the various assets Logic is initialising appears (Loop Library, ec), and after the Core Audio is initialised the application closes, and this error message appears:
    Process:    
    Logic Pro [2045]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.7 (1700.57)
    Build Info: 
    Logic-17005700~1
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [151]
    Date/Time:  
    2012-08-14 15:25:15.411 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    394136 sec
    Crashes Since Last Report:      
    3
    Per-App Interval Since Last Report:  20 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    8368D8D8-434C-4589-BA0E-2A3D368AA022
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x98e0008a sem_wait$NOCANCEL$UNIX2003 + 10
    1   ...lodyneEssentialRewireDevice
    0x41ce21b4 GNCondition::waitForSignal() + 32
    2   ...lodyneEssentialRewireDevice
    0x41ce1d4f GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 315
    3   ...lodyneEssentialRewireDevice
    0x41c83dbe GNReWire2AudioDeviceHost::create() + 172
    4   ...lodyneEssentialRewireDevice
    0x41c81f3f RWDEFOpenDevice + 89
    5   ...opellerheads.rewire.library
    0x41c0684e 0x41c02000 + 18510
    6   ...opellerheads.rewire.library
    0x41c069b8 0x41c02000 + 18872
    7   ...opellerheads.rewire.library
    0x41c098e0 RWPUnregisterDeviceImp + 5438
    8   ...opellerheads.rewire.library
    0x41c07689 RWM2OpenDeviceImp + 57
    9   ...le.music.apps.MAAudioEngine
    0x02b24caa ReWireUpdateMIDIInfos() + 3226
    10  ...le.music.apps.MAAudioEngine
    0x02b0c3bb MD::Init(int, bool) + 2555
    11  ...le.music.apps.MAAudioEngine
    0x02b16ae2 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 11954
    12  com.apple.logic.pro      
    0x000b6eeb std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 504955
    13  com.apple.logic.pro      
    0x000b9a41 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 516049
    14  com.apple.logic.pro      
    0x003e5b15 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842213
    15  com.apple.logic.pro      
    0x001c567e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1612814
    16  com.apple.logic.pro      
    0x001c9c8c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1630748
    17  com.apple.logic.pro      
    0x00619983 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6151955
    18  com.apple.Foundation     
    0x9192edb3 _nsnote_callback + 176
    19  com.apple.CoreFoundation 
    0x94b3f763 __CFXNotificationPost + 947
    20  com.apple.CoreFoundation 
    0x94b3f16a _CFXNotificationPostNotification + 186
    21  com.apple.Foundation     
    0x91923c50 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22  com.apple.Foundation     
    0x9193105d -[NSNotificationCenter postNotificationName:object:] + 56
    23  com.apple.AppKit         
    0x96ffb216 -[NSApplication _postDidFinishNotification] + 125
    24  com.apple.AppKit         
    0x96ffb126 -[NSApplication _sendFinishLaunchingNotification] + 74
    25  com.apple.AppKit         
    0x97152339 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26  com.apple.AppKit         
    0x97151f59 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27  com.apple.Foundation     
    0x919641f8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28  com.apple.Foundation     
    0x91963fbc _NSAppleEventManagerGenericHandler + 228
    29  com.apple.AE             
    0x918e8f5c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30  com.apple.AE             
    0x918e8e5b dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31  com.apple.AE             
    0x918e8d65 aeProcessAppleEvent + 197
    32  com.apple.HIToolbox      
    0x93456197 AEProcessAppleEvent + 50
    33  com.apple.AppKit         
    0x96fcb7d2 _DPSNextEvent + 1420
    34  com.apple.AppKit         
    0x96fcadd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35  com.apple.AppKit         
    0x96f8d1f3 -[NSApplication run] + 821
    36  com.apple.prokit         
    0x00fc63f6 NSProApplicationMain + 326
    37  com.apple.logic.pro      
    0x0002b1c5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x98db0382 kevent + 10
    1   libSystem.B.dylib        
    0x98db0a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x98daff59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x98dafcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x98daf781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x98daf5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x98d89afa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x98d8a267 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x94b212df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation 
    0x94b203c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation 
    0x94b201f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation     
    0x91968224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation     
    0x9192f4c4 -[NSThread main] + 45
    7   com.apple.Foundation     
    0x9192f474 __NSThread__main__ + 1499
    8   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    9   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib        
    0x98daf412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x98daf9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x98daf5c6 start_wqthread + 30
    Thread 4:
    0   libSystem.B.dylib        
    0x98d89b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib        
    0x98e0005f pthread_cond_wait + 48
    3   com.apogee.ONEPlugIn     
    0x03f9f84a apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 62
    4   com.apogee.ONEPlugIn     
    0x03f9fef7 ClientBiDirConnection::HandlePropertyChanges() + 27
    5   com.apogee.ONEPlugIn     
    0x03f9ff41 PthreadHandlingPropertyChanges(void*) + 21
    6   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    7   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib        
    0x98d89b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib        
    0x98e0005f pthread_cond_wait + 48
    3   com.apogee.ONEPlugIn     
    0x03f9f2c6 MessageTX::TXThread() + 76
    4   com.apogee.ONEPlugIn     
    0x03f9f583 TransmitThread(void*) + 21
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib        
    0x98dc4a5a recvfrom$NOCANCEL$UNIX2003 + 10
    1   libSystem.B.dylib        
    0x98e2e8bd recv + 54
    2   com.apogee.ONEPlugIn     
    0x03fa0329 ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 83
    3   com.apogee.ONEPlugIn     
    0x03f9e7d6 MessageRX::RXThread() + 136
    4   com.apogee.ONEPlugIn     
    0x03f9ec77 ReceiveThread(void*) + 21
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 7:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x98da8ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x94b60c53 __CFSocketManager + 1091
    2   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    3   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib        
    0x98d89afa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x98d8a267 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x94b212df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation 
    0x94b203c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation 
    0x94b26304 CFRunLoopRun + 84
    5   com.apple.DVCPROHDMuxer  
    0x3a3b1507 AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 285
    6   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    7   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib        
    0x98db7aa2 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x98db775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib        
    0x98db93f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles 
    0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles 
    0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib        
    0x98db7aa2 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x98db775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib        
    0x98db93f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles 
    0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles 
    0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib        
    0x98d89b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib        
    0x98de65a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio
    0x98f583ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio
    0x98f5b3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio
    0x98f58cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio
    0x98f58571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio
    0x98f58488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    9   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib        
    0x98d89b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98d8f646 pthread_mutex_lock + 490
    2   ...opellerheads.rewire.library
    0x41c2870d RWPUnregisterDeviceImp + 131947
    3   ...opellerheads.rewire.library
    0x41c0cf68 RWPUnregisterDeviceImp + 19398
    4   ...opellerheads.rewire.library
    0x41c0d7d4 RWPUnregisterDeviceImp + 21554
    5   ...opellerheads.rewire.library
    0x41c28a5c RWPUnregisterDeviceImp + 132794
    6   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    7   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 13 Crashed:
    0   ???                      
    0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice
    0x41cc38ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    3   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 13 crashed with X86 Thread State (32-bit):
      eax: 0x3d49caa0  ebx: 0x41ce1988  ecx: 0x3d88bc34  edx: 0x3d49c970
      edi: 0x3d88bc30  esi: 0xb0631000  ebp: 0xb0630f48  esp: 0xb0630f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0x1000 -   0xbe7ff7  com.apple.logic.pro 9.1.7 (1700.57) <E0B8F147-B690-4889-84FF-A409F39B402F> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe81000 -   0xe9ffef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeae000 -   0xee1fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.7 (233.39) <13FB1823-E7E6-A34B-6D89-E30D01605DC1> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xeee000 -   0xf1fff3  com.apple.musicaudiodataservices 1.1 (250.92) <11E60B69-F34E-72B0-DC8E-BC23B4D9D949> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf2e000 -   0xf8cff3  com.apple.music.apps.MALoopManagement 9.1.7 (218.94) <E1772A24-827D-AF1F-7C09-E25FC729F95B> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa2000 -  0x11dafff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e2000 -  0x135dfff  com.apple.music.apps.MACore 9.1.7 (477.48) <5D0BB5DF-13EB-1759-F1B9-4275EEE287B3> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x137d000 -  0x13c9ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13ee000 -  0x1444ff7  com.apple.music.apps.MAHarmony 9.1.7 (198.94) <BE3356F3-9B77-81AF-9D4E-2F9F036B7491> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x145b000 -  0x1874ff7  com.apple.music.apps.MAPlugInGUI 9.1.7 (424.69) <6C2FD01C-3CAA-F456-B695-FCB5638A4EDE> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a92000 -  0x1b74feb  com.apple.music.apps.OMF 9.1.7 (108.93) <5A2D5ABF-97B8-E67D-EF60-BD3CEA462CDE> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b88000 -  0x21d9fe3  com.apple.music.apps.MADSP 9.1.7 (588.88) <4E4B1FA7-6D09-E835-09B8-FC5700B6D425> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28be000 -  0x28dfff7  com.apple.music.apps.LogicFileBrowser 9.1.7 (1700.57) <EEAE4BD4-7F0C-3331-2C94-6EBA3E5F518F> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28e8000 -  0x2961ff7  com.apple.music.apps.LogicLoopBrowser 9.1.7 (1700.57) <8CACC777-C6A7-432C-ADB9-E7F1865F8544> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2975000 -  0x2996ff7  com.apple.music.apps.MAApogeeSupport 9.1.7 (311.94) <F09251F0-B26D-CA6C-8B7A-6711EE4331D1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x299b000 -  0x29a0ff7  com.apple.music.apps.MAResources 9.1.7 (211.95) <176392C0-73D0-4698-C1AC-114BB5C05A2B> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29a4000 -  0x29cdfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29de000 -  0x29eeff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a02000 -  0x2a0eff3  com.apple.music.apps.MAUnitTest 9.1.7 (95.94) <D8B89167-A7D2-2C2F-B401-1E17BD85C2FD> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a16000 -  0x2accfff  com.apple.music.apps.MAFiles 9.1.7 (144.77) <DCD9D7C3-B474-5A9D-5E1D-6CA3D2461D69> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2ae5000 -  0x2b5cfe7  com.apple.music.apps.MAAudioEngine 9.1.7 (158.32) <3391175C-45EA-CF4C-29CE-B40AED2B40CD> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bc3000 -  0x2bceff7  com.apple.music.apps.MAToolKit 9.1.7 (357.98) <B3F36681-3427-CDFC-B975-568F14996D02> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bd2000 -  0x2be6ff7  com.apple.music.apps.MAVideo 9.1.7 (11.99) <7BFFFBAF-7564-4CD5-DA1D-98D57E2D8D55> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2bf9000 -  0x2caefe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2cf4000 -  0x2d34ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2d4d000 -  0x2de9ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2ea3000 -  0x2ed8ff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3e0f000 -  0x3e1cff7  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <665A3308-8C50-655A-ED3F-49AF695A408E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x3f8b000 -  0x3f8fff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x3f94000 -  0x3fa9fff  com.apogee.ONEPlugIn 1.6.0 (1.6.0) <AB35C5A3-D386-4913-9DB5-B8C21803645A> /System/Library/Extensions/ONEPlugIn.bundle/Contents/MacOS/ONEPlugIn
    0x3fb8000 -  0x3fbeff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3ff4000 -  0x3ff7fff  com.apple.LiveType.component 2.1.2 (2.1.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3a132000 - 0x3a163fe3 +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3 (8.0.3f251) <ADB5FDA4-3D82-CD5C-8351-880824F96736> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x3a19a000 - 0x3a1ecfc3  com.apple.DVCPROHDAudio 1.2 (1.2) /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x3a26a000 - 0x3a272ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x3a297000 - 0x3a2fcffe  com.apple.LiveType.framework 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3a31c000 - 0x3a374fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3a398000 - 0x3a39bff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x3a3a0000 - 0x3a3e7fef  com.apple.DVCPROHDMuxer 1.2 (1.2) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x3a44c000 - 0x3a470fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x3a478000 - 0x3a47aff3  com.apple.music.apps.anvil.resources 9.1.7 (279.92) <7CBFA410-D449-1520-1E28-2018E56ECE3E> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x3a47e000 - 0x3a480ff3  com.apple.music.apps.common.resources 9.1.7 (279.92) <47B50610-3A6B-B7E6-7D9F-633EE00536BF> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x3a484000 - 0x3a486ff3  com.apple.music.apps.ebp.resources 9.1.7 (279.92) <491FACE3-30A1-8165-DFE1-CDB0FD08351A> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x3a48a000 - 0x3a48cff3  com.apple.music.apps.efx.resources 9.1.7 (279.92) <C597C91D-FEE9-A1CB-D44F-E1EBE79719CF> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x3a490000 - 0x3a492ff3  com.apple.music.apps.egt.resources 9.1.7 (279.92) <30026FE6-7623-C6B3-6771-A121ACC8B762> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x3a4e0000 - 0x3a4e2ff3  com.apple.music.apps.emx.resources 9.1.7 (279.92) <7C00E73C-087D-B18A-FBBE-3CB9A34A7290> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x3a4e6000 - 0x3a4e8ff3  com.apple.music.apps.es1.resources 9.1.7 (279.92) <E9799913-9D77-B551-2F7C-3C5CF7CCDF5C> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x3a4ec000 - 0x3a4eeff3  com.apple.music.apps.es2.resources 9.1.7 (279.92) <D85546C3-B00F-0A52-EE11-EC05210E6431> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x3a4f2000 - 0x3a4f4ff3  com.apple.music.apps.esp.resources 9.1.7 (279.92) <22469760-92CC-70D1-098F-A71D666D2030> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x3a4f8000 - 0x3a4faff3  com.apple.music.apps.evb3.resources 9.1.7 (279.92) <BAD8B6B6-E451-43B2-E56C-93279FB16A6E> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x3a830000 - 0x3a832ff3  com.apple.music.apps.evd6.resources 9.1.7 (279.92) <21C25CAD-1A0B-2ADF-FAA9-A66F6034E82D> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x3a836000 - 0x3a838ff3  com.apple.music.apps.evoc.resources 9.1.7 (279.92) <B958C220-125C-8DFD-B829-D6ABFEAC7A11> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x3a83c000 - 0x3a83eff3  com.apple.music.apps.evp88.resources 9.1.7 (279.92) <CBA089F8-35D9-F012-43BE-F79149490FE0> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x3a842000 - 0x3a844ff3  com.apple.music.apps.exs24.resources 9.1.7 (279.92) <11C21376-ED55-88F0-C965-DD554EA4DF81> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x3a848000 - 0x3a84aff3  com.apple.music.apps.guitaramp.resources 9.1.7 (279.92) <03A47674-0672-A373-9628-0F10B1065A04> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x3a84e000 - 0x3a850ff3  com.apple.music.apps.guitarcontrols.resources 9.1.7 (279.92) <6A1F7841-22E5-D35E-D3A7-341280342B5C> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x3a854000 - 0x3a856ff3  com.apple.music.apps.mutapdel.resources 9.1.7 (279.92) <DD838B34-3651-F30C-D52F-7CF44EF2AD30> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x3b331000 - 0x3b4aaff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3b4dc000 - 0x3b718fef  com.apple.ATIRadeonX1000GLDriver 1.6.36 (6.3.6) <5370EAFE-71E0-6740-7C3F-705442BFC504> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x3bb24000 - 0x3bb26ff3  com.apple.music.apps.pedalboard.resources 9.1.7 (279.92) <79A8F7E2-566C-DF8F-C336-8D075A434E62> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x3bb2a000 - 0x3bb2cff3  com.apple.music.apps.revolver.resources 9.1.7 (279.92) <DE04D8A8-A797-342B-B3BB-0AA349CAC457> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x3bb30000 - 0x3bb32ff3  com.apple.music.apps.sphere.resources 9.1.7 (279.92) <4DDC2503-F323-ED3F-1F18-B05F5611E5A4> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x3bfc3000 - 0x3bfdeff7  com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x41c02000 - 0x41c61fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x41c80000 - 0x41d1eff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    0x90003000 - 0x900bcfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x900dd000 - 0x9018dfe3  com.apple.QuickTimeImporters.component 7.6.6 (1790) <F2F9FAA1-3B6D-722B-3ECA-2395588D3B20> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9018e000 - 0x9019dfe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x9019e000 - 0x9019fff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x902b8000 - 0x90392fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90393000 - 0x9068dfef  com.apple.QuickTime 7.6.6 (1790) <A5B2CDA8-47C9-F1AE-ED54-625B0FAB426F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9068e000 - 0x9068eff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9068f000 - 0x906affe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x906c3000 - 0x906cfff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x906e4000 - 0x906ebff7  com.apple.agl 3.0.12 (AGL-3.0.12) <37255DC6-9FD1-45CC-AC80-A84FD2B5450A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x906ec000 - 0x9070dfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9070e000 - 0x90b24ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90b25000 - 0x90c67ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90c68000 - 0x90cbeff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x90cbf000 - 0x90d77feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90d78000 - 0x90d7afe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x90dea000 - 0x90dedff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90dee000 - 0x90deeff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90def000 - 0x90e59fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x90e5a000 - 0x90e60fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x90e61000 - 0x90e61ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90e8e000 - 0x910b9ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x910ba000 - 0x91166fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9121e000 - 0x91295ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x912a3000 - 0x912b4ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91412000 - 0x91453ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91454000 - 0x91476fef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91477000 - 0x91478ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91479000 - 0x914b6ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x914b7000 - 0x914f2fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x914f3000 - 0x914f7ff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91579000 - 0x918e4ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x918e5000 - 0x91918ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91919000 - 0x91b8afef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91ba4000 - 0x91ba4ff7  com.apple.Carbon 150 (152) <BFDDA394-0F01-A3A3-A226-ED3A45975A56> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91ba5000 - 0x91bdffe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x91beb000 - 0x91c68ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91c69000 - 0x91cc6ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91cc7000 - 0x91d14feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91d3c000 - 0x91f1efff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91f41000 - 0x91fc3ffb  SecurityFoundation ??? (???) <BFE377A4-C830-3ECA-E69F-8A8094CDA0A6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92008000 - 0x92040ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92041000 - 0x92204feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92230000 - 0x92248ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92249000 - 0x9226fffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92270000 - 0x922e4fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x922e5000 - 0x9235eff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9235f000 - 0x924a2fef  com.apple.QTKit 7.7 (1790) <95F7C69A-1D24-A96A-E95D-1DF8CCD03FB3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x924a3000 - 0x924fbfe7  com.apple.datadetectorscore 2.0 (80.7) <ADDE04FB-90A7-2132-75AF-C6B19DD0D97E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x924fc000 - 0x929b7ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x929b8000 - 0x92a33fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92a34000 - 0x92a98ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92aaa000 - 0x92addfff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x92ade000 - 0x92cb7fff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x92cb8000 - 0x92dc4fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x930bf000 - 0x930d3ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x930d4000 - 0x93118fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93119000 - 0x9337fff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93380000 - 0x93385ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93386000 - 0x93386ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93387000 - 0x93419fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9341a000 - 0x9373efef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9373f000 - 0x937dafe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x937db000 - 0x937e4ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x937e5000 - 0x9382cffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93a0a000 - 0x93a0aff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93a0b000 - 0x93a65fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x93a66000 - 0x93a66ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93a67000 - 0x93a6dfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93a6e000 - 0x93d1cfe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93d1d000 - 0x93d1fff7  com.apple.securityhi 4.0 (36638) <FC01BFC4-04DB-96F3-2412-A86CC4F94CB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93d20000 - 0x93dcdfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x93ed5000 - 0x93f91fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93f92000 - 0x93fc2ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x93fc3000 - 0x94094fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x940d4000 - 0x9419ffef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x941ca000 - 0x94203fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94204000 - 0x94265fe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94266000 - 0x94285fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x94286000 - 0x942aaff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x942ab000 - 0x942bdff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x942be000 - 0x942dcfe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x942dd000 - 0x9432dff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x943e7000 - 0x94a62ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94a63000 - 0x94ae3feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94ae4000 - 0x94c5ffe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94c60000 - 0x94e67feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e68000 - 0x94e7dfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94e7f000 - 0x95bf7fe7  com.apple.WebCore 6534.57 (6534.57.2) <6AF29D9A-F549-5BE7-3842-CFF75FC46360> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95bf8000 - 0x96b4bffb  com.apple.QuickTimeComponents.component 7.6.6 (1790) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96b4c000 - 0x96b4fff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x96b50000 - 0x96c52fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x96c5f000 - 0x96c7eff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96c92000 - 0x96ca2ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96cbc000 - 0x96deafe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96f83000 - 0x97866ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9789d000 - 0x978abfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x978ac000 - 0x9795aff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9797a000 - 0x97984ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97985000 - 0x979c2ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x979c3000 - 0x97e14fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x97e15000 - 0x97e16ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97e17000 - 0x97e1bff7  IOSurface ??? (???) <F9E6DFC1-8DD9-7C7E-CA85-B80735586E05> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97e5f000 - 0x97eaefe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97eaf000 - 0x97eefff3  com.apple.securityinterface 4.0.1 (40418.0.1) <2141A924-748E-CE6F-2D75-D82BC265BD30> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x97ef0000 - 0x97efbff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97efc000 - 0x97fd9fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97fda000 - 0x98107ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98108000 - 0x98115fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x98116000 - 0x9823efe7  com.apple.WebKit 6534.57 (6534.57.2) <4CB86278-4657-3503-8042-074628222DF3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9823f000 - 0x98247ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x982f2000 - 0x98336ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98337000 - 0x98344ff7  com.apple.AppleFSCompression 24.4 (1.0) <DC313FD8-B697-8311-65DD-EFBAD99ABBDC> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98345000 - 0x98353ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98354000 - 0x98397ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98398000 - 0x98b87557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98b88000 - 0x98b8cff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98b8d000 - 0x98c2afe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98c87000 - 0x98c8afe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98c8b000 - 0x98cceff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x98ccf000 - 0x98d1fff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98d20000 - 0x98d20ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98d21000 - 0x98d5bff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x98d6f000 - 0x98d83fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x98d89000 - 0x98f30ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x98f38000 - 0x98fb2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fb3000 - 0x98fc0ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98fc1000 - 0x98fcbfe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98fcc000 - 0x98fcfffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98fd8000 - 0x9915afe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x991a1000 - 0x992a3fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x992a4000 - 0x993e1fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x993e2000 - 0x993edff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x993ee000 - 0x99486fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99487000 - 0x99587fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x99588000 - 0x995afff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x995b0000 - 0x995f2ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x996aa000 - 0x9978afe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x997d9000 - 0x997dbff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x997dc000 - 0x9984aff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9984b000 - 0x99891ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x999ce000 - 0x99a0cff7  com.apple.QuickLookF

    tried looking for the folders you mentioned - couldn't find any ReWire folders, and moved everything connected to Melodyne to the trash and still no luck . here's how the error message reads:
    Process:    
    Logic Pro [325]
    Path:       
    /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: 
    com.apple.logic.pro
    Version:    
    9.1.7 (1700.57)
    Build Info: 
    Logic-17005700~1
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [150]
    Date/Time:  
    2012-08-14 22:49:52.783 +0100
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:     
    402924 sec
    Crashes Since Last Report:      
    4
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    8368D8D8-434C-4589-BA0E-2A3D368AA022
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  13
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x98e0008a sem_wait$NOCANCEL$UNIX2003 + 10
    1   ...lodyneEssentialRewireDevice
    0x414a51b4 GNCondition::waitForSignal() + 32
    2   ...lodyneEssentialRewireDevice
    0x414a4d4f GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 315
    3   ...lodyneEssentialRewireDevice
    0x41446dbe GNReWire2AudioDeviceHost::create() + 172
    4   ...lodyneEssentialRewireDevice
    0x41444f3f RWDEFOpenDevice + 89
    5   ...opellerheads.rewire.library
    0x413c984e 0x413c5000 + 18510
    6   ...opellerheads.rewire.library
    0x413c99b8 0x413c5000 + 18872
    7   ...opellerheads.rewire.library
    0x413cc8e0 RWPUnregisterDeviceImp + 5438
    8   ...opellerheads.rewire.library
    0x413ca689 RWM2OpenDeviceImp + 57
    9   ...le.music.apps.MAAudioEngine
    0x02b24caa ReWireUpdateMIDIInfos() + 3226
    10  ...le.music.apps.MAAudioEngine
    0x02b0c3bb MD::Init(int, bool) + 2555
    11  ...le.music.apps.MAAudioEngine
    0x02b16ae2 GetCurrentCoreAudioDeviceNameFromUserDefaults(signed char) + 11954
    12  com.apple.logic.pro      
    0x000b6eeb std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 504955
    13  com.apple.logic.pro      
    0x000b9a41 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 516049
    14  com.apple.logic.pro      
    0x003e5b15 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3842213
    15  com.apple.logic.pro      
    0x001c567e std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1612814
    16  com.apple.logic.pro      
    0x001c9c8c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1630748
    17  com.apple.logic.pro      
    0x00619983 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6151955
    18  com.apple.Foundation     
    0x9192edb3 _nsnote_callback + 176
    19  com.apple.CoreFoundation 
    0x94b3f763 __CFXNotificationPost + 947
    20  com.apple.CoreFoundation 
    0x94b3f16a _CFXNotificationPostNotification + 186
    21  com.apple.Foundation     
    0x91923c50 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    22  com.apple.Foundation     
    0x9193105d -[NSNotificationCenter postNotificationName:object:] + 56
    23  com.apple.AppKit         
    0x96ffb216 -[NSApplication _postDidFinishNotification] + 125
    24  com.apple.AppKit         
    0x96ffb126 -[NSApplication _sendFinishLaunchingNotification] + 74
    25  com.apple.AppKit         
    0x97152339 -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 274
    26  com.apple.AppKit         
    0x97151f59 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 101
    27  com.apple.Foundation     
    0x919641f8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 511
    28  com.apple.Foundation     
    0x91963fbc _NSAppleEventManagerGenericHandler + 228
    29  com.apple.AE             
    0x918e8f5c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 166
    30  com.apple.AE             
    0x918e8e5b dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 43
    31  com.apple.AE             
    0x918e8d65 aeProcessAppleEvent + 197
    32  com.apple.HIToolbox      
    0x93456197 AEProcessAppleEvent + 50
    33  com.apple.AppKit         
    0x96fcb7d2 _DPSNextEvent + 1420
    34  com.apple.AppKit         
    0x96fcadd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35  com.apple.AppKit         
    0x96f8d1f3 -[NSApplication run] + 821
    36  com.apple.prokit         
    0x00fc63f6 NSProApplicationMain + 326
    37  com.apple.logic.pro      
    0x0002b1c5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x98db0382 kevent + 10
    1   libSystem.B.dylib        
    0x98db0a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib        
    0x98daff59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib        
    0x98dafcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib        
    0x98daf781 _pthread_wqthread + 390
    5   libSystem.B.dylib        
    0x98daf5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib        
    0x98daf412 __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x98daf9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib        
    0x98daf5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib        
    0x98d89afa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x98d8a267 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x94b212df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation 
    0x94b203c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation 
    0x94b201f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation     
    0x91968224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation     
    0x9192f4c4 -[NSThread main] + 45
    7   com.apple.Foundation     
    0x9192f474 __NSThread__main__ + 1499
    8   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    9   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib        
    0x98d89b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib        
    0x98e0005f pthread_cond_wait + 48
    3   com.apogee.ONEPlugIn     
    0x03fa084a apogeeDriverPlugInMessageQueue::WaitForNextMessageInList() + 62
    4   com.apogee.ONEPlugIn     
    0x03fa0ef7 ClientBiDirConnection::HandlePropertyChanges() + 27
    5   com.apogee.ONEPlugIn     
    0x03fa0f41 PthreadHandlingPropertyChanges(void*) + 21
    6   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    7   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib        
    0x98d89b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib        
    0x98e0005f pthread_cond_wait + 48
    3   com.apogee.ONEPlugIn     
    0x03fa02c6 MessageTX::TXThread() + 76
    4   com.apogee.ONEPlugIn     
    0x03fa0583 TransmitThread(void*) + 21
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib        
    0x98dc4a5a recvfrom$NOCANCEL$UNIX2003 + 10
    1   libSystem.B.dylib        
    0x98e2e8bd recv + 54
    2   com.apogee.ONEPlugIn     
    0x03fa1329 ClientBiDirLocalSocketConnection::ReceiveData(void*, int) + 83
    3   com.apogee.ONEPlugIn     
    0x03f9f7d6 MessageRX::RXThread() + 136
    4   com.apogee.ONEPlugIn     
    0x03f9fc77 ReceiveThread(void*) + 21
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 7:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x98da8ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x94b60c53 __CFSocketManager + 1091
    2   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    3   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib        
    0x98d89afa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x98d8a267 mach_msg + 68
    2   com.apple.CoreFoundation 
    0x94b212df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation 
    0x94b203c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation 
    0x94b26304 CFRunLoopRun + 84
    5   com.apple.DVCPROHDMuxer  
    0x3a661507 AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 285
    6   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    7   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib        
    0x98db7aa2 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x98db775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib        
    0x98db93f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles 
    0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles 
    0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib        
    0x98db7aa2 __semwait_signal + 10
    1   libSystem.B.dylib        
    0x98db775e _pthread_cond_wait + 1191
    2   libSystem.B.dylib        
    0x98db93f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles 
    0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles 
    0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib        
    0x98d89b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x98db76e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib        
    0x98de65a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio
    0x98f583ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio
    0x98f5b3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio
    0x98f58cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio
    0x98f58571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio
    0x98f58488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    9   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib        
    0x98d89c0e mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore
    0x9a0d27f0 MPDelayUntil + 43
    2   ...ple.CoreServices.CarbonCore
    0x9a0e2226 Delay + 107
    3   ...opellerheads.rewire.library
    0x413d07e8 RWPUnregisterDeviceImp + 21574
    4   ...opellerheads.rewire.library
    0x413eba5c RWPUnregisterDeviceImp + 132794
    5   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    6   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 13 Crashed:
    0   ???                      
    0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice
    0x414868ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib        
    0x98db7259 _pthread_start + 345
    3   libSystem.B.dylib        
    0x98db70de thread_start + 34
    Thread 13 crashed with X86 Thread State (32-bit):
      eax: 0x3cc646b0  ebx: 0x414a4988  ecx: 0x3cc64634  edx: 0x3cc644f0
      edi: 0x3cc64630  esi: 0xb06aa000  ebp: 0xb06a9f48  esp: 0xb06a9f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0x1000 -   0xbe7ff7  com.apple.logic.pro 9.1.7 (1700.57) <E0B8F147-B690-4889-84FF-A409F39B402F> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe81000 -   0xe9ffef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeae000 -   0xee1fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.7 (233.39) <13FB1823-E7E6-A34B-6D89-E30D01605DC1> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xeee000 -   0xf1fff3  com.apple.musicaudiodataservices 1.1 (250.92) <11E60B69-F34E-72B0-DC8E-BC23B4D9D949> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf2e000 -   0xf8cff3  com.apple.music.apps.MALoopManagement 9.1.7 (218.94) <E1772A24-827D-AF1F-7C09-E25FC729F95B> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa2000 -  0x11dafff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e2000 -  0x135dfff  com.apple.music.apps.MACore 9.1.7 (477.48) <5D0BB5DF-13EB-1759-F1B9-4275EEE287B3> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x137d000 -  0x13c9ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13ee000 -  0x1444ff7  com.apple.music.apps.MAHarmony 9.1.7 (198.94) <BE3356F3-9B77-81AF-9D4E-2F9F036B7491> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x145b000 -  0x1874ff7  com.apple.music.apps.MAPlugInGUI 9.1.7 (424.69) <6C2FD01C-3CAA-F456-B695-FCB5638A4EDE> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a92000 -  0x1b74feb  com.apple.music.apps.OMF 9.1.7 (108.93) <5A2D5ABF-97B8-E67D-EF60-BD3CEA462CDE> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b88000 -  0x21d9fe3  com.apple.music.apps.MADSP 9.1.7 (588.88) <4E4B1FA7-6D09-E835-09B8-FC5700B6D425> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28be000 -  0x28dfff7  com.apple.music.apps.LogicFileBrowser 9.1.7 (1700.57) <EEAE4BD4-7F0C-3331-2C94-6EBA3E5F518F> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28e8000 -  0x2961ff7  com.apple.music.apps.LogicLoopBrowser 9.1.7 (1700.57) <8CACC777-C6A7-432C-ADB9-E7F1865F8544> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2975000 -  0x2996ff7  com.apple.music.apps.MAApogeeSupport 9.1.7 (311.94) <F09251F0-B26D-CA6C-8B7A-6711EE4331D1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x299b000 -  0x29a0ff7  com.apple.music.apps.MAResources 9.1.7 (211.95) <176392C0-73D0-4698-C1AC-114BB5C05A2B> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29a4000 -  0x29cdfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29de000 -  0x29eeff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a02000 -  0x2a0eff3  com.apple.music.apps.MAUnitTest 9.1.7 (95.94) <D8B89167-A7D2-2C2F-B401-1E17BD85C2FD> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a16000 -  0x2accfff  com.apple.music.apps.MAFiles 9.1.7 (144.77) <DCD9D7C3-B474-5A9D-5E1D-6CA3D2461D69> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2ae5000 -  0x2b5cfe7  com.apple.music.apps.MAAudioEngine 9.1.7 (158.32) <3391175C-45EA-CF4C-29CE-B40AED2B40CD> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bc3000 -  0x2bceff7  com.apple.music.apps.MAToolKit 9.1.7 (357.98) <B3F36681-3427-CDFC-B975-568F14996D02> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bd2000 -  0x2be6ff7  com.apple.music.apps.MAVideo 9.1.7 (11.99) <7BFFFBAF-7564-4CD5-DA1D-98D57E2D8D55> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2bf9000 -  0x2caefe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2cf4000 -  0x2d34ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2d4d000 -  0x2de9ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2ea3000 -  0x2ed8ff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <FF2667E3-621B-071C-77D4-9C3125A9298C> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3e0f000 -  0x3e1cff7  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <665A3308-8C50-655A-ED3F-49AF695A408E> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x3f8c000 -  0x3f90ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x3f95000 -  0x3faafff  com.apogee.ONEPlugIn 1.6.0 (1.6.0) <AB35C5A3-D386-4913-9DB5-B8C21803645A> /System/Library/Extensions/ONEPlugIn.bundle/Contents/MacOS/ONEPlugIn
    0x3fb9000 -  0x3fbfff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3ff5000 -  0x3ff8fff  com.apple.LiveType.component 2.1.2 (2.1.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x3a132000 - 0x3a163fe3 +com.digidesign.digidesign.DigiCoreAudioPlugIn 8.0.3 (8.0.3f251) <ADB5FDA4-3D82-CD5C-8351-880824F96736> /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x3a19a000 - 0x3a1ecfc3  com.apple.DVCPROHDAudio 1.2 (1.2) /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x3a26a000 - 0x3a272ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x3a297000 - 0x3a2fcffe  com.apple.LiveType.framework 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x3a31c000 - 0x3a374fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3a398000 - 0x3a39bff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x3a3d2000 - 0x3a3d4ff3  com.apple.music.apps.anvil.resources 9.1.7 (279.92) <7CBFA410-D449-1520-1E28-2018E56ECE3E> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x3a3d8000 - 0x3a3daff3  com.apple.music.apps.common.resources 9.1.7 (279.92) <47B50610-3A6B-B7E6-7D9F-633EE00536BF> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x3a3de000 - 0x3a3e0ff3  com.apple.music.apps.ebp.resources 9.1.7 (279.92) <491FACE3-30A1-8165-DFE1-CDB0FD08351A> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x3a3e4000 - 0x3a3e6ff3  com.apple.music.apps.efx.resources 9.1.7 (279.92) <C597C91D-FEE9-A1CB-D44F-E1EBE79719CF> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x3a3ea000 - 0x3a3ecff3  com.apple.music.apps.egt.resources 9.1.7 (279.92) <30026FE6-7623-C6B3-6771-A121ACC8B762> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x3a650000 - 0x3a697fef  com.apple.DVCPROHDMuxer 1.2 (1.2) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x3a6ca000 - 0x3a6eefe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x3a6f6000 - 0x3a6f8ff3  com.apple.music.apps.emx.resources 9.1.7 (279.92) <7C00E73C-087D-B18A-FBBE-3CB9A34A7290> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x3b229000 - 0x3b3a2ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3b3d4000 - 0x3b610fef  com.apple.ATIRadeonX1000GLDriver 1.6.36 (6.3.6) <5370EAFE-71E0-6740-7C3F-705442BFC504> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x3bae6000 - 0x3bae8ff3  com.apple.music.apps.es1.resources 9.1.7 (279.92) <E9799913-9D77-B551-2F7C-3C5CF7CCDF5C> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x3baec000 - 0x3baeeff3  com.apple.music.apps.es2.resources 9.1.7 (279.92) <D85546C3-B00F-0A52-EE11-EC05210E6431> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x3baf2000 - 0x3baf4ff3  com.apple.music.apps.esp.resources 9.1.7 (279.92) <22469760-92CC-70D1-098F-A71D666D2030> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x3baf8000 - 0x3bafaff3  com.apple.music.apps.evb3.resources 9.1.7 (279.92) <BAD8B6B6-E451-43B2-E56C-93279FB16A6E> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x3c3e0000 - 0x3c3e2ff3  com.apple.music.apps.evd6.resources 9.1.7 (279.92) <21C25CAD-1A0B-2ADF-FAA9-A66F6034E82D> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x3c3e6000 - 0x3c3e8ff3  com.apple.music.apps.evoc.resources 9.1.7 (279.92) <B958C220-125C-8DFD-B829-D6ABFEAC7A11> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x3c3ec000 - 0x3c3eeff3  com.apple.music.apps.evp88.resources 9.1.7 (279.92) <CBA089F8-35D9-F012-43BE-F79149490FE0> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x3c3f2000 - 0x3c3f4ff3  com.apple.music.apps.exs24.resources 9.1.7 (279.92) <11C21376-ED55-88F0-C965-DD554EA4DF81> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x3c3f8000 - 0x3c3faff3  com.apple.music.apps.guitaramp.resources 9.1.7 (279.92) <03A47674-0672-A373-9628-0F10B1065A04> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x3c3fe000 - 0x3c400ff3  com.apple.music.apps.guitarcontrols.resources 9.1.7 (279.92) <6A1F7841-22E5-D35E-D3A7-341280342B5C> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x3c404000 - 0x3c406ff3  com.apple.music.apps.mutapdel.resources 9.1.7 (279.92) <DD838B34-3651-F30C-D52F-7CF44EF2AD30> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x3c40a000 - 0x3c40cff3  com.apple.music.apps.pedalboard.resources 9.1.7 (279.92) <79A8F7E2-566C-DF8F-C336-8D075A434E62> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x3c410000 - 0x3c412ff3  com.apple.music.apps.revolver.resources 9.1.7 (279.92) <DE04D8A8-A797-342B-B3BB-0AA349CAC457> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x3c416000 - 0x3c418ff3  com.apple.music.apps.sphere.resources 9.1.7 (279.92) <4DDC2503-F323-ED3F-1F18-B05F5611E5A4> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x3c4c3000 - 0x3c4deff7  com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x413c5000 - 0x41424fe1 +se.propellerheads.rewire.library 1.7 (1.7) /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x41443000 - 0x414e1ff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
    0x90003000 - 0x900bcfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x900dd000 - 0x9018dfe3  com.apple.QuickTimeImporters.component 7.6.6 (1790) <F2F9FAA1-3B6D-722B-3ECA-2395588D3B20> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9018e000 - 0x9019dfe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x9019e000 - 0x9019fff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x902b8000 - 0x90392fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90393000 - 0x9068dfef  com.apple.QuickTime 7.6.6 (1790) <A5B2CDA8-47C9-F1AE-ED54-625B0FAB426F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9068e000 - 0x9068eff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9068f000 - 0x906affe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x906c3000 - 0x906cfff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x906e4000 - 0x906ebff7  com.apple.agl 3.0.12 (AGL-3.0.12) <37255DC6-9FD1-45CC-AC80-A84FD2B5450A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x906ec000 - 0x9070dfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9070e000 - 0x90b24ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90b25000 - 0x90c67ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90c68000 - 0x90cbeff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x90cbf000 - 0x90d77feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90d78000 - 0x90d7afe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x90dea000 - 0x90dedff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90dee000 - 0x90deeff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90def000 - 0x90e59fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x90e5a000 - 0x90e60fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x90e61000 - 0x90e61ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90e8e000 - 0x910b9ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x910ba000 - 0x91166fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9121e000 - 0x91295ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x912a3000 - 0x912b4ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91412000 - 0x91453ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91454000 - 0x91476fef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91477000 - 0x91478ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91479000 - 0x914b6ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x914b7000 - 0x914f2fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x914f3000 - 0x914f7ff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91579000 - 0x918e4ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x918e5000 - 0x91918ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91919000 - 0x91b8afef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91ba4000 - 0x91ba4ff7  com.apple.Carbon 150 (152) <BFDDA394-0F01-A3A3-A226-ED3A45975A56> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91ba5000 - 0x91bdffe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x91beb000 - 0x91c68ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x91c69000 - 0x91cc6ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91cc7000 - 0x91d14feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91d3c000 - 0x91f1efff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91f41000 - 0x91fc3ffb  SecurityFoundation ??? (???) <BFE377A4-C830-3ECA-E69F-8A8094CDA0A6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92008000 - 0x92040ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92041000 - 0x92204feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92230000 - 0x92248ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92249000 - 0x9226fffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92270000 - 0x922e4fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x922e5000 - 0x9235eff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9235f000 - 0x924a2fef  com.apple.QTKit 7.7 (1790) <95F7C69A-1D24-A96A-E95D-1DF8CCD03FB3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x924a3000 - 0x924fbfe7  com.apple.datadetectorscore 2.0 (80.7) <ADDE04FB-90A7-2132-75AF-C6B19DD0D97E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x924fc000 - 0x929b7ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x929b8000 - 0x92a33fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92a34000 - 0x92a98ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92aaa000 - 0x92addfff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x92ade000 - 0x92cb7fff  libType1Scaler.dylib ??? (???) <04AF2B34-81D4-97E9-BD56-387D37C16F46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x92cb8000 - 0x92dc4fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x930bf000 - 0x930d3ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x930d4000 - 0x93118fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93119000 - 0x9337fff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93380000 - 0x93385ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x93386000 - 0x93386ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93387000 - 0x93419fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9341a000 - 0x9373efef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9373f000 - 0x937dafe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x937db000 - 0x937e4ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x937e5000 - 0x9382cffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x93a0a000 - 0x93a0aff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93a0b000 - 0x93a65fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x93a66000 - 0x93a66ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x93a67000 - 0x93a6dfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93a6e000 - 0x93d1cfe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93d1d000 - 0x93d1fff7  com.apple.securityhi 4.0 (36638) <FC01BFC4-04DB-96F3-2412-A86CC4F94CB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93d20000 - 0x93dcdfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x93ed5000 - 0x93f91fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93f92000 - 0x93fc2ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x93fc3000 - 0x94094fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x940d4000 - 0x9419ffef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x941ca000 - 0x94203fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94204000 - 0x94265fe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94266000 - 0x94285fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x94286000 - 0x942aaff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x942ab000 - 0x942bdff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x942be000 - 0x942dcfe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x942dd000 - 0x9432dff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x943e7000 - 0x94a62ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94a63000 - 0x94ae3feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94ae4000 - 0x94c5ffe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94c60000 - 0x94e67feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94e68000 - 0x94e7dfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94e7f000 - 0x95bf7fe7  com.apple.WebCore 6534.57 (6534.57.2) <6AF29D9A-F549-5BE7-3842-CFF75FC46360> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95bf8000 - 0x96b4bffb  com.apple.QuickTimeComponents.component 7.6.6 (1790) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x96b4c000 - 0x96b4fff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x96b50000 - 0x96c52fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x96c5f000 - 0x96c7eff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96c92000 - 0x96ca2ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96cbc000 - 0x96deafe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96f83000 - 0x97866ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9789d000 - 0x978abfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x978ac000 - 0x9795aff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9797a000 - 0x97984ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97985000 - 0x979c2ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x979c3000 - 0x97e14fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x97e15000 - 0x97e16ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97e17000 - 0x97e1bff7  IOSurface ??? (???) <F9E6DFC1-8DD9-7C7E-CA85-B80735586E05> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x97e5f000 - 0x97eaefe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97eaf000 - 0x97eefff3  com.apple.securityinterface 4.0.1 (40418.0.1) <2141A924-748E-CE6F-2D75-D82BC265BD30> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x97ef0000 - 0x97efbff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97efc000 - 0x97fd9fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x97fda000 - 0x98107ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98108000 - 0x98115fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x98116000 - 0x9823efe7  com.apple.WebKit 6534.57 (6534.57.2) <4CB86278-4657-3503-8042-074628222DF3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9823f000 - 0x98247ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x982f2000 - 0x98336ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98337000 - 0x98344ff7  com.apple.AppleFSCompression 24.4 (1.0) <DC313FD8-B697-8311-65DD-EFBAD99ABBDC> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x98345000 - 0x98353ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98354000 - 0x98397ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98398000 - 0x98b87557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98b88000 - 0x98b8cff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98b8d000 - 0x98c2afe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98c87000 - 0x98c8afe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98c8b000 - 0x98cceff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x98ccf000 - 0x98d1fff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x98d20000 - 0x98d20ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x98d21000 - 0x98d5bff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x98d6f000 - 0x98d83fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x98d89000 - 0x98f30ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x98f38000 - 0x98fb2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98fb3000 - 0x98fc0ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98fc1000 - 0x98fcbfe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98fcc000 - 0x98fcfffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x98fd8000 - 0x9915afe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x991a1000 - 0x992a3fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x992a4000 - 0x993e1fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x993e2000 - 0x993edff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x993ee000 - 0x99486fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99487000 - 0x99587fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x99588000 - 0x995afff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x995b0000 - 0x995f2ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x996aa000 - 0x9978afe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x997d9000 - 0x997dbff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x997dc000 - 0x9984aff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9984b000 - 0x99891ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x999ce000 - 0x99a0cff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x99a0d000 - 0x99a18ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x99a1c000 - 0x99a4dff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework

  • Okay so my phone crashes approximately every 30 seconds. I have tried resetting it by DPU as well as on the phone itself.  Once in awhile i get an error message about unknown error 1.  If i look at the diagnosis or if runs on itunes i get the following i

    Okay so my phone crashes approximately every 30 seconds. I have tried resetting it by DPU as well as on the phone itself.  Once in awhile i get an error message about unknown error 1.  If i look at the diagnosis or if runs on itunes i get the following.  When I called the support at AT&T they think the phone is shot and it is a hardware thing but i have a hard time believing that when it happened when I sync'd it to my computer.  It did get progressively worse though, at first it crashed not that often and then got worse.  So restores are failing, recovery, everything.  Anyone run into this? 
    11-11-16 18:20:36.319 [2232:16dc]: amai: tss_submit_job: HttpQueryInfo returned 200
    2011-11-16 18:20:38.350 [2232:1c50]: <DFU Device 0F128BE0>: production fused device
    2011-11-16 18:20:38.350 [2232:1c50]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:20:38.350 [2232:1c50]: WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#1bfe4c4c
    2011-11-16 18:20:39.132 [2232:1c50]: WinDFU::UploadData: EOF, cbRead: 553
    2011-11-16 18:20:39.147 [2232:1c50]: WinDFU::UploadData: ZLP
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    2011-11-16 18:20:39.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    2011-11-16 18:20:42.163 [2232:1c50]: WinDFU::ResetDevice: resetting...
    2011-11-16 18:21:02.210 [2232:1c50]: WinDFU::FinalizeDfuUpdate: success
    2011-11-16 18:21:03.491 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:03.507 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 18:21:03.757 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:04.554 [2232:1b88]: amai: tss_submit_job: HttpQueryInfo returned 200
    2011-11-16 18:21:10.882 [2232:1b88]: <DFU Device 0F198478>: production fused device
    2011-11-16 18:21:10.882 [2232:1b88]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:21:10.882 [2232:1b88]: WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#cfe11997
    2011-11-16 18:21:12.788 [2232:1b88]: WinDFU::UploadData: EOF, cbRead: 1321
    2011-11-16 18:21:12.804 [2232:1b88]: WinDFU::UploadData: ZLP
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    2011-11-16 18:21:12.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    2011-11-16 18:21:15.819 [2232:1b88]: WinDFU::ResetDevice: resetting...
    2011-11-16 18:21:20.866 [2232:1b88]: WinDFU::FinalizeDfuUpdate: success
    2011-11-16 18:21:21.835 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:21.835 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 18:21:21.897 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 18:21:22.054 [2232:1838]: AMDeviceIoControl: GetOverlappedResult failed
    2011-11-16 18:21:22.054 [2232:1838]: AMDeviceIoControl: pipe stall
    2011-11-16 18:21:22.054 [2232:1838]: USBControlTransfer: error 31, usbd status c0000004
    2011-11-16 18:21:22.054 [2232:1838]: command device request for 'getenv radio-error' failed: 2008
    2011-11-16 18:21:22.054 [2232:1838]: unable to open device_map.txt: No such file or directory
    2011-11-16 18:21:22.054 [2232:1838]: <Recovery Mode Device 0F2A7768>: production fused device
    2011-11-16 18:21:24.007 [2232:1838]: AMDeviceIoControl: GetOverlappedResult failed
    2011-11-16 18:21:24.007 [2232:1838]: AMDeviceIoControl: pipe stall
    2011-11-16 18:21:24.007 [2232:1838]: USBControlTransfer: error 31, usbd status c0000004
    2011-11-16 18:21:24.007 [2232:1838]: command device request for 'getenv ramdisk-delay' failed: 2008
    2011-11-16 18:21:38.319 [2232:1344]: fixed TcpWindowSize (64512) can cause restore failure if too large
    2011-11-16 18:21:38.335 [2232:1344]: unable to open device_map.txt: No such file or directory
    2011-11-16 19:21:54.475 [2232:1344]: amai: AMAuthInstallBasebandHandleUpdaterStatus: outputDict is NULL
    2011-11-16 19:21:54.538 [2232:1344]: <Restore Device 0ED73918>: Restore failed (result = 1)
    2011-11-16 19:21:54.647 [2232:8ec]: iTunes: Restore error 1
    2011-11-16 19:22:09.100 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:22:09.100 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:22:09.163 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:37:25.319 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:37:25.335 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:37:25.382 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:52:41.679 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    2011-11-16 19:52:41.679 [2232:c4c]: WinAMRestore::AddAppleDeviceToDeviceList, old disconnected device connects again
    2011-11-16 19:52:42.163 [2232:c4c]: AppleDevice::EnumerateHubPorts: DoesDriverNameMatchDeviceID failed
    I also get a system crash reporter key of c392e98c929aa0b351037af00d75d08aeadc843c    bug type 110
    incident identifier  8ff84a87

    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.

  • Why do I receive "4.3.2 connection rate limit exceeded" error message using the mail merge extension and what can be done about it?

    I am using TB 31.3.0 with Mail Merge 3.9.1. I routinely send an email to 435 members of an volunteer emergency responders group that I coordinate. I do so using a .csv list with mail merge. While there were no problems in the past, more recently the mail merge function will hang after sending a varied number of messages successfully and I get the following error message:
    "An error occurred sending mail. The mail server sent an incorrect greeting: 4.3.2 connection rate exceeded.."
    There is an "OK" button in the error message pop up that can be clicked to resume the mail merge process. It would appear that if I click the "OK" button immediately whenever the error message is received I must do so frequently and some members do not receive their email. If I delay clicking the "OK" button, I found that I only needed to click the "OK" button twice to send to all the members.
    An on line search suggests this is the result of some sort of throttling by my ISP, Sonic.net. There is also this comment: "If you are receiving this error, you are likely using mailing list software which cannot decipher the temporary fail codes. If so, you will need to set your software to slow down its delivery rate and/or reduce the number of active connections per remote host."
    I am not super technical. Is it realistic to think that I can tweak mail merge to that I do not have to babysit my email to this group?

    then I suggest you send using a mail provider that is not actively trying to block your outgoing mail. Or use a yahoo / google groups mailing list feature so you only send a single mail.
    Or use a free account from the likes of http://www.ymlp.com/ who limit free account mailing lists to 1000 subscribers. ( Googled them this morning)

  • Display an error message during a few seconds

    Hi!
    When submitting a form, I am displaying a error message saying that the actions performed work fine. Afterwards I would like this message to disappear after a few seconds. How can I do that ?
    in the function called by my action button that submit the form i have:
    public void saveForm() {
    // .... operations ....
    context.addMessage(null,new FacesMessage("Everything is ok"));
    }

    Hi,
    I doubt if there is anything you can do from the action method
    saveForm(), however this you can do it from the client side just
    put some seconds delay in onload method in javascript and
    redirect to some other page.
    Thanks
    Ansar

  • After Showing ERROR message make the field editable in subscreen.

    Hello Experts,
    I have a requirment where i have added a subscreen to the standard screen of ME31K for creating the contract. In my Subcreen i have my custom screen fields that i'm updating in EKKO table through include structure.
    Now if user forget to fill the details in my custom fields in the subscreen then i'm giving the error message prompting the user to fill the value in fields.
    But the problem is the screen is locked there itself i want to make the field editable so that user can enter some value in the fields. I can not use the stuatus or information message here because doing this i will get the item overview screen which should not come as i want to restrict the user to header details only and fill all the custom fields.
    Please provide me with your helpful responses.
    Thnaks,
    Naveen

    Hi Naveen,
    Sorry for the delay.
    The code which I gave for popup, i hope its being shown in an IF . . . ENDIF.
    So in that condition u can add the following :
    IF < ur condition >
       < Call message FMs >
        SET SCREEN SY-DYNNR.   "this would set screen to current screen which is 0201
        EXIT.
    ENDIF.
    Other than this if you like you can set some parameters in the PAI of this screen which redirect to current screen based on some conditions.
    So u can manually set OK-CODE and CALFCODE as SPACE, but i dont know how much this can impact the process.
    So please follow the above code.
    This is available in
    Main Program     SAPMM06E
    Source code of   MM06EF0F_FCODE_CALL
    IF OK-CODE EQ SPACE AND
       CALFCODE EQ SPACE.
      SET SCREEN SY-DYNNR.
      EXIT.
    ENDIF.
    Hope this helps.
    Regards,
    Ateet

  • How can i send an error message at EXIT_SAPMM06E_013 ?

    Hi
    I'm making some validations to Vendor and Partner Functions (table control in 'Partners' Strip) in Creting/Changing Purchase Orders (ME21N/ME22N). 
    I know the suitable user exit is EXIT_SAPMM06E_012 for making validation before saving, but this exit does not has (receive) the table with Partner Functions so i could validate them.
    Then I use the Exit _013, wich executes when saving the PO, because this exit has the captured Partners table (XEKPA).
    But, when i make the validations and try to send a error mesage,  the system shows other message type info (window) like 'The requested object is locked by another transaction' and then another like 'System error (error in method PO_POST)'.
    I think this it's because the exit _013 is better suitable to make customer updates and not validations, that it's because just passing by MESSAGE Ennn(cc) command makes the methods catch my error and send other errors and close the transaction.
    Does somebody can help me ??
    How can i send error messages in exit _013 ??
    Or is this incorrect ??
    Or in wich User Exit can i validate the Partner Functions ??
    I really will aprettiate if somebody can help me, because i'm delayed with my development !!
    Regards

    Hi Frank,
    The eror message you are getting seems to be coming from somewgere else and may be due to the same PO being cahnged in another transaction or have you put some code in BADI ME_PROCESS_PO ( Method POST) .
    You can try by commenting out the code in EXIT 13 .
    If this does not work then use EXIT 12 only and below is the code you can use to access XEKPA in exit 12.
    DATA IT_EKPA LIKE EKPA OCCURS 0 WITH HEADER LINE.
    DATA NAME(50) VALUE '(SAPLMEPO)XEKPA[]'.
    DATA NAME1(50) VALUE '(SAPMM06E)XEKPA[]'.
    FIELD-SYMBOLS <F1> TYPE ANY .
    IF SY-TCODE+4(1) = 'N'.
    ASSIGN (NAME) TO <F1>.
    ELSE.
    ASSIGN (NAME1) TO <F1>.
    ENDIF.
    IT_EKPA[] = <F1>.
    ( Now you have the data in IT_EKPA table which you can use to validate )
    Cheers

  • Error message - "The iTunes Library file is full could not be saved" - Help

    Hi folks.
    I looked for current / recent chatter on this iss before creating this topic. Didn't see anything that addressed this issued recently. If I missed it, sorry, if not, here you go!
    I got an error message last night while using iTunes. It just popped up during use, not while using. The error message read "The iTunes Library File could not be saved." Now my hard drive is DEFINITELY not full. I have hundreds of gigs of unused space. This appears to be an issue strictly related to my library.xml file. Stupidly, I clicked the don't show me this again and closed the message. My concern now is that I'll rip new content that won't end up in my iTunes library even though it's on my hard drive, thus that content will not be findable by iTunes.
    I don't want to just rebuild the library from scratch as I have fixed tons of errors in how iTunes classifies my music over the years and all that work would be lost.
    Any ideas on how to get past this glitch?
    I noticed this problem also cropped up circa the original iPhone launch. I had that phone and did not experience this prob, and I just upgraded to the 3G four days ago. It makes no sense to me that the phone is causing this, but perhaps the upgrade to the iTunes version 7.7 (necessary to use the iPhone with my Windows computer) is the cause of the prob.
    I did erase a bunch of videos and unsubscribed to several video casts. That was one recommended solution way back when.
    My concern though is that since I chose the don't show me this error message again option, I won't know whether the problem persists or not.
    Oh the humanity...

    I have seen this a few times, usually when other 3rd-party applications are using itunes. Such as, lastfm & the Tivo remote music player.
    And, I've also seen it when I was copying a bunch of digital photos to the exHD in the background while playing music and the song changed. iTunes saves the playcount in the ITL file when the song ends.
    You might check this Microsoft article about "Enable write caching on the disk". I haven't seen that iTunes error since I turned mine back on for the exHD. The Tivo "delayed write failed" errors are back, but that's a different problem...
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;330174
    Anyway, long story short, it gets saved OK later and I make frequent backups of that ITL file.

  • Error message when connecting 80GB Video iPod

    I'm getting this error message when trying to connect my 80GB Video iPod:
    "The iPod (name) cannot be synced. An unknown error occurred (-48)."
    Never seen this one before.
    I haven't synced this iPod for a few weeks but it always behaved fine before, taking a few seconds to appear in iTunes (v7.5) then syncing perfectly when I hit the Sync button (I have it set to manually sync only because sometimes I want to change the contents or only sync music).
    Before syncing on this occasion, I did an iPod software update via iTunes - iTunes said there was a newer version (1.2.3). After the update, I disconnected the iPod for a few minutes (somehting I wanted to check content before syncing), then reconnected it. At first iPod took about a minute to show up in iTunes - way too long. I Reset the iPod and tried again but still LONG delay to appear in iTunes (again about 1 minute). I did another Reset - same result. Then I did a complete Restore, after which syncing to restore the contents gave problems - it refused to finish the sync. I had to disconnect and start again, syncing the data one section per sync session - Contacts, music, videos, iCal - which seemed to work fine. Then I disconnected, waited a few minutes then reconnected the iPod to check. It wouldn't connect at all. Did a Reset, tried o connect again and it did connect but then proceeded to resync all my contacts taking almost 30 minutes (way too long) to do so (I had made NO changes in Address Book since that data was put in there). I tried to reconnect again but then got the error message (above). Did another total Restore and the same shenannigans happened. Now, I have an iPod with data on it and works fine, but iTunes won't recognise it - just gives this error message every time.
    By the way, my 8GB Nano (software 1.1.3) seems to sync fine on the same system, same computer.
    Could this be the 1.2.3 iPod software giving issues? I appreciate any help because I also use this iPod for recording for my work, which getting a little urgent now.
    Many thanks.

    Thanks Zevoneer, but no real success. I did all that but when I tried to sync after it, it got partially through the sync (about 10% I'd guess) and presented an error message saying that the disk couldn't be read form or written to (sorry but I forgot the error number). I disconnected the iPod, waited a few minutes then reconnected and again got the message but then the ipod continued to finish the sync, even though almost all of the music and 2 of my 4 videos didn't go over to the iPod. I'm now thinking that this just isn't satisfactory reliability from the device since I use it a lot in my work and rely on it. But this new iPod is only a few months old, had very little use and only made about 12 recordings - In comparison, I've used the Nano heaps but now want to move over to the bigger one, basically for more capacity and bigger screen for video. I wonder if it's a hard drive failure in this iPod?
    null

  • Error message when adding a filter to DV and HDV footage

    Hi,
    I do not understand why I am getting an error message saying,
    " The effect 'refraction, twirl, insect eye' failed to render: Your Hardware cannot render at the requested size and depth"
    Can some help me out?
    I have a first generation Mac Pro 2..66 with 8gb of ram and the Ati radeon and Nvidia graffics card. This is a high end computer, why can't it render a video filter like refraction and son on?
    I tried re-installing FCP and erasing those files in the preferences folder, but still not luck.
    To make matters worse the render works on my MacBook Pro (1st gen.) and not on the Mac Pro quad core?
    There must be something going on in my settings, is anybody else having this problem?
    The footage I am working with are 2 formats, one is DV Ntsc shot with a DVX 100 and the other one I was working with HDV footage.
    Why am I not able to render with the hardware power of this monster computer.
    Thanks for you help,
    Alessandro

    Hi Varkgirl,
    That would be great but I don't really know where to start with this. Can you help?
    Sorry for the delay in responding but I run my own business as well as doing my wife's website.
    My email address is [email protected] if you could send me your advice that way if it's ok with you.
    Thanks.
    Philip

  • I cannot upload photos into a web site-no problems with previous versions of firefox or IE(get error message The connection was reset)

    I edit a web site set up by Joomla.
    I copy & paste text to it and upload photographs.
    I have been doing this successfully for months
    but starting yesterday adding text is OK but when I try to upload a photo there is a delay of 3-4 minutes and then an error message saying "The connection was reset"

    Your plugins list shows two Flash plugins and other outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r45
    # Shockwave Flash 10.1 r53
    # Adobe Shockwave for Director Netscape plug-in, version 11.0
    # Next Generation Java Plug-in 1.6.0_19 for Mozilla browsers
    Flash Player uninstall: http://www.adobe.com/go/tn_14157 (this will remove the Firefox Flash plugin and the ActiveX control for IE)
    Update the [[Flash]] and [[Shockwave|Shockwave for Director]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    *http://www.adobe.com/shockwave/welcome/
    *http://www.adobe.com/downloads/
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • Vista Service Pack 2 install error message and Realtek incompatibility

    Just want to inform that service pack 2 install gave me an error message when I installed it on a clean rebuild of my Toshiba laptop. Something about an incompatible driver. As I had already installed the latest drivers from Toshiba pages, I choose the 'ignore and continue' action at install, and the update successfully completed.
    I then ran the Windows Upgrade advisor utility (just search a Microsoft website to find it) which checks for hardware/driver compliance with Vista.
    Their report says that the Realtek RTL8187B wireless adapter driver has an issue with Vista, and recommends that the latest driver be installed. Since I do have the latest Toshiba driver installed, what is the procedure to follow?
    The wifi connection with this laptop functions well, with the only 'problem' being a 45 second delay when waking up from sleep mode to being able to open a new web page. This is the time it takes to establish a connection to my router/modem.

    > Their report says that the Realtek RTL8187B wireless adapter driver has an issue with Vista, and recommends that the latest driver be installed. Since I do have the latest Toshiba driver installed, what is the procedure to follow?
    You could try the Realtek WLan driver from the Realtek driver page.
    There you can find the latest Realtek drivers for different Realtek chips.
    But to be honest I would not be worried about this massage.
    Something like that can happens always after any installations of the Microsoft service packs.
    I remember that many drivers were not supported by SP1 but they ran properly
    So take it easy ;)

  • How do I resolve a "printer not connected" error message?

    Dear Mac Community,
    For the better part of a year I have printed flawlessly to my HP Color LaserJet CP4020 on my home wireless network. Recently I upgraded to OS X 10.8.4 and now when I print, the queue stalls and I receive the following error message, "The printer is not connected."
    Here is what I have tried so far to resolve the issue but to no avail:
    Downloaded and installed the latest HP firmware and software drivers
    Deleted the printer and added it again in Preferences>Print & Scan
    And, of course, the above noted bullet point is the rub: If the printer were not connected to my wireless network then it would be unable to be added! But since I can add the printer, my OS is definitely seeing the printer on the network.
    After the above diagnostics I tried printing from native Mac OS apps (e.g. TextEdit) and non-native apps (e.g. Microsoft Word), and both worked.
    Then they stopped.
    Then they would print after several minutes of delay (e.g. a single sentence Text Edit test print page took over a minute and a five sentence Word document took over 5 minutes).
    Then they stopped.
    And now I cannot print anything!
    In case it helps, my specifications are as follows:
    MacBook Pro running OS X 10.8.4 with 8 GB RAM, 500 GB HD, 75 GB available HD space
    HP Color LaserJet CP4020, Firmware v.20120112 07 .111.0, Software Driver v. 9.4
    Any help anyone could provide would be GREATLY appreciated.
    Sincerely,
    Randy

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select "/var/log/cups/error_log" from the file list on the left side of the Console window. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar. Then select the messages from the time of the last failed printing attempt. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.

Maybe you are looking for

  • Why do hyperlinks not work anymore

    I use Adobe XI reader. I have in one PDF several hyperlinks to mp3 files in the same directory as the PDF and one hyperlink to a Youtube URL. They all used to work. The mp3 hyperlinks called the Windows Media Player. The YouTube URL calls the browser

  • HT4009 I can't get my updates on my ipad ?

    I can't get up updates to work, everything else is working.  I'm using an ipad 3 ,  can someone help me please?

  • Spool file query

    Hi, I am creating a number of flat files using sql to load into someone elses system and was wondering if there is a way of spooling a file without the column headings and the count at the end. iwould like SURNAME SMITH JONES JENKINS 3 rows selected

  • USB MIDI devices not detected under OS 10.5.2

    Leopard's Audio Midi Configuration doesn't detect my Korg microKontrol, Novation Remote Zero SL and my Evolution MK-249C2 MIDI keyboard. Firewire MIDI device is detected (RME fireface 800). Using the "latest" drivers - Novation Automap Universal 2.0.

  • Listen to this for an answer to a written letter t...

    In december I changed my BB and calls package. My billing so far has been January £6.15 CR April £15.58 May £0.50 June £0.52 CR The cost of my package should be a basic £13.80 per month, plus additional calls as I payed 12 months line rental up front