Alternative to Anonymous/Inner when Adding Behavior to Swing Elements?

Hello! I am new to Java and have been trying to teach myself the basics by writing a Swing "JApplet". In adding mouse-click behavior to elements, I have been able to get the desired results by using anonymous "inner" classes. However, I am wondering if there is an alternative way to do this, that may be neater. For example, is there a way to make a non-inner class to apply the behavior, and then use it multiple times? The catch is that I need to apply this behavior to dynamically generated elements, to it has to be able to access certain variables.
But enough talk, here is a link to the working applet:
[http://brockfanning.com/RandomCells.html|http://brockfanning.com/RandomCells.html]
And here is the working code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class RandomCells extends JApplet
     private JPanel mainPanel;
     public void init()
          // Set up main grid
          mainPanel = new JPanel();
          mainPanel.setLayout(new GridLayout(0,2));
          getContentPane().add(mainPanel);
          // add a specific mouse-click behavior for each of a random number of 1 to 10 cells
          int randomNumber = (int)(10 * Math.random()) + 1;
          for (int cell = 1; cell <= randomNumber; cell++)
               JPanel newCell = new JPanel();
               mainPanel.add(newCell);
               newCell.add(new JLabel("Click to dislay the number " + Integer.toString(cell)));
               // Make the "cell" variable "final" so it can be used in the following anonymous method
               final int cellFinal = cell;
               // Add mouseclick behavior to the cell
               newCell.addMouseListener(new MouseAdapter()
                    public void mouseClicked(MouseEvent me)
                         JOptionPane.showMessageDialog(mainPanel, Integer.toString(cellFinal), "", JOptionPane.PLAIN_MESSAGE);
}Any help in an alternative to this anonymous inner class technique would be greatly appreciated!

One more question if possible:
How would I reference the RandomCells class from the new separated class?
I'll post what I have below. But notice the "???????" in the new CellClick class. I'm not sure what to put here, as I need to reference the "mainPanel" field of the RandomCells class. Is there any way to do this without explicitly passing the mainPanel as a parameter?
RandomCells class:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class RandomCells extends JApplet
     private JPanel mainPanel;
     public void init()
          // Set up main grid
          mainPanel = new JPanel();
          mainPanel.setLayout(new GridLayout(0,2));
          getContentPane().add(mainPanel);
          // add a specific mouse-click behavior for each of a random number of 1 to 10 cells
          int randomNumber = (int)(10 * Math.random()) + 1;
          for (int cell = 1; cell <= randomNumber; cell++)
               JPanel newCell = new JPanel();
               mainPanel.add(newCell);
               newCell.add(new JLabel("Click to dislay the number " + Integer.toString(cell)));
               // Make the "cell" variable "final" so it can be used in the following anonymous method
               final int cellFinal = cell;
               // Add mouseclick behavior to the cell
               newCell.addMouseListener(new CellClick(cellFinal));
}CellClick class:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class CellClick extends MouseAdapter
     // Fields
     private int var1;
     // Constructor
     public CellClick(int var1)
          this.var1 = var1;
     // Methods
     public void mouseClicked(MouseEvent me)
          JOptionPane.showMessageDialog(???????, Integer.toString(this.var1), "", JOptionPane.PLAIN_MESSAGE);
}

Similar Messages

  • Audio issues when adding movies to Premiere Elements 11

    When I try to add movies to PE11 the audio gets all screwed up. I am very new to video editing and I haven't had this issue with other movies, only those froma  specific camera. The only thing I can see is that the audio from the camera that works is mono, and the audio from the camera that doesn't work is stereo. Any suggestions on how I can fix this issue?

    b.raines
    In addition to Hunt's questions, I would ask:
    1. What are the brand, model, and settings for your camera? What are the properties of the video that it generates?
    2. Are you accepting the project preset automatically being given you after you drag your video to the Timeline (Expert view) or are you setting the project preset in the New Project dialog yourself. The project preset should match the properties of your source media. Sometimes the program's choice is not appropriate. Please check under Edit Menu/Project Settings to see what the program is setting and compare that with what you know are the properties of the source media.
    For Properties Readout, please consider the free MediaInfo
    http://mediainfo.sourceforge.net/en
    3. Is the audio messing up the only problem that you are having? If so, where is it manifesting itself
    a. when you playback the rendered Timeline in the Edit Mode Monitor
    or
    b. when you playback the exported Timeline on one of your players
    or
    c. other
    How is it messing up...distorted sound or audio out of sync?
    Getting more information on the above will help us to work together to resolve your issue.
    Thanks.
    ATR

  • BUG - OJC 10.1.3.2 doesn't allow upcast when adding to generic Collection

    JDeveloper: 10.1.3.2.0.4066
    Compile Errors:
    method asList(Crusty, Slush, Powder) not found in class java.util.Arrays
    method addAll(java.util.List<Snow>, Light, Heavy) not found in class java.util.Collections
    When adding a group of elements to a Collection which uses generics, the ojc compiler does not allow upcasting, but the same upcasting is permitted by the javac compiler.
    The following code is taken from Bruce Eckel's Thinking In Java, 4th edition, page 396. It reproduces the compile problems:
    import java.util.*;
    class Snow {}
    class Powder extends Snow {}
    class Light extends Powder {}
    class Heavy extends Powder {}
    class Crusty extends Snow {}
    class Slush extends Snow {}
    public class AsListInference {
      public static void main(String[] args) {
        //Following line compiles under javac but not under ojc:
        List<Snow> snow1 = Arrays.asList(new Crusty(), new Slush(), new Powder());
        System.out.println("snow1:");
        for (Snow s : snow1) {
          System.out.println(s);
        //Following line doesn't compile under javac or ojc:
        //List<Snow> snow2 = Arrays.asList(new Light(), new Heavy());
        List<Snow> snow3 = new ArrayList<Snow>();
        //Following line compiles under javac but not under ojc:
        Collections.addAll(snow3, new Light(), new Heavy());
        System.out.println("snow3:");
        for (Snow s : snow3) {
          System.out.println(s);
        //Following line compiles under both javac and ojc:
        List<Snow> snow4 = Arrays.<Snow> asList(new Light(), new Heavy());
        System.out.println("snow4:");
        for (Snow s : snow4) {
          System.out.println(s);
    }

    Loren,
    thanks will file this too
    Frank

  • TableSorter errors when adding new data

    so here is the deal:
    I am using the TableSorter.java helper class with DefaultTableModel
    from: http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
    It works great when the data is static and I get it for the first time. however, occationally, when adding new data I get a NullPointerException error.
    in use:
    DefaultTableModel.addRow()
    DefaultTableModel.removeRow() and
    DefaultTableModel.insertRow() methods.
    Error:
    java.lang.ArrayIndexOutOfBoundsException: 5
         at com.shared.model.TableSorter.modelIndex(TableSorter.java:294)
         at com.shared.model.TableSorter.getValueAt(TableSorter.java:340)
         at javax.swing.JTable.getValueAt(Unknown Source)
         at javax.swing.JTable.prepareRenderer(Unknown Source)...
    code problem I:
        public Object getValueAt(int row, int column)
            return tableModel.getValueAt(modelIndex(row), column);
        }code problem II:
        public int modelIndex(int viewIndex)
                 return getViewToModel()[viewIndex].modelIndex;     
        }TableSroter class:
    package com.shared.model;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.TableModelEvent;
    import javax.swing.event.TableModelListener;
    import javax.swing.table.*;
    * TableSorter is a decorator for TableModels; adding sorting
    * functionality to a supplied TableModel. TableSorter does
    * not store or copy the data in its TableModel; instead it maintains
    * a map from the row indexes of the view to the row indexes of the
    * model. As requests are made of the sorter (like getValueAt(row, col))
    * they are passed to the underlying model after the row numbers
    * have been translated via the internal mapping array. This way,
    * the TableSorter appears to hold another copy of the table
    * with the rows in a different order.
    * <p/>
    * TableSorter registers itself as a listener to the underlying model,
    * just as the JTable itself would. Events recieved from the model
    * are examined, sometimes manipulated (typically widened), and then
    * passed on to the TableSorter's listeners (typically the JTable).
    * If a change to the model has invalidated the order of TableSorter's
    * rows, a note of this is made and the sorter will resort the
    * rows the next time a value is requested.
    * <p/>
    * When the tableHeader property is set, either by using the
    * setTableHeader() method or the two argument constructor, the
    * table header may be used as a complete UI for TableSorter.
    * The default renderer of the tableHeader is decorated with a renderer
    * that indicates the sorting status of each column. In addition,
    * a mouse listener is installed with the following behavior:
    * <ul>
    * <li>
    * Mouse-click: Clears the sorting status of all other columns
    * and advances the sorting status of that column through three
    * values: {NOT_SORTED, ASCENDING, DESCENDING} (then back to
    * NOT_SORTED again).
    * <li>
    * SHIFT-mouse-click: Clears the sorting status of all other columns
    * and cycles the sorting status of the column through the same
    * three values, in the opposite order: {NOT_SORTED, DESCENDING, ASCENDING}.
    * <li>
    * CONTROL-mouse-click and CONTROL-SHIFT-mouse-click: as above except
    * that the changes to the column do not cancel the statuses of columns
    * that are already sorting - giving a way to initiate a compound
    * sort.
    * </ul>
    * <p/>
    * This is a long overdue rewrite of a class of the same name that
    * first appeared in the swing table demos in 1997.
    * @author Philip Milne
    * @author Brendon McLean
    * @author Dan van Enckevort
    * @author Parwinder Sekhon
    * @version 2.0 02/27/04
    public class TableSorter extends AbstractTableModel
        protected TableModel tableModel;
        public static final int DESCENDING = -1;
        public static final int NOT_SORTED = 0;
        public static final int ASCENDING = 1;
        private static Directive EMPTY_DIRECTIVE = new Directive(-1, NOT_SORTED);
        public static final Comparator COMPARABLE_COMAPRATOR = new Comparator()
            public int compare(Object o1, Object o2)
                return ((Comparable) o1).compareTo(o2);
        public static final Comparator LEXICAL_COMPARATOR = new Comparator()
            public int compare(Object o1, Object o2)
                return o1.toString().compareTo(o2.toString());
        private Row[] viewToModel;
        private int[] modelToView;
        private JTableHeader tableHeader;
        private MouseListener mouseListener;
        private TableModelListener tableModelListener;
        private Map columnComparators = new HashMap();
        private List sortingColumns = new ArrayList();
        public TableSorter()
            this.mouseListener = new MouseHandler();
            this.tableModelListener = new TableModelHandler();
        public TableSorter(TableModel tableModel)
            this();
            setTableModel(tableModel);
        public TableSorter(TableModel tableModel, JTableHeader tableHeader)
            this();
            setTableHeader(tableHeader);
            setTableModel(tableModel);
        private void clearSortingState()
            viewToModel = null;
            modelToView = null;
        public TableModel getTableModel()
            return tableModel;
        public void setTableModel(TableModel tableModel)
            if (this.tableModel != null)
                this.tableModel.removeTableModelListener(tableModelListener);
            this.tableModel = tableModel;
            if (this.tableModel != null)
                this.tableModel.addTableModelListener(tableModelListener);
            clearSortingState();
            fireTableStructureChanged();
        public JTableHeader getTableHeader()
            return tableHeader;
        public void setTableHeader(JTableHeader tableHeader)
            if (this.tableHeader != null)
                this.tableHeader.removeMouseListener(mouseListener);
                TableCellRenderer defaultRenderer = this.tableHeader.getDefaultRenderer();
                if (defaultRenderer instanceof SortableHeaderRenderer)
                    this.tableHeader.setDefaultRenderer(((SortableHeaderRenderer) defaultRenderer).tableCellRenderer);
            this.tableHeader = tableHeader;
            if (this.tableHeader != null)
                this.tableHeader.addMouseListener(mouseListener);
                this.tableHeader.setDefaultRenderer
                        new SortableHeaderRenderer(this.tableHeader.getDefaultRenderer())
        public boolean isSorting()
            return sortingColumns.size() != 0;
        private Directive getDirective(int column)
            for (int i = 0; i < sortingColumns.size(); i++)
                Directive directive = (Directive)sortingColumns.get(i);
                if (directive.column == column)
                    return directive;
            return EMPTY_DIRECTIVE;
        public int getSortingStatus(int column)
            return getDirective(column).direction;
        private void sortingStatusChanged()
            clearSortingState();
            fireTableDataChanged();
            if (tableHeader != null)
                tableHeader.repaint();
        public void setSortingStatus(int column, int status)
            Directive directive = getDirective(column);
            if (directive != EMPTY_DIRECTIVE)
                sortingColumns.remove(directive);
            if (status != NOT_SORTED)
                sortingColumns.add(new Directive(column, status));
            sortingStatusChanged();
        protected Icon getHeaderRendererIcon(int column, int size)
            Directive directive = getDirective(column);
            if (directive == EMPTY_DIRECTIVE)
                return null;
            return new Arrow(directive.direction == DESCENDING, size, sortingColumns.indexOf(directive));
        private void cancelSorting()
            sortingColumns.clear();
            sortingStatusChanged();
        public void setColumnComparator(Class type, Comparator comparator)
            if (comparator == null)
                columnComparators.remove(type);
            else
                columnComparators.put(type, comparator);
        protected Comparator getComparator(int column)
            Class columnType = tableModel.getColumnClass(column);
            Comparator comparator = (Comparator) columnComparators.get(columnType);
            if (comparator != null)
                return comparator;
            if (Comparable.class.isAssignableFrom(columnType))
                return COMPARABLE_COMAPRATOR;
            return LEXICAL_COMPARATOR;
        private Row[] getViewToModel()
            if (viewToModel == null)
                int tableModelRowCount = tableModel.getRowCount();
                viewToModel = new Row[tableModelRowCount];
                for (int row = 0; row < tableModelRowCount; row++)
                    viewToModel[row] = new Row(row);
                if (isSorting())
                    Arrays.sort(viewToModel);
            return viewToModel;
        public int modelIndex(int viewIndex)
                 return getViewToModel()[viewIndex].modelIndex;     
        private int[] getModelToView()
            if (modelToView == null)
                int n = getViewToModel().length;
                modelToView = new int[n];
                for (int i = 0; i < n; i++)
                    modelToView[modelIndex(i)] = i;
            return modelToView;
        // TableModel interface methods
        public int getRowCount()
            return (tableModel == null) ? 0 : tableModel.getRowCount();
        public int getColumnCount()
            return (tableModel == null) ? 0 : tableModel.getColumnCount();
        public String getColumnName(int column)
            return tableModel.getColumnName(column);
        public Class getColumnClass(int column)
            return tableModel.getColumnClass(column);
        public boolean isCellEditable(int row, int column)
            return tableModel.isCellEditable(modelIndex(row), column);
        public Object getValueAt(int row, int column)
            return tableModel.getValueAt(modelIndex(row), column);
        public void setValueAt(Object aValue, int row, int column)
            tableModel.setValueAt(aValue, modelIndex(row), column);
        // Helper classes
        private class Row implements Comparable
            private int modelIndex;
            public Row(int index)
                this.modelIndex = index;
            public int compareTo(Object o)
                int row1 = modelIndex;
                int row2 = ((Row) o).modelIndex;
                for (Iterator it = sortingColumns.iterator(); it.hasNext();)
                    Directive directive = (Directive) it.next();
                    int column = directive.column;
                    Object o1 = tableModel.getValueAt(row1, column);
                    Object o2 = tableModel.getValueAt(row2, column);
                    int comparison = 0;
                    // Define null less than everything, except null.
                    if (o1 == null && o2 == null)
                        comparison = 0;
                    } else if (o1 == null)
                        comparison = -1;
                    } else if (o2 == null)
                        comparison = 1;
                    } else {
                        comparison = getComparator(column).compare(o1, o2);
                    if (comparison != 0)
                        return directive.direction == DESCENDING ? -comparison : comparison;
                return 0;
        private class TableModelHandler implements TableModelListener
            public void tableChanged(TableModelEvent e)
                // If we're not sorting by anything, just pass the event along.            
                if (!isSorting())
                    clearSortingState();
                    fireTableChanged(e);
                    return;
                // If the table structure has changed, cancel the sorting; the            
                // sorting columns may have been either moved or deleted from            
                // the model.
                if (e.getFirstRow() == TableModelEvent.HEADER_ROW)
                    cancelSorting();
                    fireTableChanged(e);
                    return;
                // We can map a cell event through to the view without widening            
                // when the following conditions apply:
                // a) all the changes are on one row (e.getFirstRow() == e.getLastRow()) and,
                // b) all the changes are in one column (column != TableModelEvent.ALL_COLUMNS) and,
                // c) we are not sorting on that column (getSortingStatus(column) == NOT_SORTED) and,
                // d) a reverse lookup will not trigger a sort (modelToView != null)
                // Note: INSERT and DELETE events fail this test as they have column == ALL_COLUMNS.
                // The last check, for (modelToView != null) is to see if modelToView
                // is already allocated. If we don't do this check; sorting can become
                // a performance bottleneck for applications where cells 
                // change rapidly in different parts of the table. If cells
                // change alternately in the sorting column and then outside of            
                // it this class can end up re-sorting on alternate cell updates -
                // which can be a performance problem for large tables. The last
                // clause avoids this problem.
                int column = e.getColumn();
                if (e.getFirstRow() == e.getLastRow()
                        && column != TableModelEvent.ALL_COLUMNS
                        && getSortingStatus(column) == NOT_SORTED
                        && modelToView != null)
                    int viewIndex = getModelToView()[e.getFirstRow()];
                    fireTableChanged(new TableModelEvent(TableSorter.this,
                                                         viewIndex, viewIndex,
                                                         column, e.getType()));
                    return;
                // Something has happened to the data that may have invalidated the row order.
                clearSortingState();
                fireTableDataChanged();
                return;
        private class MouseHandler extends MouseAdapter
            public void mouseClicked(MouseEvent e)
                JTableHeader h = (JTableHeader) e.getSource();
                TableColumnModel columnModel = h.getColumnModel();
                int viewColumn = columnModel.getColumnIndexAtX(e.getX());
                int column = columnModel.getColumn(viewColumn).getModelIndex();
                if (column != -1)
                    int status = getSortingStatus(column);
                    if (!e.isControlDown())
                        cancelSorting();
                    // Cycle the sorting states through {NOT_SORTED, ASCENDING, DESCENDING} or
                    // {NOT_SORTED, DESCENDING, ASCENDING} depending on whether shift is pressed.
                    status = status + (e.isShiftDown() ? -1 : 1);
                    status = (status + 4) % 3 - 1; // signed mod, returning {-1, 0, 1}
                    setSortingStatus(column, status);
        private static class Arrow implements Icon
            private boolean descending;
            private int size;
            private int priority;
            public Arrow(boolean descending, int size, int priority)
                this.descending = descending;
                this.size = size;
                this.priority = priority;
            public void paintIcon(Component c, Graphics g, int x, int y)
                Color color = c == null ? Color.GRAY : c.getBackground();            
                // In a compound sort, make each succesive triangle 20%
                // smaller than the previous one.
                int dx = (int)(size/2*Math.pow(0.8, priority));
                int dy = descending ? dx : -dx;
                // Align icon (roughly) with font baseline.
                y = y + 5*size/6 + (descending ? -dy : 0);
                int shift = descending ? 1 : -1;
                g.translate(x, y);
                // Right diagonal.
                g.setColor(color.darker());
                g.drawLine(dx / 2, dy, 0, 0);
                g.drawLine(dx / 2, dy + shift, 0, shift);
                // Left diagonal.
                g.setColor(color.brighter());
                g.drawLine(dx / 2, dy, dx, 0);
                g.drawLine(dx / 2, dy + shift, dx, shift);
                // Horizontal line.
                if (descending) {
                    g.setColor(color.darker().darker());
                } else {
                    g.setColor(color.brighter().brighter());
                g.drawLine(dx, 0, 0, 0);
                g.setColor(color);
                g.translate(-x, -y);
            public int getIconWidth()
                return size;
            public int getIconHeight()
                return size;
        private class SortableHeaderRenderer implements TableCellRenderer
            private TableCellRenderer tableCellRenderer;
            public SortableHeaderRenderer(TableCellRenderer tableCellRenderer)
                this.tableCellRenderer = tableCellRenderer;
            public Component getTableCellRendererComponent(JTable table,
                                                           Object value,
                                                           boolean isSelected,
                                                           boolean hasFocus,
                                                           int row,
                                                           int column)
                Component c = tableCellRenderer.getTableCellRendererComponent(table,
                        value, isSelected, hasFocus, row, column);
                if (c instanceof JLabel) {
                    JLabel l = (JLabel) c;
                    l.setHorizontalTextPosition(JLabel.LEFT);
                    int modelColumn = table.convertColumnIndexToModel(column);
                    l.setIcon(getHeaderRendererIcon(modelColumn, l.getFont().getSize()));
                return c;
        private static class Directive
            private int column;
            private int direction;
            public Directive(int column, int direction)
                this.column = column;
                this.direction = direction;
    }any input will be appreciated.
    thanks
    Peter

    The code you posted doesn't help us at all. Its just a duplicate of the code from the tutorial. The custom code is what you have written. For example do you update the TableModel from the Event Thread? Do you update the SortModel or the DefaultTableModel? If you actually provide your test code and somebody has already downloaded the sort classes, then maybe they will test your code against the classes. But I doubt if people will download the sort classes and create a test program just to see if they can duplicate your results (at least I know I'm not about to).

  • CRM 2013 error when adding a new appointment in Outlook.

    When added
    NEW DEADLINE The outlook on the calendar, I received an
    error in CRM.
    /////ERROR//////////////////////////////////////////////////////////////////////////////////////////
    [2015-03-05 09:20:34.403] Process: w3wp |Organization:b5eb04f5-c174-e411-8f8d-0019990163cf |Thread:   28 |Category: Exception |User: 04b7d2dc-0428-e211-8585-000c29667e7c |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | CrmException..ctor 
    ilOffset = 0x7
     at CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException)  ilOffset = 0x7
     at CrmException..ctor(String message, Int32 errorCode)  ilOffset = 0x5
     at SecurityLibrary.RetrievePrivilegeForUser(IUser user, Guid privilege, ExecutionContext context)  ilOffset = 0x14B
     at SecurityLibrary.TryCheckPrivilege(Guid user, Guid privilege, ExecutionContext context)  ilOffset = 0x3D
     at SecurityLibrary.TryCheckPrivilege(SecurityPrincipal principal, Guid privilege, ExecutionContext context)  ilOffset = 0x42
     at SecurityLibrary.CheckPrivilege(SecurityPrincipal principal, Guid privilege, ExecutionContext context)  ilOffset = 0x0
     at AddressManager.GetOwnerCandidate(AddressEntry addressEntry)  ilOffset = 0x50
     at AddressResolver.BuildResolvedAddressEntry(AddressCategory category, BusinessEntity businessEntity, Guid& objectId, Boolean active, String emailAddressMatched)  ilOffset = 0x58
     at AddressResolver.GetPrunedList(BusinessEntityCollection responseCollection, AddressCategory category, Hashtable removeDuplicateFilter)  ilOffset = 0x6B
     at AddressResolver.DoResolve(AddressEntry[] addressEntriesToResolve, Int32[] objectTypes, Boolean matchPartialEmailAddresses)  ilOffset = 0x70
     at AddressManager.ResolveEmailAddressInternalHelper(String emailAddresses, Int32[] objectTypeCodes)  ilOffset = 0x1F
     at CommunicationActivityServiceBase.ResolveUnresolvedParties(BusinessEntityCollection parties, Int32[] objectTypes, ExecutionContext context)  ilOffset = 0x5C
     at AppointmentService.Book(BusinessEntity entity, ExecutionContext context)  ilOffset = 0x3D
     at RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)  ilOffset = 0xFFFFFFFF
     at RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)  ilOffset = 0x25
     at RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)  ilOffset = 0xCF
     at LogicalMethodInfo.Invoke(Object target, Object[] values)  ilOffset = 0x4F
     at InternalOperationPlugin.Execute(IServiceProvider serviceProvider)  ilOffset = 0x57
     at V5PluginProxyStep.ExecuteInternal(PipelineExecutionContext context)  ilOffset = 0x200
     at VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)  ilOffset = 0x65
     at Pipeline.Execute(PipelineExecutionContext context)  ilOffset = 0x6C
     at MessageProcessor.Execute(PipelineExecutionContext context)  ilOffset = 0x1C5
     at InternalMessageDispatcher.Execute(PipelineExecutionContext context)  ilOffset = 0xE4
     at ExternalMessageDispatcher.ExecuteInternal(IInProcessOrganizationServiceFactory serviceFactory, IPlatformMessageDispatcherFactory dispatcherFactory, String messageName, String requestName, Int32 primaryObjectTypeCode, Int32 secondaryObjectTypeCode,
    ParameterCollection fields, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId, Guid transactionContextId, Int32 invocationSource, Nullable`1 requestId, Version endpointVersion)  ilOffset = 0x16E
     at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, UserAuth userAuth, Guid targetUserId, OrganizationContext context, Boolean
    returnResponse, Boolean checkAdminMode)  ilOffset = 0x1F1
     at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset = 0x2D
     at OrganizationSdkServiceInternal.Execute(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset = 0x26
     at OrganizationSdkService.Execute(OrganizationRequest request)  ilOffset = 0xD
     at   ilOffset = 0xFFFFFFFF
     at SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)  ilOffset = 0x241
     at DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)  ilOffset = 0x100
     at ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)  ilOffset = 0x48
     at MessageRpc.Process(Boolean isOperationContextSet)  ilOffset = 0x62
     at Wrapper.Resume(Boolean& alreadyResumedNoLock)  ilOffset = 0x1B
     at ThreadBehavior.SynchronizationContextStartCallback(Object state)  ilOffset = 0x0
     at ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)  ilOffset = 0x70
     at ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)  ilOffset = 0x4
     at QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()  ilOffset = 0x0
     at ThreadPoolWorkQueue.Dispatch()  ilOffset = 0xA3
    >Crm Exception: Message: SecLib::RetrievePrivilegeForUser failed - no roles are assigned to user. Returned hr = -2147209463, User: ed2ef8c8-69db-e311-9816-0019990163cf, ErrorCode: -2147209463
    [2015-03-05 09:20:34.572] Process: w3wp |Organization:b5eb04f5-c174-e411-8f8d-0019990163cf |Thread:   28 |Category: Platform.Sdk |User: 04b7d2dc-0428-e211-8585-000c29667e7c |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | VersionedPluginProxyStepBase.Execute 
    ilOffset = 0x65
    >Web Service Plug-in failed in SdkMessageProcessingStepId: {E4C9BB1B-EA3E-DB11-86A7-000A3A5473E8}; EntityName: appointment; Stage: 30; MessageName: Book; AssemblyName: Microsoft.Crm.Extensibility.InternalOperationPlugin, Microsoft.Crm.ObjectModel, Version=6.0.0.0,
    Culture=neutral, PublicKeyToken=31bf3856ad364e35; ClassName: Microsoft.Crm.Extensibility.InternalOperationPlugin; Exception: Unhandled Exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
       at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at System.Web.Services.Protocols.LogicalMethodInfo.Invoke(Object target, Object[] values)
       at Microsoft.Crm.Extensibility.InternalOperationPlugin.Execute(IServiceProvider serviceProvider)
       at Microsoft.Crm.Extensibility.V5PluginProxyStep.ExecuteInternal(PipelineExecutionContext context)
       at Microsoft.Crm.Extensibility.VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)
    Inner Exception: System.Globalization.CultureNotFoundException: Culture is not supported.
    Parameter name: culture
    0 (0x0000) is an invalid culture identifier.
       at System.Globalization.CultureInfo.InitializeFromCultureId(Int32 culture, Boolean useUserOverride)
       at System.Globalization.CultureInfo..ctor(Int32 culture)
       at Microsoft.Crm.Common.BusinessEntities.AppointmentConflictNotificationGenerator.AddNotifications(NotificationAdder notifications, ErrorInfo[] errorInfoArray, CrmResourceManager crmResourceManager, IOrganizationContext context)
       at Microsoft.Crm.Common.ObjectModel.AppointmentService.Book(BusinessEntity entity, ExecutionContext context)
    [2015-03-05 09:20:34.579] Process: w3wp |Organization:b5eb04f5-c174-e411-8f8d-0019990163cf |Thread:   28 |Category: Exception |User: 04b7d2dc-0428-e211-8585-000c29667e7c |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | CrmException..ctor 
    ilOffset = 0x7
     at CrmException..ctor(String message, Exception innerException, Int32 errorCode, Boolean isFlowControlException)  ilOffset = 0x7
     at CrmException..ctor(Exception innerException, Int32 errorCode, Object[] arguments)  ilOffset = 0xB
     at VersionedPluginProxyStepBase.Execute(PipelineExecutionContext context)  ilOffset = 0x65
     at Pipeline.Execute(PipelineExecutionContext context)  ilOffset = 0x6C
     at MessageProcessor.Execute(PipelineExecutionContext context)  ilOffset = 0x1C5
     at InternalMessageDispatcher.Execute(PipelineExecutionContext context)  ilOffset = 0xE4
     at ExternalMessageDispatcher.ExecuteInternal(IInProcessOrganizationServiceFactory serviceFactory, IPlatformMessageDispatcherFactory dispatcherFactory, String messageName, String requestName, Int32 primaryObjectTypeCode, Int32 secondaryObjectTypeCode,
    ParameterCollection fields, CorrelationToken correlationToken, CallerOriginToken originToken, UserAuth userAuth, Guid callerId, Guid transactionContextId, Int32 invocationSource, Nullable`1 requestId, Version endpointVersion)  ilOffset = 0x16E
     at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, UserAuth userAuth, Guid targetUserId, OrganizationContext context, Boolean
    returnResponse, Boolean checkAdminMode)  ilOffset = 0x1F1
     at OrganizationSdkServiceInternal.ExecuteRequest(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset = 0x2D
     at OrganizationSdkServiceInternal.Execute(OrganizationRequest request, CorrelationToken correlationToken, CallerOriginToken callerOriginToken, WebServiceType serviceType, Boolean checkAdminMode)  ilOffset = 0x26
     at OrganizationSdkService.Execute(OrganizationRequest request)  ilOffset = 0xD
     at   ilOffset = 0xFFFFFFFF
     at SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)  ilOffset = 0x241
     at DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)  ilOffset = 0x100
     at ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)  ilOffset = 0x48
     at MessageRpc.Process(Boolean isOperationContextSet)  ilOffset = 0x62
     at Wrapper.Resume(Boolean& alreadyResumedNoLock)  ilOffset = 0x1B
     at ThreadBehavior.SynchronizationContextStartCallback(Object state)  ilOffset = 0x0
     at ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)  ilOffset = 0x70
     at ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)  ilOffset = 0x4
     at QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()  ilOffset = 0x0
     at ThreadPoolWorkQueue.Dispatch()  ilOffset = 0xA3
    >Crm Exception: Message: An unexpected error occurred., ErrorCode: -2147220970, InnerException: System.Globalization.CultureNotFoundException: Culture is not supported.
    Parameter name: culture
    0 (0x0000) is an invalid culture identifier.
       at System.Globalization.CultureInfo.InitializeFromCultureId(Int32 culture, Boolean useUserOverride)
       at System.Globalization.CultureInfo..ctor(Int32 culture)
       at Microsoft.Crm.Common.BusinessEntities.AppointmentConflictNotificationGenerator.AddNotifications(NotificationAdder notifications, ErrorInfo[] errorInfoArray, CrmResourceManager crmResourceManager, IOrganizationContext context)
       at Microsoft.Crm.Common.ObjectModel.AppointmentService.Book(BusinessEntity entity, ExecutionContext context)
    [2015-03-05 09:20:34.580] Process: w3wp |Organization:b5eb04f5-c174-e411-8f8d-0019990163cf |Thread:   28 |Category: Platform |User: 04b7d2dc-0428-e211-8585-000c29667e7c |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | MessageProcessor.Execute 
    ilOffset = 0x1C5
    >MessageProcessor fail to process message 'Book' for 'appointment'.
    [2015-03-05 09:20:34.581] Process: w3wp |Organization:00000000-0000-0000-0000-000000000000 |Thread:   28 |Category: Platform |User: 00000000-0000-0000-0000-000000000000 |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | ExceptionConverter.ConvertToFault 
    ilOffset = 0x69
    >UNEXPECTED: no fault?
    [2015-03-05 09:20:34.582] Process: w3wp |Organization:00000000-0000-0000-0000-000000000000 |Thread:   28 |Category: Platform |User: 00000000-0000-0000-0000-000000000000 |Level: Error |ReqId: 8b0e1332-9d32-456b-b953-aa5bfc9c1912 | ExceptionConverter.ConvertMessageAndErrorCode 
    ilOffset = 0x23B
    >System.Globalization.CultureNotFoundException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #895E889A: System.Globalization.CultureNotFoundException: Culture is not supported.
    >Parameter name: culture
    >0 (0x0000) is an invalid culture identifier.
    >   at System.Globalization.CultureInfo.InitializeFromCultureId(Int32 culture, Boolean useUserOverride)
    >   at System.Globalization.CultureInfo..ctor(Int32 culture)
    >   at Microsoft.Crm.Common.BusinessEntities.AppointmentConflictNotificationGenerator.AddNotifications(NotificationAdder notifications, ErrorInfo[] errorInfoArray, CrmResourceManager crmResourceManager, IOrganizationContext context)
    >   at Microsoft.Crm.Common.ObjectModel.AppointmentService.Book(BusinessEntity entity, ExecutionContext context)
    /////END  ERROR//////////////////////////////////////////////////////////////////////////////////////////
    And then the
    date of the duplicates in the calendar
    in Outlook and CRM.
    My version CRM 2013 -
    6.1.2.112
    Crm2013wasthemigratedfromthe
    2011 version.  
    Does anyone have any idea how to
    solve it.

    I checked it, these errors
    occur on all users. Below
    the main errors that occur.
    Crm Exception: Message: SecLib::RetrievePrivilegeForUser failed - no roles are assigned to user. Returned hr = -2147209463, User: ed2ef8c8-69db-e311-9816-0019990163cf, ErrorCode: -2147209463
    Web Service Plug-in failed in SdkMessageProcessingStepId: {E4C9BB1B-EA3E-DB11-86A7-000A3A5473E8}; EntityName: appointment; Stage: 30; MessageName: Book; AssemblyName: Microsoft.Crm.Extensibility.InternalOperationPlugin, Microsoft.Crm.ObjectModel, Version=6.0.0.0,
    Culture=neutral, PublicKeyToken=31bf3856ad364e35; ClassName: Microsoft.Crm.Extensibility.InternalOperationPlugin; Exception: Unhandled Exception: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation.
    Inner Exception: System.Globalization.CultureNotFoundException: Culture is not supported.
    Parameter name: culture
    0 (0x0000) is an invalid culture identifier.
    Crm Exception: Message: An unexpected error occurred., ErrorCode: -2147220970, InnerException: System.Globalization.CultureNotFoundException: Culture is not supported.
    Parameter name: culture
    0 (0x0000) is an invalid culture identifier.
    MessageProcessor fail to process message 'Book' for 'appointment'.
    System.Globalization.CultureNotFoundException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #895E889A: System.Globalization.CultureNotFoundException: Culture is not supported.
    >Parameter name: culture
    >0 (0x0000) is an invalid culture identifier.

  • JTable sorting - problem when adding elements (complete code inside)

    I�m writing this email with reference to a recent posting here but this time with the code example. (I apologize for the duplicated posting � this time it will be with the code)
    Problem: when adding more elements to the JTable (sorted) the exception: ArrayIndexOutOfBoundsException is thrown.
    Example: If the elements in the table are 10 and then the user requests for 8 � the table will produce the correct result. However, if the user will ask for 11 items (>10) the exception will be thrown.
    The program: The program below (compiles and running). A JTable is constructed with 3 items, when you click the button - the return result should be 4 items - this will generate the error, WHY?
    I would highly appreciate your thoughts why this is happening and most importantly � how to fix it.
    Thanks a lot
    3 files:
    (1) TableSorterDemo
    (2) Traveler
    (3)TableSorter
    //TableSorterDemo:
    package sorter;
    import javax.swing.DefaultListModel;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.AbstractTableModel;
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    * TableSorterDemo is like TableDemo, except that it
    * inserts a custom model -- a sorter -- between the table
    * and its data model.  It also has column tool tips.
    public class TableSorterDemo implements ActionListener
         private JPanel superPanel;
         private JButton clickMe = new JButton("click me to get diff data");
         private boolean DEBUG = false;
         private DefaultListModel defaultListModel;
         private JTable table;
        public TableSorterDemo()
             superPanel = new JPanel(new BorderLayout());
             defaultListModel = new DefaultListModel();
             init1();
            TableSorter sorter = new TableSorter(new MyTableModel(defaultListModel)); //ADDED THIS     
            table = new JTable(sorter);             //NEW
            sorter.setTableHeader(table.getTableHeader()); //ADDED THIS
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            //Set up tool tips for column headers.
            table.getTableHeader().setToolTipText(
                    "Click to specify sorting; Control-Click to specify secondary sorting");
            //Create the scroll pane and add the table to it.
            JScrollPane scrollPane = new JScrollPane(table);
            //Add the scroll pane to this panel.
            superPanel.add("Center", scrollPane);
            superPanel.add("South",clickMe);
            clickMe.addActionListener(this);              
        public JPanel getPanel()
             return superPanel;
        public void init1()
             //in real life this will be done from the db
             Traveler a = new Traveler();
             Traveler b = new Traveler();
             Traveler c = new Traveler();
             a.setFirstName("Elvis");
             a.setLastName("Presley");
             a.setSprot("Ping Pong");
             a.setNumYears(3);
             a.setVegetarian(true);
             b.setFirstName("Elton");
             b.setLastName("John");
             b.setSprot("Soccer");
             b.setNumYears(2);
             b.setVegetarian(true);
             c.setFirstName("shaquille");
             c.setLastName("oneil");
             c.setSprot("Golf");
             c.setNumYears(22);
             c.setVegetarian(true);
             defaultListModel.addElement(a);
             defaultListModel.addElement(b);
             defaultListModel.addElement(c);
        public void init2()
             //in real life this will be done from the db
             Traveler d = new Traveler();
             Traveler e = new Traveler();
             Traveler f = new Traveler();
             Traveler g = new Traveler();
             d.setFirstName("John");
             d.setLastName("Smith");
             d.setSprot("Tennis");
             d.setNumYears(32);
             d.setVegetarian(true);
             e.setFirstName("Ron");
             e.setLastName("Cohen");
             e.setSprot("Baseball");
             e.setNumYears(12);
             e.setVegetarian(true);
             f.setFirstName("Donald");
             f.setLastName("Mac Novice");
             f.setSprot("Vallyball");
             f.setNumYears(1);
             f.setVegetarian(true);
             g.setFirstName("Eithan");
             g.setLastName("Superstar");
             g.setSprot("Vallyball");
             g.setNumYears(21);
             g.setVegetarian(true);
             defaultListModel.addElement(d);
             defaultListModel.addElement(e);
             defaultListModel.addElement(f);
             defaultListModel.addElement(g);            
        class MyTableModel extends AbstractTableModel
             private DefaultListModel myModel;
             public MyTableModel(DefaultListModel m)
                  myModel=m;
            private String[] columnNames = {"First Name",
                                            "Last Name",
                                            "Sport",
                                            "# of Years",
                                            "Vegetarian"};
            public int getColumnCount()
                return columnNames.length;
            public int getRowCount()
                return myModel.size();
            public String getColumnName(int column)
                 return getNames()[column];             
             public String[] getNames()
                  String[] names = {"First Name", "Last Name", "Sport", "# of Years", "Vegetarian"};
                  return names;
            public Object getValueAt(int row, int col)
                 return distributeObjectsInTable(row, col, (Traveler) myModel.elementAt(row));
            public Object distributeObjectsInTable(int row, int col, Traveler tr)
               switch(col)
                         case 0:
                              return tr.getFirstName();
                         case 1:
                           return tr.getLastName();
                      case 2:
                           return tr.getSprot();
                      case 3:
                           return new Integer(tr.getNumYears());
                      case 4:
                           return new Boolean (tr.isVegetarian());
                     default:
                         return "Error";
            public Class getColumnClass(int c)
                return getValueAt(0, c).getClass();
        private static void createAndShowGUI()
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("TableSorterDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            TableSorterDemo newContentPane = new TableSorterDemo();
            newContentPane.getPanel().setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane.getPanel());
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args)
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable()                   
                public void run()
                    createAndShowGUI();
         public void actionPerformed(ActionEvent ae)
              if (ae.getSource()==clickMe)
                   defaultListModel.removeAllElements();
                   init2(); //if the size of the model was less than 2 items - the result will be ok.
                              //in other words, if you commens the last 2 rows of this method (addElement(f) & g)
                             // the result will be fine.
                   table.updateUI();          
    }//(2) Traveler
    package sorter;
    public class Traveler
         private String firstName;
         private String lastName;
         private String sprot;
         private int numYears;
         private boolean vegetarian;
         public String getFirstName()
              return firstName;
         public String getLastName()
              return lastName;
         public int getNumYears()
              return numYears;
         public String getSprot()
              return sprot;
         public boolean isVegetarian()
              return vegetarian;
         public void setFirstName(String firstName)
              this.firstName = firstName;
         public void setLastName(String lastName)
              this.lastName = lastName;
         public void setNumYears(int numYears)
              this.numYears = numYears;
         public void setSprot(String sprot)
              this.sprot = sprot;
         public void setVegetarian(boolean vegetarian)
              this.vegetarian = vegetarian;
    }//(3)TableSorter
    package sorter;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.TableModelEvent;
    import javax.swing.event.TableModelListener;
    import javax.swing.table.*;
    public class TableSorter extends AbstractTableModel {
        protected TableModel tableModel;
        public static final int DESCENDING = -1;
        public static final int NOT_SORTED = 0;
        public static final int ASCENDING = 1;
        private static Directive EMPTY_DIRECTIVE = new Directive(-1, NOT_SORTED);
        public static final Comparator COMPARABLE_COMAPRATOR = new Comparator() {
            public int compare(Object o1, Object o2) {
                return ((Comparable) o1).compareTo(o2);
        public static final Comparator LEXICAL_COMPARATOR = new Comparator() {
            public int compare(Object o1, Object o2) {
                return o1.toString().compareTo(o2.toString());
        private Row[] viewToModel;
        private int[] modelToView;
        private JTableHeader tableHeader;
        private MouseListener mouseListener;
        private TableModelListener tableModelListener;
        private Map columnComparators = new HashMap();
        private List sortingColumns = new ArrayList();
        public TableSorter() {
            this.mouseListener = new MouseHandler();
            this.tableModelListener = new TableModelHandler();
        public TableSorter(TableModel tableModel) {
            this();
            setTableModel(tableModel);
        public TableSorter(TableModel tableModel, JTableHeader tableHeader) {
            this();
            setTableHeader(tableHeader);
            setTableModel(tableModel);
        private void clearSortingState() {
            viewToModel = null;
            modelToView = null;
        public TableModel getTableModel() {
            return tableModel;
        public void setTableModel(TableModel tableModel) {
            if (this.tableModel != null) {
                this.tableModel.removeTableModelListener(tableModelListener);
            this.tableModel = tableModel;
            if (this.tableModel != null) {
                this.tableModel.addTableModelListener(tableModelListener);
            clearSortingState();
            fireTableStructureChanged();
        public JTableHeader getTableHeader() {
            return tableHeader;
        public void setTableHeader(JTableHeader tableHeader) {
            if (this.tableHeader != null) {
                this.tableHeader.removeMouseListener(mouseListener);
                TableCellRenderer defaultRenderer = this.tableHeader.getDefaultRenderer();
                if (defaultRenderer instanceof SortableHeaderRenderer) {
                    this.tableHeader.setDefaultRenderer(((SortableHeaderRenderer) defaultRenderer).tableCellRenderer);
            this.tableHeader = tableHeader;
            if (this.tableHeader != null) {
                this.tableHeader.addMouseListener(mouseListener);
                this.tableHeader.setDefaultRenderer(
                        new SortableHeaderRenderer(this.tableHeader.getDefaultRenderer()));
        public boolean isSorting() {
            return sortingColumns.size() != 0;
        private Directive getDirective(int column) {
            for (int i = 0; i < sortingColumns.size(); i++) {
                Directive directive = (Directive)sortingColumns.get(i);
                if (directive.column == column) {
                    return directive;
            return EMPTY_DIRECTIVE;
        public int getSortingStatus(int column) {
            return getDirective(column).direction;
        private void sortingStatusChanged() {
            clearSortingState();
            fireTableDataChanged();
            if (tableHeader != null) {
                tableHeader.repaint();
        public void setSortingStatus(int column, int status) {
            Directive directive = getDirective(column);
            if (directive != EMPTY_DIRECTIVE) {
                sortingColumns.remove(directive);
            if (status != NOT_SORTED) {
                sortingColumns.add(new Directive(column, status));
            sortingStatusChanged();
        protected Icon getHeaderRendererIcon(int column, int size) {
            Directive directive = getDirective(column);
            if (directive == EMPTY_DIRECTIVE) {
                return null;
            return new Arrow(directive.direction == DESCENDING, size, sortingColumns.indexOf(directive));
        private void cancelSorting() {
            sortingColumns.clear();
            sortingStatusChanged();
        public void setColumnComparator(Class type, Comparator comparator) {
            if (comparator == null) {
                columnComparators.remove(type);
            } else {
                columnComparators.put(type, comparator);
        protected Comparator getComparator(int column) {
            Class columnType = tableModel.getColumnClass(column);
            Comparator comparator = (Comparator) columnComparators.get(columnType);
            if (comparator != null) {
                return comparator;
            if (Comparable.class.isAssignableFrom(columnType)) {
                return COMPARABLE_COMAPRATOR;
            return LEXICAL_COMPARATOR;
        private Row[] getViewToModel() {
            if (viewToModel == null) {
                int tableModelRowCount = tableModel.getRowCount();
                viewToModel = new Row[tableModelRowCount];
                for (int row = 0; row < tableModelRowCount; row++) {
                    viewToModel[row] = new Row(row);
                if (isSorting()) {
                    Arrays.sort(viewToModel);
            return viewToModel;
        public int modelIndex(int viewIndex)
            return getViewToModel()[viewIndex].modelIndex;
        private int[] getModelToView()
            if (modelToView == null) {
                int n = getViewToModel().length;
                modelToView = new int[n];
                for (int i = 0; i < n; i++) {
                    modelToView[modelIndex(i)] = i;
            return modelToView;
        // TableModel interface methods
        public int getRowCount() {
            return (tableModel == null) ? 0 : tableModel.getRowCount();
        public int getColumnCount() {
            return (tableModel == null) ? 0 : tableModel.getColumnCount();
        public String getColumnName(int column) {
            return tableModel.getColumnName(column);
        public Class getColumnClass(int column) {
            return tableModel.getColumnClass(column);
        public boolean isCellEditable(int row, int column) {
            return tableModel.isCellEditable(modelIndex(row), column);
        public Object getValueAt(int row, int column) {
            return tableModel.getValueAt(modelIndex(row), column);
        public void setValueAt(Object aValue, int row, int column) {
            tableModel.setValueAt(aValue, modelIndex(row), column);
        // Helper classes
        private class Row implements Comparable {
            private int modelIndex;
            public Row(int index) {
                this.modelIndex = index;
            public int compareTo(Object o) {
                int row1 = modelIndex;
                int row2 = ((Row) o).modelIndex;
                for (Iterator it = sortingColumns.iterator(); it.hasNext();) {
                    Directive directive = (Directive) it.next();
                    int column = directive.column;
                    Object o1 = tableModel.getValueAt(row1, column);
                    Object o2 = tableModel.getValueAt(row2, column);
                    int comparison = 0;
                    // Define null less than everything, except null.
                    if (o1 == null && o2 == null) {
                        comparison = 0;
                    } else if (o1 == null) {
                        comparison = -1;
                    } else if (o2 == null) {
                        comparison = 1;
                    } else {
                        comparison = getComparator(column).compare(o1, o2);
                    if (comparison != 0) {
                        return directive.direction == DESCENDING ? -comparison : comparison;
                return 0;
        private class TableModelHandler implements TableModelListener {
            public void tableChanged(TableModelEvent e) {
                // If we're not sorting by anything, just pass the event along.            
                if (!isSorting()) {
                    clearSortingState();
                    fireTableChanged(e);
                    return;
                // If the table structure has changed, cancel the sorting; the            
                // sorting columns may have been either moved or deleted from            
                // the model.
                if (e.getFirstRow() == TableModelEvent.HEADER_ROW) {
                    cancelSorting();
                    fireTableChanged(e);
                    return;
                // We can map a cell event through to the view without widening            
                // when the following conditions apply:
                // a) all the changes are on one row (e.getFirstRow() == e.getLastRow()) and,
                // b) all the changes are in one column (column != TableModelEvent.ALL_COLUMNS) and,
                // c) we are not sorting on that column (getSortingStatus(column) == NOT_SORTED) and,
                // d) a reverse lookup will not trigger a sort (modelToView != null)
                // Note: INSERT and DELETE events fail this test as they have column == ALL_COLUMNS.
                // The last check, for (modelToView != null) is to see if modelToView
                // is already allocated. If we don't do this check; sorting can become
                // a performance bottleneck for applications where cells 
                // change rapidly in different parts of the table. If cells
                // change alternately in the sorting column and then outside of            
                // it this class can end up re-sorting on alternate cell updates -
                // which can be a performance problem for large tables. The last
                // clause avoids this problem.
                int column = e.getColumn();
                if (e.getFirstRow() == e.getLastRow()
                        && column != TableModelEvent.ALL_COLUMNS
                        && getSortingStatus(column) == NOT_SORTED
                        && modelToView != null) {
                    int viewIndex = getModelToView()[e.getFirstRow()];
                    fireTableChanged(new TableModelEvent(TableSorter.this,
                                                         viewIndex, viewIndex,
                                                         column, e.getType()));
                    return;
                // Something has happened to the data that may have invalidated the row order.
                clearSortingState();
                fireTableDataChanged();
                return;
        private class MouseHandler extends MouseAdapter {
            public void mouseClicked(MouseEvent e) {
                JTableHeader h = (JTableHeader) e.getSource();
                TableColumnModel columnModel = h.getColumnModel();
                int viewColumn = columnModel.getColumnIndexAtX(e.getX());
                int column = columnModel.getColumn(viewColumn).getModelIndex();
                if (column != -1) {
                    int status = getSortingStatus(column);
                    if (!e.isControlDown()) {
                        cancelSorting();
                    // Cycle the sorting states through {NOT_SORTED, ASCENDING, DESCENDING} or
                    // {NOT_SORTED, DESCENDING, ASCENDING} depending on whether shift is pressed.
                    status = status + (e.isShiftDown() ? -1 : 1);
                    status = (status + 4) % 3 - 1; // signed mod, returning {-1, 0, 1}
                    setSortingStatus(column, status);
        private static class Arrow implements Icon {
            private boolean descending;
            private int size;
            private int priority;
            public Arrow(boolean descending, int size, int priority) {
                this.descending = descending;
                this.size = size;
                this.priority = priority;
            public void paintIcon(Component c, Graphics g, int x, int y) {
                Color color = c == null ? Color.GRAY : c.getBackground();            
                // In a compound sort, make each succesive triangle 20%
                // smaller than the previous one.
                int dx = (int)(size/2*Math.pow(0.8, priority));
                int dy = descending ? dx : -dx;
                // Align icon (roughly) with font baseline.
                y = y + 5*size/6 + (descending ? -dy : 0);
                int shift = descending ? 1 : -1;
                g.translate(x, y);
                // Right diagonal.
                g.setColor(color.darker());
                g.drawLine(dx / 2, dy, 0, 0);
                g.drawLine(dx / 2, dy + shift, 0, shift);
                // Left diagonal.
                g.setColor(color.brighter());
                g.drawLine(dx / 2, dy, dx, 0);
                g.drawLine(dx / 2, dy + shift, dx, shift);
                // Horizontal line.
                if (descending) {
                    g.setColor(color.darker().darker());
                } else {
                    g.setColor(color.brighter().brighter());
                g.drawLine(dx, 0, 0, 0);
                g.setColor(color);
                g.translate(-x, -y);
            public int getIconWidth() {
                return size;
            public int getIconHeight() {
                return size;
        private class SortableHeaderRenderer implements TableCellRenderer {
            private TableCellRenderer tableCellRenderer;
            public SortableHeaderRenderer(TableCellRenderer tableCellRenderer) {
                this.tableCellRenderer = tableCellRenderer;
            public Component getTableCellRendererComponent(JTable table,
                                                           Object value,
                                                           boolean isSelected,
                                                           boolean hasFocus,
                                                           int row,
                                                           int column) {
                Component c = tableCellRenderer.getTableCellRendererComponent(table,
                        value, isSelected, hasFocus, row, column);
                if (c instanceof JLabel) {
                    JLabel l = (JLabel) c;
                    l.setHorizontalTextPosition(JLabel.LEFT);
                    int modelColumn = table.convertColumnIndexToModel(column);
                    l.setIcon(getHeaderRendererIcon(modelColumn, l.getFont().getSize()));
                return c;
        private static class Directive {
            private int column;
            private int direction;
            public Directive(int column, int direction) {
                this.column = column;
                this.direction = direction;
    }

    The table listens to the TableModel for changes. Changing the table by adding/removing
    rows or columns has no affect on its table model. If you make changes to the table model
    the table will be notified by its TableModelListener and change its view. So tell
    MyTableModel about the change of data:
    public class TableSorterDemo implements ActionListener
        MyTableModel tableModel;
        public TableSorterDemo()
            defaultListModel = new DefaultListModel();
            init1();
            tableModel = new MyTableModel(defaultListModel);
            TableSorter sorter = new TableSorter(tableModel);
        public void actionPerformed(ActionEvent ae)
            if (ae.getSource()==clickMe)
                defaultListModel.removeAllElements();
                init2();
                tableModel.fireTableStructureChanged();
    }

  • Zoom settings change when adding pages

    Hi
    When adding a page to a document with this code:
    app.activeDocument.pages.add(LocationOptions.AT_END);
    InDesign automatically reverts the zoom setting to FIT_TO_PAGE
    Is there a way to prevent this from happening?
    I would like that it should stay at whatever it was.
    Help will be much appreciated!
    Thanks,
    Davey

    Davey_Doo wrote:
    1) is there a difference between what I wrote "layoutWindows[0]" and what you wrote "windows[0]"?
    Yup, "layoutWindows" refer to just the layout windows -- the ones one is normally working in. The other kind is "storyWindows", which is what you get when you open a text in the "Story Editor". There are vast differences between the two, such as "zoom" (you cannot zoom in on the story editor window).
    Using "windows", without specifying the kind, you get a list containing both types; and using "windows[0]", you get the very first one, whether it is a story window or a layout window. Then, if it happens to be a story window, csm_phil's script will Crash & Burn because you cannot zoom in on a story window.
    Your version will work correctly, and just in case you might have a story editor window open, it's best to stick to "layoutWindows" if you want to change a layout window property.
    2) Although this does help, is there a way to prevent it from happening?
         The reason I ask is because in a script which adds many pages, (e.g., MultiPageImporter script), the script needs to do this after adding each page.
    No, you cannot prevent it in any way. It's just ID's default built-in behavior (although it seems strange that this only happens when using a script!).
    But I disagree with your assessment it needs to be done "after adding each page". ID does not store the zoom percentage for each separate page and so it is enough to read the current zoom, add as much pages as you like, then set the zoom.

  • Should Parent objects be updated when adding a child?

    Hi,
    I have 2 objects in a one to many relationship, a parent with a collection
    of child objects.
    My parent object is being updated when I add child objects to it -
    although nothing on the parent object has changed (except maybe the
    JDOLOCKX column).
    Is this meant to happen - as part of the optimistic locking? Does it try
    and lock the owner of the collection when a new member is added?
    Thanks in advance,
    Chris

    We are planning a metadata extension to permit writing to a collection
    without changing optimistic lock values for the owning class.
    I don't have a good feel for the time frame of the feature yet.
    -Patrick
    On 5/21/02 1:06 PM, in article acduqj$e4j$[email protected], "Chris
    Kimpton" <[email protected]> wrote:
    Hi,
    This is occuring across JVMs for me - so I have put a crude re-try
    facility in place - it has a few goes at doing the work and then gives up
    if that is not sufficient. Not nice, but it seems to work.
    Chris
    David A. King wrote:
    I too have seen this behavior, which becomes frustrating when adding many
    children concurrently--I receive ConcurrentModificationExceptions on the
    parent, even though the parent itself did not change (except of course the
    collection of children) with optimisitic locking. I have had to serialize
    transactions manually to avoid the exceptions.
    Thanks,
    David A. King
    Chris Kimpton wrote:
    Hi,
    I have 2 objects in a one to many relationship, a parent with a collection
    of child objects.
    My parent object is being updated when I add child objects to it -
    although nothing on the parent object has changed (except maybe the
    JDOLOCKX column).
    Is this meant to happen - as part of the optimistic locking? Does it try
    and lock the owner of the collection when a new member is added?
    Thanks in advance,
    Chris

  • Since the upgrade to IOS7, the default phone label when adding new contacts on my iPhone 5 is "Radio".  Previously the default was "Mobile" how can this be changed back to "Mobile"?

    Since the upgrade to IOS7, the default phone label when adding new contacts in my iPhone 5 is "Radio". Previously the default was "Mobile". It is a hassle as when my iPhone contacts are synched with Outlook via Exchange, the phone number I've entered on the iPhone doesn't show on the default Outlook view as it is a "Radio" number rather than a "Mobile", "Work", "Home", etc number. It is still stored both on the iPhone & in Outlook & I can still use the number to phone or SMS, it is just incorrectly labelled & hence the source of frustration.
    Apple please return the default to "Mobile" or alternatively find a way we can alter the default ourselves to "Mobile" or "Home" etc.

    The following previous discussion may help: https://discussions.apple.com/message/23846793#23846793

  • Mail frequently crashing when adding multiple addressees to a message

    Frequently, when adding multiple addressees to a newly composed or forwarded message, Mail crashes.
    I never experienced this problem before upgrading to Snow Leopard. Can anyone please help me? Am at my wits end!
    Below is the error message script:
    Process: Mail [132]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.1 (1076)
    Build Info: Mail-10760000~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [80]
    Date/Time: 2009-10-12 20:57:24.846 +0700
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 17606 sec
    Crashes Since Last Report: 5
    Per-App Interval Since Last Report: 11912 sec
    Per-App Crashes Since Last Report: 5
    Anonymous UUID: 8C19BDA2-A765-46DD-
    BA43-57BD7AC54AAA
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000019
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x00007fff85b0155c
    objcmsgSendvtable14 + 12
    1 ...apple.AddressBook.framework 0x00007fff85dcdda7 -
    [ABPeoplePickerPropertyCell dealloc] + 26
    2 com.apple.AppKit 0x00007fff82b11d7c -
    [NSToolTipManager drawToolTip:attributedString:inView:] + 463
    3 com.apple.AppKit 0x00007fff82b13cf5 -
    [NSToolTipManager displayToolTip:] + 2604
    4 com.apple.AppKit 0x00007fff826f599f -
    [NSViewDynamicToolTipManager _displayToolTipIfNecessaryIgnoringTime:]
    + 900
    5 com.apple.AppKit 0x00007fff8267723e
    _monitorMovementTimerFired + 78
    6 com.apple.CoreFoundation 0x00007fff86648a78 __CFRunLoopRun +
    5480
    7 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    8 com.apple.HIToolbox 0x00007fff8738dc4e
    RunCurrentEventLoopInMode + 333
    9 com.apple.HIToolbox 0x00007fff8738da53
    ReceiveNextEventCommon + 310
    10 com.apple.HIToolbox 0x00007fff8738d90c
    BlockUntilNextEventMatchingListInMode + 59
    11 com.apple.AppKit 0x00007fff8257f520 _DPSNextEvent +
    718
    12 com.apple.AppKit 0x00007fff8257ee89 -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    13 com.apple.AppKit 0x00007fff82544a7d -[NSApplication
    run] + 395
    14 com.apple.AppKit 0x00007fff8253d798
    NSApplicationMain + 364
    15 com.apple.mail 0x000000010000167c 0x100000000 + 5756
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff86789b16 kevent + 10
    1 libSystem.B.dylib 0x00007fff8678ba19
    dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8678b6d6
    dispatch_queueinvoke + 195
    3 libSystem.B.dylib 0x00007fff8678b1f6
    dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff8678ab28
    pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8004ea94 -[NSRunLoop
    (NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8004e973 -[NSRunLoop
    (NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff82163161 -[RSSInterchange
    _runManager] + 1445
    7 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    9 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8004ea94 -[NSRunLoop
    (NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8004e973 -[NSRunLoop
    (NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff82195e68 +[_NSSocket
    _runIOThread] + 78
    7 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    9 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff867b49f2 select
    $DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff86669252
    __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    3 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 5:
    0 libSystem.B.dylib 0x00007fff86770d7a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff867713ed mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86647ce2 __CFRunLoopRun +
    2002
    3 com.apple.CoreFoundation 0x00007fff8664703f
    CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8009351f +[NSURLConnection
    (NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff80013f65
    _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff867a9f66 pthreadstart +
    331
    7 libSystem.B.dylib 0x00007fff867a9e19 thread_start + 13
    Thread 6:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff8678a94a
    _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff8678ad5c
    pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff8678a9c5 start_wqthread +
    13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000 rbx: 0x0000000118cfb600 rcx:
    0x0000000000000000 rdx: 0x0000000000000000
    rdi: 0x0000000114707ac0 rsi: 0x00007fff82c6e968 rbp:
    0x00007fff5fbfe600 rsp: 0x00007fff5fbfe5d8
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10:
    0x0000000000000001 r11: 0x00007fff85b01550
    r12: 0x00007fff82c74098 r13: 0x000000011897c400 r14:
    0x0000000101987ae0 r15: 0x0000000118966510
    rip: 0x00007fff85b0155c rfl: 0x0000000000010206 cr2:
    0x0000000000000019
    Binary Images:
    0x100000000 - 0x100336ff7 com.apple.mail 4.1 (1076)
    <C6C651FE-C706-1B61-3D43-116621DAB9C8> /Applications/Mail.app/Contents/
    MacOS/Mail
    0x112cc9000 - 0x112ccafff ATSHI.dylib ??? (???)
    <9BC80E39-A52B-D3C2-4C3C-3CA209BA35FC> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/Resources/ATSHI.dylib
    0x1145b6000 - 0x1145baff7 libFontRegistryUI.dylib ???
    (???) <EB462473-8DC9-5F16-4592-8F1D743C779A> /System/Library/
    Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/
    Resources/libFontRegistryUI.dylib
    0x115721000 - 0x115725fff
    com.apple.audio.AudioIPCPlugIn 1.1.0 (1.1.0) <60B5ECBE-2324-4136-7DD8-
    A2A9CF3E3A3D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/
    Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    0x115f31000 - 0x115f37ff7
    com.apple.audio.AppleHDAHALPlugIn 1.7.4 (1.7.4a1) <90758686-B4FE-
    EC81-7DC5-9EB1A6F737F0> /System/Library/Extensions/AppleHDA.kext/
    Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/
    AppleHDAHALPlugIn
    0x115fbe000 - 0x115fd1ff7
    com.apple.AddressBook.LocalSourceBundle 1.0 (862)
    <2ECC6C67-80B4-9F60-1A2F-2DF54DF51F9E> /System/Library/Address Book
    Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x115fdd000 - 0x115fe0fff
    com.apple.yahoo.syncframework 1.3 (51) <aEBB9A2D-
    B787-0C74-7C40-64E6F0BBF43C> /System/Library/PrivateFrameworks/
    YahooSync.framework/Versions/A/YahooSync
    0x115feb000 - 0x115ff1fff
    com.apple.AddressBook.LDAPSource 1.0 (862) <BCAA89D3-9042-
    F5BB-6CE2-7884EF7AB3D1> /System/Library/Address Book Plug-Ins/
    LDAP.sourcebundle/Contents/MacOS/LDAP
    0x116165000 - 0x11616bfff libgermantok.dylib ??? (???)
    <a87630B4-D01C-8724-54D2-5E8CC85FC07B> /usr/lib/libgermantok.dylib
    0x116206000 - 0x116265fff
    com.apple.google.GoogleContactSyncFramework 39 (39) <BD6B36C2-620E-
    DBC2-71A9-ECE0F627DE22> /System/Library/PrivateFrameworks/
    GoogleContactSync.framework/Versions/A/GoogleContactSync
    0x116584000 - 0x1165d4ff7
    com.apple.datadetectors.actions 2.0 (102.0) <B64E5232-8736-050B-3F68-
    A2BA6DFFCA43> /System/Library/PrivateFrameworks/
    DataDetectors.framework/Versions/A/Resources/Actions.datadetectors/
    Contents/MacOS/Actions
    0x1172ce000 - 0x1172cefff com.apple.JavaPluginCocoa
    13.0.0 (13.0.0) <02EA2DA9-59AB-9A18-EE03-6A7147EAE31D> /System/Library/
    Frameworks/JavaVM.framework/Versions/A/Resources/
    JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1172d2000 - 0x1172d9ff7 com.apple.JavaVM 13.0.0
    (13.0.0) <D98F6BC3-5901-F2E4-BA32-054953E7E877> /System/Library/
    Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1172e2000 - 0x1172f4ff7 com.apple.mail.WebPlugIn 4.1
    (1076) <39083281-BF6E-E21C-BD3E-648066819054> /Applications/Mail.app/
    Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/MailWebPlugIn
    0x1174b9000 - 0x1174dcfff com.apple.Mail.Syncer 4.1
    (1076) <7F42C85F-D0B3-253D-95B6-2510B642FB60> /System/Library/
    Frameworks/Message.framework/Versions/B/Resources/Syncer.syncschema/
    Contents/MacOS/Syncer
    0x118189000 - 0x118255fe7
    com.apple.audio.units.Components 1.6 (1.6) <92E8CA3F-8C01-4B34-6E34-
    AF1D0F6699E3> /System/Library/Components/CoreAudio.component/Contents/
    MacOS/CoreAudio
    0x11f71d000 - 0x11f82dfef libmecab.1.0.0.dylib ???
    (???) <E321EA43-4F4C-6561-3E87-4081904D53F3> /usr/lib/libmecab.
    1.0.0.dylib
    0x12352f000 - 0x1236e4fff libCMaps.A.dylib ??? (???)
    <4CDC8D8A-100F-6B22-DC5F-D6D6E5590DDC> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???)
    <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80003000 - 0x7fff80284fe7 com.apple.Foundation 6.6
    (751) <CCE98C5C-DFEA-6C80-A014-A5985437072E> /System/Library/
    Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff802ce000 - 0x7fff8031bff7 libauto.dylib ??? (???)
    <8658DB85-C611-1212-44E5-5B2539018FA0> /usr/lib/libauto.dylib
    0x7fff8031c000 - 0x7fff8031efef com.apple.ExceptionHandling
    1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/
    Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling
    0x7fff8031f000 - 0x7fff80502ff7 libType1Scaler.dylib ???
    (???) <a5EFDAB3-6293-8A83-532E-C71C58F6BD16> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x7fff80503000 - 0x7fff80509ff7 com.apple.DiskArbitration
    2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/
    Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8050a000 - 0x7fff806e9fff com.apple.CalendarStore 4.0
    (965) <86082B77-ABD6-A9DD-E0CE-C5471ED2399A> /System/Library/
    Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x7fff806ea000 - 0x7fff80700fff com.apple.ImageCapture 6.0
    (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    ImageCapture.framework/Versions/A/ImageCapture
    0x7fff80706000 - 0x7fff8070dfff com.apple.OpenDirectory 10.6
    (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/
    Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8070e000 - 0x7fff80724fef libbsm.0.dylib ??? (???)
    <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff8075b000 - 0x7fff8075dfff libRadiance.dylib ??? (???)
    <77F285E0-5D5E-A0B0-A89E-9332D6AB2867> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libRadiance.dylib
    0x7fff8075e000 - 0x7fff80799fe7 com.apple.CoreMedia 0.420.17
    (420.17) <E299556E-6930-DC30-DA23-88B812AF63CA> /System/Library/
    PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8079a000 - 0x7fff807c2fff com.apple.DictionaryServices
    1.1 (1.1) <D57BA55A-4CC5-5C17-8077-AEEA27A01C7A> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff807c3000 - 0x7fff807e9fe7 libJPEG.dylib ??? (???)
    <52ACD177-F101-BEF5-E7CC-9131F8372D0A> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libJPEG.dylib
    0x7fff807ea000 - 0x7fff80a23fe7 com.apple.imageKit 2.0 (1.0)
    <F579694D-9FA0-6365-45CD-E380C2EB2573> /System/Library/Frameworks/
    Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/
    ImageKit
    0x7fff80a54000 - 0x7fff80a67ff7
    com.apple.syncservices.syncservicesui 5.0 (575) <4B99D800-624D-FEBF-
    CC70-EAC553046AEB> /System/Library/PrivateFrameworks/
    SyncServicesUI.framework/Versions/A/SyncServicesUI
    0x7fff80a68000 - 0x7fff80a7bfff libGL.dylib ??? (???)
    <D452ADC0-04B1-E24F-03E6-717E58E1D659> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff80a7c000 - 0x7fff80ab5ff7 com.apple.MeshKit 1.0 (49.0)
    <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff80ae6000 - 0x7fff80b2fff7 com.apple.securityinterface
    4.0 (36981) <F14235A2-8320-1A71-24FE-EB22008483E9> /System/Library/
    Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff80b30000 - 0x7fff80b36fff libCGXCoreImage.A.dylib ???
    (???) <D113DB65-BB37-5499-8825-E6AE8AB1F8B8> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff80b37000 - 0x7fff80c74fef com.apple.WebKit 6531
    (6531.9) <17A680A1-FE75-81E5-952A-047E5FA96F66> /System/Library/
    Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff80c75000 - 0x7fff80d7fff7 com.apple.MeshKitIO 1.0
    (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/
    MeshKitIO.framework/Versions/A/MeshKitIO
    0x7fff80d80000 - 0x7fff80e89fff com.apple.MediaToolbox
    0.420.17 (420.17) <31834AB2-1BFF-92D5-A8D2-21B0AE51FA98> /System/
    Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff80e8a000 - 0x7fff80f82fe7 libiconv.2.dylib ??? (???)
    <ECEE3D93-B5E3-F0E0-803E-CA3DC3B33D57> /usr/lib/libiconv.2.dylib
    0x7fff80faa000 - 0x7fff81010fe7 com.apple.AppleVAFramework
    4.6.2 (4.6.2) <3DA57727-EAD1-A199-4093-54CC4698A109> /System/Library/
    PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff81011000 - 0x7fff81014fff com.apple.help 1.3.1 (41)
    <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff81039000 - 0x7fff8108efef
    com.apple.framework.familycontrols 2.0 (2.0) <2520A455-5487-1964-C5D9-
    D284699D2537> /System/Library/PrivateFrameworks/
    FamilyControls.framework/Versions/A/FamilyControls
    0x7fff8108f000 - 0x7fff81173ff7 com.apple.DesktopServices
    1.5.1 (1.5.1) <65D7E707-DBCA-5752-78EC-351DC88F3AE8> /System/Library/
    PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/
    DesktopServicesPriv
    0x7fff81174000 - 0x7fff811e8ff7
    com.apple.WhitePagesFramework 10.6.0 (140.0) <546E204C-AC7A-030C-
    DC32-125A3E422FB5> /System/Library/PrivateFrameworks/
    WhitePages.framework/Versions/A/WhitePages
    0x7fff811e9000 - 0x7fff81209fef
    com.apple.DirectoryService.Framework 3.6 (621) <925EE208-03B2-
    B24A-3686-57EAFBDA5ADF> /System/Library/Frameworks/
    DirectoryService.framework/Versions/A/DirectoryService
    0x7fff8120a000 - 0x7fff813c4fef com.apple.ImageIO.framework
    3.0.0 (3.0.0) <D5594E10-F805-F816-10E9-F95753BE18CC> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ImageIO.framework/Versions/A/ImageIO
    0x7fff813c5000 - 0x7fff81532fe7 com.apple.QTKit 7.6.3 (1584)
    <6D02A542-5202-4022-2050-5BE01F70D225> /System/Library/Frameworks/
    QTKit.framework/Versions/A/QTKit
    0x7fff81533000 - 0x7fff81651ff7 com.apple.PubSub 1.0.4
    (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/
    Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff81652000 - 0x7fff81663fff
    com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-
    F6EB13A4ADF9> /System/Library/PrivateFrameworks/
    DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x7fff81729000 - 0x7fff81786fef com.apple.framework.IOKit
    2.0 (???) <65AA6170-12E3-BFB5-F982-E0C433610A1F> /System/Library/
    Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff81787000 - 0x7fff81944fff libicucore.A.dylib ??? (???)
    <224721C0-EC21-94D0-6484-66C603C34CBE> /usr/lib/libicucore.A.dylib
    0x7fff81945000 - 0x7fff81994fff com.apple.iCalendar 1 (42)
    <25CA7CA2-0994-62F1-9A2E-F938C8142330> /System/Library/
    PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff819dc000 - 0x7fff81a48ff7 com.apple.CorePDF 1.0 (1.0)
    <8D76B569-F938-6337-533A-5C8A69B005DA> /System/Library/
    PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff81a49000 - 0x7fff81a87fef com.apple.DebugSymbols 1.1
    (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/
    PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff81a88000 - 0x7fff81b9ffef libxml2.2.dylib ??? (???)
    <6D4C196C-B061-CBCD-AAFD-A21736A8425C> /usr/lib/libxml2.2.dylib
    0x7fff81ba0000 - 0x7fff81bcfff7 com.apple.quartzfilters
    1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Frameworks/
    QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff81bd0000 - 0x7fff81c01fff libGLImage.dylib ??? (???)
    <4F318A3E-20C1-D846-2B36-62451A3241F7> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff81c02000 - 0x7fff81f96ff7 com.apple.QuartzCore 1.6.0
    (226.0) <66E14771-C5F0-1415-0B7B-C45EE00C51A1> /System/Library/
    Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81f97000 - 0x7fff81feefff com.apple.Symbolication 1.1
    (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/
    PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff81fef000 - 0x7fff82033fef com.apple.ImageCaptureCore
    1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/
    Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff82034000 - 0x7fff820c0fef SecurityFoundation ??? (???)
    <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/
    SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff820c1000 - 0x7fff82108fef com.apple.QuickLookFramework
    2.0 (327.0) <E15E267E-D462-2AD0-DB03-A54E0F94452F> /System/Library/
    Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff82109000 - 0x7fff82134ff7 libxslt.1.dylib ??? (???)
    <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff82135000 - 0x7fff82143ff7 libkxld.dylib ??? (???)
    <823B6BE6-E952-3B3C-3633-8F4D6C4606A8> /usr/lib/system/libkxld.dylib
    0x7fff82144000 - 0x7fff82144ff7 com.apple.quartzframework
    1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff82145000 - 0x7fff82482fe7 com.apple.MessageFramework
    4.1 (1076) <5F5E9539-3443-F692-47C1-1B0567F9ECEE> /System/Library/
    Frameworks/Message.framework/Versions/B/Message
    0x7fff82483000 - 0x7fff82484fff liblangid.dylib ??? (???)
    <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff82485000 - 0x7fff824effe7 libvMisc.dylib ??? (???)
    <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libvMisc.dylib
    0x7fff824f0000 - 0x7fff8253aff7 com.apple.Metadata 10.6.0
    (507.1) <aA0DF8E0-9B5B-2377-9B20-884919E28994> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    Metadata.framework/Versions/A/Metadata
    0x7fff8253b000 - 0x7fff82f2ffe7 com.apple.AppKit 6.6.1
    (1038.2) <C17AD2AC-8639-D20F-CD99-36EEC619A5F0> /System/Library/
    Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff82f30000 - 0x7fff83035fe7
    libGLProgrammability.dylib ??? (???)
    <EDEC71CB-5F5B-7F55-47F4-19E953E3BE61> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff83036000 - 0x7fff830ebfff com.apple.ink.framework 1.3
    (104) <9B552E27-7E3F-6767-058A-C998E8F78692> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/
    Versions/A/Ink
    0x7fff830fc000 - 0x7fff83107fff
    com.apple.CrashReporterSupport 10.6 (237) <7B22FB86-33C7-
    A775-2F13-0D3356E2B971> /System/Library/PrivateFrameworks/
    CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff83108000 - 0x7fff837fa5d7 com.apple.CoreGraphics
    1.535.5 (???) <6599C41F-2D50-5E04-44E4-44FA90E022B5> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff837fb000 - 0x7fff8384cfe7 com.apple.HIServices 1.8.0
    (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    HIServices.framework/Versions/A/HIServices
    0x7fff8384d000 - 0x7fff83876ff7
    com.apple.speech.LatentSemanticMappingFramework 2.6.9 (2.6.9)
    <CDFCD034-B44A-1C99-CBA4-ED9F233B3DD4> /System/Library/Frameworks/
    LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
    0x7fff83877000 - 0x7fff83877ff7 com.apple.Carbon 150 (152)
    <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Carbon
    0x7fff83878000 - 0x7fff83908fff com.apple.SearchKit 1.3.0
    (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    SearchKit.framework/Versions/A/SearchKit
    0x7fff83909000 - 0x7fff83953fef com.apple.IMCore 5.0 (742)
    <EE4D5BA7-AFFF-0FB1-08AF-A4152A741B8B> /System/Library/Frameworks/
    IMCore.framework/Versions/A/IMCore
    0x7fff83954000 - 0x7fff83954ff7 com.apple.Accelerate 1.5
    (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/
    Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff83955000 - 0x7fff83964fff com.apple.NetFS 3.2 (3.2)
    <61E3D8BE-A529-20BF-1A11-026EC774820D> /System/Library/Frameworks/
    NetFS.framework/Versions/A/NetFS
    0x7fff83965000 - 0x7fff83980fff com.apple.datadetectors 2.0
    (102.0) <D3E026E9-C12A-88ED-25FC-7A58E435AB02> /System/Library/
    PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x7fff83981000 - 0x7fff83981ff7
    com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-
    DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/ApplicationServices
    0x7fff83982000 - 0x7fff83986ff7 libmathCommon.A.dylib ???
    (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/
    libmathCommon.A.dylib
    0x7fff8399d000 - 0x7fff839e3fe7 libvDSP.dylib ??? (???)
    <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libvDSP.dylib
    0x7fff839e4000 - 0x7fff83a05ff7 com.apple.opencl 11 (11)
    <a53E07FB-AD2F-9F3E-EC00-7DCC7DDE2F90> /System/Library/Frameworks/
    OpenCL.framework/Versions/A/OpenCL
    0x7fff83a06000 - 0x7fff83a4dff7 com.apple.coreui 0.2 (112)
    <E64F7594-7829-575F-666A-0B16875FC644> /System/Library/
    PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff83a4e000 - 0x7fff83a52ff7 libCGXType.A.dylib ??? (???)
    <50EB4AB0-0B25-E5DC-FC9E-12268B51F02F> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff83a53000 - 0x7fff83ad5fef
    com.apple.QuickLookUIFramework 2.0 (327.0) <B9850E11-3F04-100F-0122-
    B4AD6222A43F> /System/Library/Frameworks/Quartz.framework/Versions/A/
    Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff83ad6000 - 0x7fff83bf8ff7
    com.apple.audio.toolbox.AudioToolbox 1.6 (1.6) <3CA3B481-9627-6F36-
    F2B8-C2763DEEB128> /System/Library/Frameworks/AudioToolbox.framework/
    Versions/A/AudioToolbox
    0x7fff83bf9000 - 0x7fff83c19fff com.apple.DotMacSyncManager
    2.0.0 (446) <1D7898EC-2EA8-EAAF-821A-B0E1A170CB03> /System/Library/
    PrivateFrameworks/DotMacSyncManager.framework/Versions/A/
    DotMacSyncManager
    0x7fff83c1a000 - 0x7fff83c25fff com.apple.dotMacLegacy 3.2
    (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/
    PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegacy
    0x7fff83c26000 - 0x7fff83d83ff7 com.apple.syncservices 5.0
    (575) <5A2B1757-BADC-9E3E-9260-3133C45859BB> /System/Library/
    Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff83d84000 - 0x7fff83da8ff7 com.apple.CoreVideo 1.6.0
    (43.0) <FF5F0EEF-56BE-24DD-C8FA-CB41F126E6A8> /System/Library/
    Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff83de5000 - 0x7fff83f1dff7 com.apple.CoreData 102 (246)
    <0502CBD8-513E-C19A-3562-20EC35535D71> /System/Library/Frameworks/
    CoreData.framework/Versions/A/CoreData
    0x7fff83f1e000 - 0x7fff83fd2fef com.apple.ColorSync 4.6.0
    (4.6.0) <080BEDDE-E7A4-F88D-928B-7501574A157B> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ColorSync.framework/Versions/A/ColorSync
    0x7fff84003000 - 0x7fff8404dfff com.apple.DAVKit 4.0 (729)
    <83F34E7A-4C4C-D021-FDB3-157600E2BA0A> /System/Library/
    PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x7fff8404e000 - 0x7fff84085ff7 libssl.0.9.8.dylib ??? (???)
    <2D7FAEF9-A3CD-9F80-7CDE-852D3C93AEDB> /usr/lib/libssl.0.9.8.dylib
    0x7fff84086000 - 0x7fff840d5ff7
    com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0)
    <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/
    PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x7fff840d6000 - 0x7fff840d6ff7 com.apple.Accelerate.vecLib
    3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/
    Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/
    vecLib.framework/Versions/A/vecLib
    0x7fff840d7000 - 0x7fff840e4ff7 com.apple.AppleFSCompression
    1.0 (1.0) <597C8E16-90C0-A7AA-7236-5D1281F20AD0> /System/Library/
    PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x7fff84101000 - 0x7fff8411fff7 libPng.dylib ??? (???)
    <6A0E35B8-2E33-7C64-2B53-6F47F628DE7A> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libPng.dylib
    0x7fff84120000 - 0x7fff84122fff
    com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-
    E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/
    Frameworks/Print.framework/Versions/A/Print
    0x7fff84123000 - 0x7fff84137ff7
    com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-
    A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff84138000 - 0x7fff8415bff7 com.apple.iChat.IMFoundation
    5.0 (742) <1A4FEDF7-78CF-23A3-D0FD-23D74FA556C5> /System/Library/
    Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/Versions/
    A/IMFoundation
    0x7fff8415c000 - 0x7fff841abff7 libTIFF.dylib ??? (???)
    <E11A75A8-223C-8B5E-7F62-821F9ADE8821> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libTIFF.dylib
    0x7fff841ac000 - 0x7fff84430fff com.apple.security 6.0
    (36910) <F7431448-BC2E-835D-E7A2-E47E0A5CB984> /System/Library/
    Frameworks/Security.framework/Versions/A/Security
    0x7fff84471000 - 0x7fff84487fff
    com.apple.MultitouchSupport.framework 200.20 (200.20) <96B8C66E-
    D84D-863B-CB1D-F7E005569706> /System/Library/PrivateFrameworks/
    MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff84488000 - 0x7fff844c3ff7
    com.apple.CoreMediaIOServices 101.0 (715) <7B93206A-FEC5-
    FCC3-3587-91E3CEC61797> /System/Library/PrivateFrameworks/
    CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
    0x7fff844c4000 - 0x7fff8472eff7 com.apple.QuartzComposer 4.0
    (156.6) <4E43D357-4A18-5D16-02E8-14324A5B9302> /System/Library/
    Frameworks/Quartz.framework/Versions/A/Frameworks/
    QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff84830000 - 0x7fff848b0ff7 com.apple.iLifeMediaBrowser
    2.1.3 (346.0.3) <04677A98-142E-9C0E-18A7-4C74275856B7> /System/Library/
    PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/
    iLifeMediaBrowser
    0x7fff848b1000 - 0x7fff848b6ff7 com.apple.CommonPanels 1.2.4
    (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/
    A/CommonPanels
    0x7fff848b7000 - 0x7fff84973ff7
    com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-
    E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/
    Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff84974000 - 0x7fff84977ff7 libCoreVMClient.dylib ???
    (???) <3A41933A-5174-7516-37E0-8E06365BF3DA> /System/Library/
    Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff84978000 - 0x7fff849b8fef com.apple.QD 3.31 (???)
    <0FA2713A-99BD-A96B-56AF-7DB0AB4927AD> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/QD.framework/
    Versions/A/QD
    0x7fff849b9000 - 0x7fff849fcfff libtidy.A.dylib ??? (???)
    <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff84a55000 - 0x7fff84f4dff7 com.apple.VideoToolbox
    0.420.17 (420.17) <E034AA6E-A1E4-BB8F-5AFA-F5C354DDD889> /System/
    Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff84f82000 - 0x7fff8505cff7 com.apple.vImage 4.0 (4.0)
    <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/
    vImage
    0x7fff8505d000 - 0x7fff85116fff libsqlite3.dylib ??? (???)
    <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff85117000 - 0x7fff85138fff libresolv.9.dylib ??? (???)
    <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff851ee000 - 0x7fff8526bfef com.apple.backup.framework
    1.1 (1.0) <35E2F1B1-C301-EFF7-F222-964D1A6ABE09> /System/Library/
    PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8526c000 - 0x7fff8527dfef libz.1.dylib ??? (???)
    <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff8527e000 - 0x7fff8548aff7 com.apple.RawCamera.bundle
    2.2.1 (477) <B4DD9D3B-CD05-5ACE-6808-BEC5660D805C> /System/Library/
    CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff854e8000 - 0x7fff85523fef com.apple.AE 496 (496)
    <6AFD62E0-DD92-4F04-A73A-90224D80593D> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff8552f000 - 0x7fff85535fff com.apple.AOSNotification
    1.1.0 (123.3) <9436ED02-186A-E6CC-E594-31E3942A5898> /System/Library/
    PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x7fff85536000 - 0x7fff85573ff7 libFontRegistry.dylib ???
    (???) <43ADB89E-036B-9D8F-CC4B-CE6B6BCC5AB5> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8557f000 - 0x7fff855e1fe7 com.apple.datadetectorscore
    2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/
    PrivateFrameworks/DataDetectorsCore.framework/Versions/A/
    DataDetectorsCore
    0x7fff855e2000 - 0x7fff85a25fef libLAPACK.dylib ??? (???)
    <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libLAPACK.dylib
    0x7fff85a26000 - 0x7fff85ac0fe7
    com.apple.ApplicationServices.ATS 4.0 (???)
    <76009EB5-037B-8A08-5AB5-18DA59559509> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/
    Versions/A/ATS
    0x7fff85ac1000 - 0x7fff85afbfff com.apple.bom 10.0 (164)
    <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/
    PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff85afc000 - 0x7fff85bb2fe7 libobjc.A.dylib ??? (???)
    <261D97A3-225B-8A00-56AA-F9F27973063F> /usr/lib/libobjc.A.dylib
    0x7fff85bb3000 - 0x7fff85bbaff7 com.apple.DisplayServicesFW
    2.1 (2.1) <2C039CF5-8AF8-6DA3-3C77-566B22EFB172> /System/Library/
    PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff85bbb000 - 0x7fff85bc1ff7 IOSurface ??? (???)
    <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/
    IOSurface.framework/Versions/A/IOSurface
    0x7fff85bc2000 - 0x7fff85c3ffe7 com.apple.CoreText 3.0.0
    (???) <51175014-9F0C-7E96-FB6F-3DC5E446B92E> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    CoreText.framework/Versions/A/CoreText
    0x7fff85c40000 - 0x7fff85c4ffef com.apple.opengl 1.6.3
    (1.6.3) <6318A188-B43D-E82F-C157-2E76331227BD> /System/Library/
    Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff85c50000 - 0x7fff85e86fef
    com.apple.AddressBook.framework 5.0 (862) <06928F7A-AFEC-7C7F-E1EC-
    D99983588C00> /System/Library/Frameworks/AddressBook.framework/
    Versions/A/AddressBook
    0x7fff85ea5000 - 0x7fff85f45fff com.apple.LaunchServices
    360.3 (360.3) <02FFE657-CC7A-5266-F06E-8732E28F70A9> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    LaunchServices.framework/Versions/A/LaunchServices
    0x7fff85f46000 - 0x7fff85f4efff com.apple.iChat.IMUtils 5.0
    (742) <58F866BF-C746-E260-DBA8-265B772EDDBA> /System/Library/
    Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versions/A/
    IMUtils
    0x7fff85f4f000 - 0x7fff85faffff
    com.apple.ExchangeWebServices 1.0 (54) <C56EF9CA-93FC-066F-23E5-
    E1FD53D86916> /System/Library/PrivateFrameworks/
    ExchangeWebServices.framework/Versions/A/ExchangeWebServices
    0x7fff85fe1000 - 0x7fff85fe1ff7 com.apple.vecLib 3.5 (vecLib
    3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/
    vecLib.framework/Versions/A/vecLib
    0x7fff85fe4000 - 0x7fff86027ff7 libRIP.A.dylib ??? (???)
    <8D7113D2-71A7-A205-D2D0-2DB0F37FFBB3> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff86028000 - 0x7fff860a5fef libstdc++.6.dylib ??? (???)
    <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff860a6000 - 0x7fff863d8fef
    com.apple.CoreServices.CarbonCore 859.1 (859.1) <5712C4C1-
    B18B-88EE-221F-DA04A8EDA029> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/
    Versions/A/CarbonCore
    0x7fff863d9000 - 0x7fff863ebfe7 libsasl2.2.dylib ??? (???)
    <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff863ec000 - 0x7fff863edfff
    com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-
    F5F6-58821778629C> /System/Library/PrivateFrameworks/
    MonitorPanel.framework/Versions/A/MonitorPanel
    0x7fff863ee000 - 0x7fff864fdff7 libcrypto.0.9.8.dylib ???
    (???) <a2DA70D0-02AE-89FA-1CDA-B3CA986CAE6D> /usr/lib/libcrypto.
    0.9.8.dylib
    0x7fff864fe000 - 0x7fff864feff7 com.apple.CoreServices 44
    (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/
    CoreServices.framework/Versions/A/CoreServices
    0x7fff864ff000 - 0x7fff8655bfff libGLU.dylib ??? (???)
    <aA2D37B3-8B7C-6772-F8BA-7364284C55FE> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8655c000 - 0x7fff8655cff7 com.apple.Cocoa 6.6 (???)
    <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/
    Cocoa.framework/Versions/A/Cocoa
    0x7fff8655d000 - 0x7fff86592ff7 libcups.2.dylib ??? (???)
    <1FE99C26-B845-F508-815A-5B2CF2CA5337> /usr/lib/libcups.2.dylib
    0x7fff86593000 - 0x7fff865fbff7 com.apple.MeshKitRuntime 1.0
    (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/
    PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/
    MeshKitRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff865fc000 - 0x7fff8676ffef com.apple.CoreFoundation 6.6
    (550) <04EC0CC2-6CE4-4EE0-03B9-6C5109398CB1> /System/Library/
    Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86770000 - 0x7fff8692eff7 libSystem.B.dylib ??? (???)
    <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    0x7fff8692f000 - 0x7fff8693bfef libbz2.1.0.dylib ??? (???)
    <4AA81AA7-DF37-6430-07D1-F59F37AEC357> /usr/lib/libbz2.1.0.dylib
    0x7fff8693c000 - 0x7fff8735ffe7 com.apple.WebCore 6531
    (6531.9) <6DEBA397-4369-A8B1-1757-40FD454F6B51> /System/Library/
    Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/
    Versions/A/WebCore
    0x7fff87360000 - 0x7fff8765dfef com.apple.HIToolbox 1.6.0
    (???) <870B39B2-55BD-9C82-72EB-2E3470BD0E14> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/
    Versions/A/HIToolbox
    0x7fff8765e000 - 0x7fff87661ff7 com.apple.securityhi 4.0
    (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/
    Versions/A/SecurityHI
    0x7fff87662000 - 0x7fff876e6fff
    com.apple.print.framework.PrintCore 6.0 (312) <1F747E69-924D-8C5B-F318-
    C4828CC6E85D> /System/Library/Frameworks/ApplicationServices.framework/
    Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff8770b000 - 0x7fff87748fff com.apple.LDAPFramework 2.0
    (120.1) <0F7DF87D-6A08-02AF-790B-76294FCE8916> /System/Library/
    Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff87749000 - 0x7fff8774aff7
    com.apple.TrustEvaluationAgent 1.0 (1) <4B6B7853-EDAC-08B7-3324-
    CA9A3802FAE2> /System/Library/PrivateFrameworks/
    TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff87839000 - 0x7fff87844ff7
    com.apple.speech.recognition.framework 3.10.10 (3.10.10)
    <7E2A89FC-0F18-1CCC-472E-AD0E2BC2DD4C> /System/Library/Frameworks/
    Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/
    Versions/A/SpeechRecognition
    0x7fff87845000 - 0x7fff87911fff com.apple.CFNetwork 454.4
    (454.4) <E7721AD8-3177-8749-60F7-5EF323E6492B> /System/Library/
    Frameworks/CoreServices.framework/Versions/A/Frameworks/
    CFNetwork.framework/Versions/A/CFNetwork
    0x7fff87a4b000 - 0x7fff87a7cfef libTrueTypeScaler.dylib ???
    (???) <3F30259E-9EB0-18D2-B0F3-7B8A9625574E> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff87a7d000 - 0x7fff87afbfef com.apple.audio.CoreAudio
    3.2.0 (3.2) <51E4AA76-3A8A-2B78-95D2-582501421A4E> /System/Library/
    Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff87afc000 - 0x7fff87b15fff com.apple.CFOpenDirectory
    10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/
    Frameworks/OpenDirectory.framework/Versions/A/Frameworks/
    CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff87b16000 - 0x7fff87b2bfff com.apple.LangAnalysis 1.6.5
    (1.6.5) <D4956302-5A2D-2AFD-C143-6287F1313196> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff87b2c000 - 0x7fff87b34ff7
    com.apple.NSServerNotificationCenter 2 (1.0) <0F9B07B8-D9F9-A55D-
    AB60-9CC3533D77F8> /System/Library/Frameworks/
    ServerNotification.framework/Versions/A/ServerNotification
    0x7fff87b35000 - 0x7fff87b36ff7
    com.apple.audio.units.AudioUnit 1.6 (1.6) <7A51FBCE-7907-28A0-B2D2-
    CAADA78F2913> /System/Library/Frameworks/AudioUnit.framework/Versions/
    A/AudioUnit
    0x7fff87b37000 - 0x7fff87cbbfff com.apple.JavaScriptCore
    6531 (6531.5) <8C470ACB-1A45-71FC-673D-34EA3F5EF0DC> /System/Library/
    Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff87cbc000 - 0x7fff87d37ff7 com.apple.ISSupport 1.9.1
    (49) <EF46DFEE-3B41-97C1-1BE6-A19A1786B85F> /System/Library/
    PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff87d38000 - 0x7fff87de7fef edu.mit.Kerberos 6.5.8
    (6.5.8) <a9C16B72-A1F8-3DDE-7772-E7635774CA6E> /System/Library/
    Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff87de8000 - 0x7fff885f2fe7 libBLAS.dylib ??? (???)
    <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/
    Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/
    libBLAS.dylib
    0x7fff8860e000 - 0x7fff8861bfff libCSync.A.dylib ??? (???)
    <D97C8D7E-2CA3-9495-0C41-004CE47BC5DD> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/
    CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff8861c000 - 0x7fff886d7ff7 libFontParser.dylib ???
    (???) <8926E1B0-6D1E-502A-5028-1DCC57F6D6FA> /System/Library/
    Frameworks/ApplicationServices.framework/Versions/A/Frameworks/
    ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8876a000 - 0x7fff887f9fff com.apple.PDFKit 2.5 (2.5)
    <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/
    Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/
    PDFKit
    0x7fff887fa000 - 0x7fff8886cfef com.apple.CoreSymbolication
    2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/
    PrivateFrameworks/CoreSymbolication.framework/Versions/A/
    CoreSymbolication
    0x7fff8886d000 - 0x7fff88888ff7 com.apple.openscripting 1.3
    (???) <DFBFBFD3-90C0-0710-300C-1A7210CB3713> /System/Library/
    Frameworks/Carbon.framework/Versions/A/Frameworks/
    OpenScripting.framework/Versions/A/OpenScripting
    0x7fff8888b000 - 0x7fff88890fff libGIF.dylib ??? (???)
    <0C112067-95FE-B9BC-C70C-64A46A277F34> /System/Library/Frameworks/
    ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/
    Versions/A/Resources/libGIF.dylib
    0x7fff889fa000 - 0x7fff889fffff libGFXShared.dylib ??? (???)
    <C386DB22-A0AA-D826-ACBA-25E82B480D05> /System/Library/Frameworks/
    OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff88a00000 - 0x7fff88a18fff
    com.apple.iChat.InstantMessage 5.0 (742) <14DD4C3C-FAEE-40FC-
    FED1-65A134F96B12> /System/Library/Frameworks/InstantMessage.framework/
    Versions/A/InstantMessage
    0x7fff88a19000 - 0x7fff88a5aff7
    com.apple.SystemConfiguration 1.10 (1.10) <E3FF1FC8-C760-2047-
    F954-0D283DD0F714> /System/Library/Frameworks/
    SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff88a5b000 - 0x7fff88b26fe7
    ColorSyncDeprecated.dylib ??? (???) <03DA3BF0-1293-8947-
    A8B6-5E599F5B5DC7> /System/Library/Frameworks/
    ApplicationServices.framework/Frameworks/ColorSync.framework/Versions/
    A/Resources/ColorSyncDeprecated.dylib
    0x7fff88b2d000 - 0x7fff88b34ff7 com.apple.KerberosHelper 2.0
    (1.0) <F0154529-03F3-356D-56BC-A78964B2BE50> /System/Library/
    PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???)
    <66102D4E-6C8B-77D0-6766-2A1788B20C6F> /usr/lib/libSystem.B.dylib
    Model: MacBookPro4,1, BootROM MBP41.00C1.B03, 2 processors, Intel Core
    2 Duo, 2.6 GHz, 4 GB, SMC 1.28f2
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8C),
    Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.1f7, 2 service, 1 devices, 1 incoming serial
    ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS542525K9SA00, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-875
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x1a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.),
    0x820f, 0x1a110000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.),
    0x0230, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    Many thanks in advance!

    Hi
    I am suffering the same problem with Mail crashing when adding multiple names to the 'To' field.
    Sometimes it can be OK.
    I have a group in my contacts which has the names I e-mail most often and if I add names to the e-mail from that group all is well. If I navigate away from that group in Contacts as I wish to add someone not in that group this is usually when it crashes for me.
    When I relaunch Mail I get the message back I was working on with all the names I had added to the 'To' field but usually minus the last name. Which would be the one I had navigated away from the group I was using in contacts to all contacts.
    I don't know if that helps in any way?
    Phil

  • IMovie 8.0.6 crashes when adding Titles

    Hi there,
    I'm using iMovie 8.0.6 on an iMac 2.66 GHz Intel Core 2 Duo, 4GB 1067 MHz DDR3, running OSX 10.6.8.
    I just created a movie, and it allowed me to add titles at the beginning (those titles are working fine, by the way, and are editable).  Now, anytime I try to add titles to any project, it crashes the app.  I've looked through a number of threads in here, and nothing seems to apply to my situation.  Can anyone help me please? 
    Here's the crash code:
    Process:         iMovie [3742]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [106]
    Date/Time:       2011-08-23 12:49:09.847 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          10617 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  5405 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      D9BF4697-F8D1-42BB-B883-209AE6A1E026
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000092134954
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0x28c526c0 0 + 684009152
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x96fab382 kevent + 10
    1   libSystem.B.dylib                       0x96faba9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x96faaf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x96faacfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x96faa781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x96faa5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x96faa412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x96faa9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x96faa5c6 start_wqthread + 30
    Thread 3:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                       0x96f84afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x96f85267 mach_msg + 68
    2   com.apple.CoreFoundation                0x95bf930f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x95bf83f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x95bfe334 CFRunLoopRun + 84
    5   com.apple.QTKit                         0x93b29465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    7   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x96f84afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x96f85267 mach_msg + 68
    2   com.apple.CoreFoundation                0x95bf930f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x95bf83f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x95bfe334 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate                  0x0083d1b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    7   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x96f84b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x96fb26e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x96fe15a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97835b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x978358ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x98399e35 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    7   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x96f84b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x96fb26e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x96fe15a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x97835b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x978358ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x978905aa AIOFileThread(void*) + 1127
    6   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    7   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x96f84b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x96fb26e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x96fe15a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x909683ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x9096b3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x90968cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x90968571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x90968488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    9   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x96f84b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x96fb26f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x96ffb05f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x98507fd9 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    5   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x96fb2aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x96fb275e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x96fb43f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x19b9f8b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    5   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x96fb2aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x96fb275e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x96fb43f8 pthread_cond_wait$UNIX2003 + 73
    3   ...pple.AppleIntermediateCodec          0x19b9f8b2 iCodecDecompressorComponentDispatch + 19394
    4   libSystem.B.dylib                       0x96fb2259 _pthread_start + 345
    5   libSystem.B.dylib                       0x96fb20de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x28c531b0  ebx: 0x92134954  ecx: 0xbfffe7bc  edx: 0x28c531c0
      edi: 0x28c57fa8  esi: 0x28c57fac  ebp: 0x28c57200  esp: 0xbfffe79c
       ss: 0x0000001f  efl: 0x00010286  eip: 0x28c526c0   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x92134954
    Binary Images:
        0x1000 -   0x334ffc  com.apple.iMovie8 8.0.6 (821) <CD0B8453-4663-7F8C-EFF4-926EAB254B2A> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x3d2000 -   0x40bfe3  com.apple.MPEG2TSDecoder 1.0 (84) <75EC884A-7300-87B1-7E3A-A2B156BD4D79> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x443000 -   0x464fff  com.apple.iWidgets 1.0.0 (24) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
      0x477000 -   0x51aff4  com.apple.DotMacKit 47 (3.0.2L) <5C3FF2BA-7124-3DF9-B197-19DD4D543798> /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
      0x580000 -   0x581ff7  com.apple.Helium 3.0.0 (157) <22FD7CB4-024E-3065-EB67-262ABF99636E> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x587000 -   0x588fff +com.bensyverson.dvmatte.autopicker 1.0 (1.0) <5FB2D0C9-D6D7-036E-F739-DA7CE5BAD36E> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x58e000 -   0x643fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
      0x689000 -   0x7bbfe4  com.apple.Helium.HeliumRender 2.0.0 (157) <DEA355F6-22DC-68D4-EA7A-EE06C0D7F150> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0x814000 -   0x814ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
      0x838000 -   0x86bff3  com.apple.FWAVCPrivate 30.46 (46) <6F5A473F-BC2E-E6DB-6201-8460824BCC32> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0x8ba000 -   0x8defe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xd00000 -   0xe79ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
      0xfd1000 -   0xfd4ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x12d5b000 - 0x13160fe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x13184000 - 0x131d9fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15644000 - 0x1564cff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x15653000 - 0x15654ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x15659000 - 0x15663ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x15669000 - 0x1566bff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x15670000 - 0x15674ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x1567a000 - 0x15686ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1568d000 - 0x156a1ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x156a9000 - 0x156b2ff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x156b9000 - 0x156c1ff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x156c8000 - 0x156caff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x156cf000 - 0x156d1ff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x15800000 - 0x15949fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x1598a000 - 0x15ad6fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x15b19000 - 0x15bacfeb  com.apple.iTunesAccess 10.4 (10.4) <E19C4F82-EEDB-B192-E2E4-E31B286F2778> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x1644e000 - 0x16451ff3  libFontRegistryUI.dylib ??? (???) <D738781C-8568-A782-7EAC-965D45AEDF59> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0x1647f000 - 0x16483ff3  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
    0x164a9000 - 0x164afff7  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
    0x18a02000 - 0x18a07fff  com.apple.AppleMPEG2Codec 1.0.2 (220.1) <CE69C1D8-796C-753F-AD3C-F1CC2B8C0AAD> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x18a0c000 - 0x18a0eff7  com.apple.podcastproducer.ImageDiffer 1.2.3 (168.7) <0EE2A12C-11A5-5801-5442-D5A7C7542CF3> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0x19b95000 - 0x19bb0fef  com.apple.AppleIntermediateCodec 1.3.2 (153) <D42634C1-8BDA-31ED-5216-13CB19BA7D1B> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x19d76000 - 0x19dc9ff7  com.apple.AppleProResDecoder 2.0.1 (227) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x19e5d000 - 0x19e99fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1783) <9D242689-A430-BD2D-3CF0-3AC6F6CCD1D9> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1a232000 - 0x1a24bfe7  com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x1a250000 - 0x1a274ff7  com.apple.QuartzComposer.ExtraPatches 4.2 (156.16) <877B2D84-7CA6-501F-FF2D-C33BC52C0074> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1a845000 - 0x1a891ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a8b6000 - 0x1a8dffff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x1ad00000 - 0x1aee6fef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1baa7000 - 0x1bad3fff  com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (602.0.2) <2F6AD71A-EDFB-66DF-ACBD-46617FDB7C0E> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x1bae6000 - 0x1baeaff7 +com.bensyverson.quartzcomposer.dvmatte 1.0 (1.0) <DC961ABE-200A-E9E3-5CD2-7B98F129D0BF> /Applications/iMovie.app/Contents/Resources/Plugins/dvmatte.plugin/Contents/Mac OS/dvmatte
    0x1bc00000 - 0x1bc7afef  com.apple.AppleVAH264HW.component 2.0 (1.0) <4AF4C42D-7DE3-0C08-82A4-C3B970D3914E> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90009fe7  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
    0x90043000 - 0x90073ff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x90074000 - 0x9019afe7  com.apple.WebKit 6534 (6534.50) <219E2787-ED6D-5358-6659-35A9D62955F9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x901ac000 - 0x90249fe3  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
    0x9024a000 - 0x90378fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90379000 - 0x9037fff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x9057b000 - 0x90597fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90598000 - 0x905e5feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90621000 - 0x90631ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90632000 - 0x908a3fef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x908a4000 - 0x90921ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90922000 - 0x90941ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90948000 - 0x909c2fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90a7a000 - 0x90b54fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90b55000 - 0x90b70ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90b71000 - 0x90d33feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90d42000 - 0x91a9cfe7  com.apple.WebCore 6534 (6534.50) <492FD955-DCB6-2E2D-3F51-CF295516877A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91ab1000 - 0x91af5fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91af6000 - 0x91af9ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x91afa000 - 0x91b19fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x91b1a000 - 0x91b61ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x91b62000 - 0x91ba5ff7  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
    0x91ba6000 - 0x91bb0fe7  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
    0x91bb1000 - 0x91bebfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x91bec000 - 0x91c65ff7  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
    0x91c66000 - 0x91c67ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91c68000 - 0x91c7cfe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x91c7d000 - 0x91fa1fef  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
    0x91fa2000 - 0x91ffcfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91ffd000 - 0x920fefe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x920ff000 - 0x9231aff7  com.apple.JavaScriptCore 6534 (6534.49) <B8523DCA-B8EC-4E44-4E0C-6354BA2E67AB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9236d000 - 0x925d3ff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92600000 - 0x926b0fe3  com.apple.QuickTimeImporters.component 7.6.6 (1783) <E0BF3843-1044-F371-AB6F-423C5E9E417B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x926b1000 - 0x926d3fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x927db000 - 0x927defe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x927df000 - 0x92815fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x92841000 - 0x92943fef  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
    0x92944000 - 0x92946ff7  com.apple.QuickTimeH264.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x92947000 - 0x92a42fff  com.apple.PubSub 1.0.5 (65.28) <DD6B2666-9858-5745-A44D-0CA2309222B3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92a84000 - 0x92ac9ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x92aca000 - 0x92ba7fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92be9000 - 0x92cf5ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92cf6000 - 0x92cf6ff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93351000 - 0x9335dff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x9335e000 - 0x933a1ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x936fe000 - 0x937bafff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93819000 - 0x93a44ff3  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
    0x93a45000 - 0x93a49ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x93a4a000 - 0x93a4bff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93a57000 - 0x93b9afef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93b9b000 - 0x93bdcff7  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
    0x93bdd000 - 0x93bf5ff7  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
    0x93bf6000 - 0x9400cff7  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
    0x94010000 - 0x94025fff  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
    0x94026000 - 0x94028ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94029000 - 0x940f4fef  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
    0x940f5000 - 0x942fcfeb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94309000 - 0x943b5fe7  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
    0x943b6000 - 0x943b6ff7  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
    0x943b7000 - 0x943b9ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x943ba000 - 0x943f5feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x943f6000 - 0x943faff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x943fb000 - 0x94451ff7  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
    0x94452000 - 0x944a5ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x944a6000 - 0x945d3ffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x945d4000 - 0x945dfff7  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
    0x94637000 - 0x94708fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94709000 - 0x94a03fef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94a04000 - 0x94a3cff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94a3d000 - 0x94a41ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94a42000 - 0x94a45ff7  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
    0x94a46000 - 0x94bc8fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x94bc9000 - 0x94c06ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94c07000 - 0x94c68fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c69000 - 0x94c9aff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94c9b000 - 0x94d12ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94d13000 - 0x94d50ff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94d51000 - 0x94d77ffb  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
    0x94d78000 - 0x94de7ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94e89000 - 0x94e94ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94fe0000 - 0x9504afe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9504b000 - 0x9507eff7  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
    0x9507f000 - 0x95962ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95963000 - 0x95964ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x95965000 - 0x959c2ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x959c3000 - 0x95a1bfe7  com.apple.datadetectorscore 2.0 (80.7) <ADDE04FB-90A7-2132-75AF-C6B19DD0D97E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95a21000 - 0x95a21ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95a22000 - 0x95a2cffb  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
    0x95a2d000 - 0x95b0bfef  com.apple.QuickTimeMPEG4.component 7.6.6 (1783) <FBD481B1-E8F8-4DA7-E33E-ACA5BFB0D90B> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x95b14000 - 0x95b22ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95b23000 - 0x95bbbfe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95bbc000 - 0x95d37fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95d3d000 - 0x95d45ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95d46000 - 0x9617bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9617c000 - 0x9622aff3  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
    0x9622b000 - 0x96238ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96239000 - 0x96273ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x96369000 - 0x963cdffb  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
    0x963ce000 - 0x963ceff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x963cf000 - 0x963ddfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x963e6000 - 0x96493fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x965d7000 - 0x96627ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96628000 - 0x9672afe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x9672b000 - 0x9673dff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9673e000 - 0x96743ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x96745000 - 0x96789ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9678a000 - 0x96e05ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x96e1b000 - 0x96e1effb  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
    0x96e1f000 - 0x96e43ff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96e44000 - 0x96e55ff7  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
    0x96f83000 - 0x96f83ff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96f84000 - 0x9712bff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x97136000 - 0x97216fe7  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
    0x97217000 - 0x97297feb  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
    0x972ba000 - 0x97498fe3  libType1Scaler.dylib ??? (???) <97A2DBFA-C50B-266C-E63A-D6644F3B737C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x974a1000 - 0x974b5ffb  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
    0x974d5000 - 0x974fdff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x974fe000 - 0x976e0fff  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
    0x97750000 - 0x977cbfff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x977cc000 - 0x977d3ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x977d4000 - 0x977dafff  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
    0x977db000 - 0x977e2ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x977ef000 - 0x97b0fff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97ced000 - 0x97d95ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97d96000 - 0x97dd4ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97dd5000 - 0x97de0ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97de1000 - 0x98d33ff7  com.apple.QuickTimeComponents.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98d34000 - 0x98dcffe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98dd0000 - 0x98e3fff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98eaa000 - 0x98ef0ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98ef1000 - 0x98ef1ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x98ef2000 - 0x98f34ff7  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
    0x98f68000 - 0x993b9fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x993ef000 - 0x99bde557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x99bdf000 - 0x9a09aff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9a09b000 - 0x9a154fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9a155000 - 0x9a176fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a177000 - 0x9a1aafff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9a1ab000 - 0x9a1cbfe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x9a1cc000 - 0x9a1ccff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9a21c000 - 0x9a243ff7  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
    0x9a244000 - 0x9a254ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9a255000 - 0x9a2e7fe7  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
    0x9a2e8000 - 0x9a36affb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9a36b000 - 0x9a3d9ff7  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
    0x9a3dc000 - 0x9a3dcff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9a487000 - 0x9a5c4fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a5c5000 - 0x9a5d7ff7  com.apple.CoreMediaAuthoring 0.706 (706) <81D68084-D7BD-E52E-9B1C-C8EC0FCECE3C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9a5d8000 - 0x9a5e1ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9a5e2000 - 0x9a69afeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x9a6c6000 - 0x9a706ff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9a71a000 - 0x9aa85ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9aace000 - 0x9ab17fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9ab18000 - 0x9ab18ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.45f0
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: WDC WD6400AAKS-40H2B0, 596.17 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0x24400000 / 3
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x24300000 / 2
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x24320000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: Turtle Beach USB MIDI 1x1, 0x10f5, 0x0003, 0x06400000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x06110000 / 6

    We have the same problem in our computer lab. iMovie crashed in all 20 iMacs when adding titles to the movies. Very frustrating. Students are in the middle of school projects. Here is the crash report from one of them:
    Process:         iMovie [1265]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovie8
    Version:         8.0.6 (821)
    Build Info:      iMovieApp-8210000~16
    Code Type:       X86 (Native)
    Parent Process:  launchd [129]
    Date/Time:       2012-02-08 09:50:39.364 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          85249 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  3913 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      2D6D2203-C0B1-4931-8D10-3429C1447F6C
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffe2fa0
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   ???                                     0x16f32ff0 0 + 385036272
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x95b57382 kevent + 10
    1   libSystem.B.dylib                       0x95b57a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x95b56f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x95b56cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x95b56781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x95b565c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x95b56412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x95b569a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x95b565c6 start_wqthread + 30
    Thread 3:  QTKit: QTVisualContextImageProviderWorkLoop
    0   libSystem.B.dylib                       0x95b30afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95b31267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94f472df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94f463c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94f4c304 CFRunLoopRun + 84
    5   com.apple.QTKit                         0x920f7465 QTVisualContextImageProviderWorkLoop + 128
    6   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    7   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x95b30afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95b31267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94f472df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94f463c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94f4c304 CFRunLoopRun + 84
    5   com.apple.FWAVCPrivate                  0x008411b8 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 135
    6   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    7   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 5:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x95b5eaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95b5e75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95b603f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.JavaScriptCore                0x93df7551 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    5   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x95b30afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x95b31267 mach_msg + 68
    2   com.apple.CoreFoundation                0x94f472df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x94f463c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x94f461f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x94cd2224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x94c994c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x94c99474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    9   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 7:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x95b4fac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x94f86c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    3   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 8:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x95b5eaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95b5e75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95b5e2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x93df759c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 9:
    0   libSystem.B.dylib                       0x95b30b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x95b5e6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x95b8d5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9762ab90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x9762a8ce TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component          0x9344ed25 ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    7   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x95b30b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x95b5e6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x95b8d5a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9762ab90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x9762a8ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x976855aa AIOFileThread(void*) + 1127
    6   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    7   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x95b30b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x95b5e6e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x95b8d5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x90c0b3ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x90c0e3dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x90c0bcda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x90c0b571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x90c0b488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    9   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x95b30b42 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x95b5e6f8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib                       0x95ba705f pthread_cond_wait + 48
    3   ...ickTimeComponents.component          0x935bd165 jpegdecompress_MPLoop + 79
    4   libSystem.B.dylib                       0x95b5e259 _pthread_start + 345
    5   libSystem.B.dylib                       0x95b5e0de thread_start + 34
    Thread 13:  JavaScriptCore::BlockFree
    0   libSystem.B.dylib                       0x95b5eaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x95b5e75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x95b5e2b1 pthread_cond_timedwait$UNIX2003 + 72
    3   com.apple.JavaScriptCore                0x93df759c ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x16f32ff8  ebx: 0x00000020  ecx: 0xfffe2fa0  edx: 0x16f32ff0
      edi: 0x00000001  esi: 0x16ee83a8  ebp: 0x1c7f8000  esp: 0xbfffe7ac
       ss: 0x0000001f  efl: 0x00010286  eip: 0x16f32ff0   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0xfffe2fa0
    Binary Images:
        0x1000 -   0x334ffc  com.apple.iMovie8 8.0.6 (821) <CD0B8453-4663-7F8C-EFF4-926EAB254B2A> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x3d2000 -   0x40bfe3  com.apple.MPEG2TSDecoder 1.0 (84) <75EC884A-7300-87B1-7E3A-A2B156BD4D79> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x443000 -   0x464fff  com.apple.iWidgets 1.0.0 (24) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
      0x477000 -   0x516fff  com.apple.DotMacKit 50 (3.0.2L) /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
      0x584000 -   0x585ff7  com.apple.Helium 3.0.0 (157) <22FD7CB4-024E-3065-EB67-262ABF99636E> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x58b000 -   0x58cfff +com.bensyverson.dvmatte.autopicker 1.0 (1.0) <5FB2D0C9-D6D7-036E-F739-DA7CE5BAD36E> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x592000 -   0x647fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
      0x68d000 -   0x7bffe4  com.apple.Helium.HeliumRender 2.0.0 (157) <DEA355F6-22DC-68D4-EA7A-EE06C0D7F150> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0x818000 -   0x818ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
      0x83c000 -   0x86fff3  com.apple.FWAVCPrivate 30.46 (46) <6F5A473F-BC2E-E6DB-6201-8460824BCC32> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0x8bc000 -   0x8e0fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xd00000 -   0xe79ff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12d5b000 - 0x1316efef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x13cf6000 - 0x13cf7ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x15260000 - 0x153a9fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x153ea000 - 0x153f2ff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x153f9000 - 0x15403ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x15409000 - 0x1540bff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x15410000 - 0x15414ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x1541a000 - 0x15426ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x1542d000 - 0x15441ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x15449000 - 0x15595fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x155d8000 - 0x155e1ff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x155e8000 - 0x155f0ff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x155f7000 - 0x156a7fff  com.apple.iTunesAccess 10.5.2 (10.5.2) <3B8DB64C-4A9B-4DBC-84E5-1A2288B19CDF> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x156d8000 - 0x156daff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x156df000 - 0x156e1ff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x158d0000 - 0x158d4ff3  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
    0x158d9000 - 0x158dfff7  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
    0x16e7d000 - 0x16e82fff  com.apple.AppleMPEG2Codec 1.0.2 (220.1) <CE69C1D8-796C-753F-AD3C-F1CC2B8C0AAD> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x16e87000 - 0x16e89ff7  com.apple.podcastproducer.ImageDiffer 1.2.3 (168.7) <0EE2A12C-11A5-5801-5442-D5A7C7542CF3> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0x17948000 - 0x17963fef  com.apple.AppleIntermediateCodec 1.3.2 (153) <D42634C1-8BDA-31ED-5216-13CB19BA7D1B> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x17d75000 - 0x17d8efe7  com.apple.applepixletvideo 1.2.29 (1.2d29) <52810348-A138-D148-92E4-9E1D73EA18A0> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x18155000 - 0x18159ff7 +com.bensyverson.quartzcomposer.dvmatte 1.0 (1.0) <DC961ABE-200A-E9E3-5CD2-7B98F129D0BF> /Applications/iMovie.app/Contents/Resources/Plugins/dvmatte.plugin/Contents/Mac OS/dvmatte
    0x18400000 - 0x18424ff7  com.apple.QuartzComposer.ExtraPatches 4.2 (156.16) <877B2D84-7CA6-501F-FF2D-C33BC52C0074> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x1843c000 - 0x18465fff  com.apple.audio.OpenAL 1.4 (1.4) <CDC6D2B8-3DCA-E511-2250-75567E4C94BD> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x18e96000 - 0x18ed2fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1787) <D20581EB-375E-4266-24B7-CBF062B819E6> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1b01c000 - 0x1b202fef  com.apple.audio.codecs.Components 2.0.3 (2.0.3) <8DA1B494-CD97-D4CC-3D5D-FACFAAE9D968> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1b264000 - 0x1b2b9fef  com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1b2f1000 - 0x1b36bfef  com.apple.AppleVAH264HW.component 2.0 (1.0) <482C506F-33B8-438F-8925-B15657ED9599> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1b57f000 - 0x1b5cbffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1d400000 - 0x1d42cfff  com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (602.0.2) <2F6AD71A-EDFB-66DF-ACBD-46617FDB7C0E> /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <E50D0989-0609-EAF7-3B3B-B10D7847BAA5> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x900e0fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x900e1000 - 0x902e8feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x902e9000 - 0x90399fe3  com.apple.QuickTimeImporters.component 7.6.6 (1787) <B44DD024-3C2A-6A3A-2C94-EBF0CBA06067> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9039a000 - 0x904c8fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9050d000 - 0x90619ff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x906a3000 - 0x9073efe7  com.apple.ApplicationServices.ATS 275.19 (???) <9FA31967-CF14-B033-EB8D-570561D12A13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9073f000 - 0x90b74ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x90b80000 - 0x90beafe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x90beb000 - 0x90c65fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90c78000 - 0x90c7fff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90c80000 - 0x90cc3ff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90cc5000 - 0x90d1dfe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x90d6f000 - 0x90f51fff  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
    0x90f52000 - 0x912bdff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x912be000 - 0x91ba1ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91ba2000 - 0x91be2ff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91be3000 - 0x91beeff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x91c0e000 - 0x92024ff7  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
    0x92025000 - 0x92168fef  com.apple.QTKit 7.7 (1787) <3B47A1A0-7AB5-C1C9-42DE-5993D1012D47> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x92169000 - 0x92177fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x92184000 - 0x924a8fef  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
    0x924a9000 - 0x924b4ff7  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
    0x9255d000 - 0x92615feb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92616000 - 0x92654ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92655000 - 0x92699ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x927fd000 - 0x92e78ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92e79000 - 0x92e8dffb  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
    0x92e95000 - 0x92e95ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92e96000 - 0x93debffb  com.apple.QuickTimeComponents.component 7.6.6 (1787) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93dec000 - 0x94036fef  com.apple.JavaScriptCore 6534.52 (6534.52.7) <AF71FCC7-B8BF-2DA6-C538-6B7C47F95B2D> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94110000 - 0x9412fff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9415c000 - 0x94218fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94219000 - 0x94220ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94221000 - 0x94249ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x9424a000 - 0x9427aff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x942c1000 - 0x94317ff7  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
    0x9431b000 - 0x94375fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x943c8000 - 0x94411fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94412000 - 0x94465ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94466000 - 0x94466ff7  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
    0x94467000 - 0x944e7feb  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
    0x94b48000 - 0x94b64fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94b65000 - 0x94b66ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94b85000 - 0x94b99fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x94c0f000 - 0x94c52ff7  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
    0x94c53000 - 0x94c55ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94c56000 - 0x94c68ff7  com.apple.CoreMediaAuthoring 0.706 (706) <81D68084-D7BD-E52E-9B1C-C8EC0FCECE3C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x94c71000 - 0x94c7bffb  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
    0x94c83000 - 0x94ef4fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94efd000 - 0x94f09ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x94f0a000 - 0x95085fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x95086000 - 0x950c3ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x950c4000 - 0x95246fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x95247000 - 0x95312fef  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
    0x95313000 - 0x95415fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x95416000 - 0x9545bff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9545e000 - 0x9550cff3  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
    0x95517000 - 0x9552cfff  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
    0x9552d000 - 0x9553dff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9553e000 - 0x9563ffe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x95640000 - 0x95648ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95649000 - 0x95652ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95653000 - 0x956cefff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x956cf000 - 0x956d5fff  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
    0x957e4000 - 0x957e4ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x957e5000 - 0x9581fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x95820000 - 0x95831ff7  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
    0x95832000 - 0x95835fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x95836000 - 0x95878ff7  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
    0x95879000 - 0x95879ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x958c2000 - 0x958c2ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x958c3000 - 0x95907fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9592f000 - 0x9594efe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x95b2c000 - 0x95b2fffb  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
    0x95b30000 - 0x95cd7ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x95cd8000 - 0x95ce5ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95ce6000 - 0x95d1cfff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x95d7f000 - 0x96ae7fe7  com.apple.WebCore 6534.52 (6534.52.11) <28DB69F5-ACE5-2A67-4DC1-39EED479B56B> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96c26000 - 0x96c2aff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x96c2b000 - 0x9741a557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x974bc000 - 0x97535ff7  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
    0x97536000 - 0x97583feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97584000 - 0x97584ff7  com.apple.Carbon 150 (152) <095157D7-B4EE-F73D-72E9-6C5EF55C55E2> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97585000 - 0x97597ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x975e4000 - 0x97904ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x97938000 - 0x97a75fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x97a84000 - 0x97abcff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97abd000 - 0x97ac2ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x97b01000 - 0x97b3cfeb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97b3d000 - 0x97b3eff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x97b3f000 - 0x97b70ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x97b71000 - 0x97dd6feb  com.apple.security 6.1.2 (55002) <7F00A51B-F22A-0EBC-A321-923472D686BD> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97ded000 - 0x97eeffef  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
    0x97ef0000 - 0x97f6dff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x97f6e000 - 0x97f70ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97f71000 - 0x97f91fe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x97f92000 - 0x97f9dff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97f9e000 - 0x98160feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98161000 - 0x9820efe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9820f000 - 0x98250ff7  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
    0x98251000 - 0x9842ffeb  libType1Scaler.dylib ??? (???) <59FE1036-1BC2-1A8E-F7C6-E0CC15A4D6D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98436000 - 0x98470fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x98471000 - 0x98475ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98476000 - 0x9859cfe7  com.apple.WebKit 6534.52 (6534.52.7) <A2FC4307-01BE-DC9E-82FE-68B13F3839A9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9859d000 - 0x985c4ff7  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
    0x985c5000 - 0x9867efe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9867f000 - 0x9867fff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98680000 - 0x986c6ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x987c6000 - 0x98823ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x98824000 - 0x988ccffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x988cd000 - 0x988d1ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x988d2000 - 0x989b2fe7  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
    0x989b3000 - 0x989bdfe7  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
    0x989be000 - 0x989f1ff7  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
    0x98a27000 - 0x98a95ff7  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
    0x98aa4000 - 0x98bd1ffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x98bd2000 - 0x98c19ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x98c1a000 - 0x98c32ff7  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
    0x98c33000 - 0x98c41ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x98c42000 - 0x98c68ffb  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
    0x98caa000 - 0x98d7bfe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98e83000 - 0x992d4fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x992d5000 - 0x992d8ff7  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
    0x992d9000 - 0x9933dffb  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
    0x9933e000 - 0x9933fff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99340000 - 0x993a1fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x993e3000 - 0x99480fe3  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
    0x9949f000 - 0x996caff3  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
    0x996cb000 - 0x99763fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99786000 - 0x997a1ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99aaf000 - 0x99ad1fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x99ad2000 - 0x99bacfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x99bad000 - 0x99bafff7  com.apple.QuickTimeH264.component 7.6.6 (1787) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99bb0000 - 0x99c27ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x99c28000 - 0x99d23fff  com.apple.PubSub 1.0.5 (65.28) <A2D9D197-0620-E40D-1115-0416191189B2> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x99d24000 - 0x99dd0fe7  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
    0x99dd1000 - 0x99e53ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x99e54000 - 0x9a30fff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9a310000 - 0x9a3eefef  com.apple.QuickTimeMPEG4.component 7.6.6 (1787) <555FE726-01F3-CE43-A339-5D214EC92569> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a3ef000 - 0x9a42cff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9a42d000 - 0x9a47dff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9a4b7000 - 0x9a4b7ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9a4b8000 - 0x9a4befe7  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
    0x9a4bf000 - 0x9a4cfff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9a4d0000 - 0x9a562fe7  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
    0x9a563000 - 0x9a5d2ff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9a60f000 - 0x9a60fff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9a753000 - 0x9a7c2ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9a7ed000 - 0x9a80efe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a80f000 - 0x9ab09fef  com.apple.QuickTime 7.6.6 (1787) <AC48EAD9-7201-7CE6-C826-41B12963FECF> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9ab0a000 - 0x9ab2eff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9ab2f000 - 0x9ab32ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9ab33000 - 0x9ab66fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: iMac7,1, BootROM IM71.007A.B03, 2 processors, Intel Core 2 Duo, 2 GHz, 1 GB, SMC 1.20f4
    Graphics: ATI Radeon HD 2400 XT, ATI,RadeonHD2400, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Shared Networking Adapter, Ethernet, en2
    Network Service: Parallels Host-Only Networking Adapter, Ethernet, en3
    Serial ATA Device: WDC WD2500AAJS-40VWA0, 232.89 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x1a100000 / 2
    USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x3a200000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x3a210000 / 4
    USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020b, 0x3a230000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2

  • Semi-Anonymous Inner Class?

    From API description of invokeLater method of SwingUtilities class:
    /* begin quote
    In the following example the invokeLater call queues the Runnable object doHelloWorld on the event dispatching thread and then prints a message.
    Runnable doHelloWorld = new Runnable() {
    public void run() {
    System.out.println("Hello World on " + Thread.currentThread());
    SwingUtilities.invokeLater(doHelloWorld);
    System.out.println("This might well be displayed before the other message.");
    */ end quote
    The interface class is named (doHelloWorld) so it's not really anonymous.
    But the class is not declared; there's no class keyword.
    Is there a formal name for this construction?
    It seems like a hybrid of named and anonymous implementation.
    I guess the ability to mix class declaration, instantiation, method declaration, etc in one statement is powerful but just hard for beginner to understand when to use.
    Sigh, three ways to do same thing. This 'hybrid' form is actually harder to understand than other ways.
    private class myRunnable implements Runnable {
    public void run() {
    System.out.println("Hello World on " + Thread.currentThread());
    myRunnable doHelloWorld = new myRunnable();
    OR
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    System.out.println("Hello World on " + Thread.currentThread());
    Thanks,
    Stanley.

    The interface class is named (doHelloWorld) so it's
    not really anonymous. No. There's a variable that points to an instance of that class, and the variable is named doHelloWorld. The class is anonymous.
    Is there a formal name for this construction?Anonymous inner class.

  • HT2729 WHY do I lose all my playlist etc when adding to my iPod? Do I seriously have to keep everything in iTunes permanently?

    WHY do I lose all my playlist etc when adding to my iPod? Do I seriously have to keep everything in iTunes permanently?

    Keeping everything in an iTunes library, which you also backup, is the recommended way to deal with things. That way should your device need restoring you can connect to iTunes, restore and reload your content easily. The alternative is to manually manage the device, however should you need to restore it, damage it, or lose it, then you will also have lost the effort involved in ripping and organizing the media that you put onto it, and would need to repeat that process.
    tt2

  • IMovie quits when adding titles

    iMovie (9.0.8) quits when adding titles (and sometimes just randomly although it seems to be related to adding titles).
    I have repaired permissions and deleted com.apple.iMovieApp.plist from library to no avail.
    It is not related to a corrupt project as it happens to all my current projects.
    This is the first part of the crash report:
    Process:         iMovie [16194]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.8 (1778)
    Build Info:      iMovieApp-1778000000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [148]
    User ID:         501
    Date/Time:       2012-10-21 10:49:22.738 +0800
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          316922 sec
    Crashes Since Last Report:           21480
    Per-App Interval Since Last Report:  216105 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                      41763BF4-5BD1-26E5-4614-F60738A1FE56
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000025d
    VM Regions Near 0x25d:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iMovie.app/Contents/MacOS/iMovie
        VM_ALLOCATE            0000000000001000-00000000000e2000 [  900K] ---/--- SM=NUL 

    Hi
    I doubt - BUG - I guess corrupted iMovie pref file (to get this You only need to Force/Panic Halt the program and errors are entered in it)
    See if this helps
    When iMovie doesn't work as intended this can be due to a lot of reasons
    • iMovie Pref files got corrupted - trash it/they and iMovie makes new and error free one's
    • Creating a new User-Account and log into this - forces iMovie to create all pref. files new and error free
    • Event or Project got corrupted - try to make a copy and repair
    • a codec is used that doesn't work
    • problem in iMovie Cache folder - trash Cache.mov and Cache.plist
    • version miss match of QuickTime Player / iMovie / iDVD
    • preferences are wrong - Repair Preferences
    • other hard disk problem - Repair Hard Disk (Disk Util tool - but start Mac from ext HD or DVD)
    • External hard disks - MUST BE - Mac OS Extended (hfs) formatted to work with Video
    ( UNIX/DOS/FAT32/Mac OS Exchange - works for most other things - but not for Video )
    • USB-flash-memories do not work
    • Net-work connected hard disks - do not work
    • iPhoto Library got problems - let iPhoto select another one or repair it. Re-build this first then try to re-start iMovie.
    This You do by
    _ close iPhoto
    _ on start up of iPhoto - Keep {cmd and alt-keys down}
    _ now select all five options presented
    _ WAIT a long long time
    • free space on Start-Up (Mac OS) hard disk to low (<1Gb) - I never go under 25Gb free space for SD-Video (4-5 times more for HD)
    • external devices interferes - turn off Mac - disconnect all of them and - Start up again and re-try
    • GarageBand fix - start GB - play a few notes - Close it again and now try iMovie
    • Screen must be set to million-colors
    • Third-party plug-ins doesn't work OK
    • Run "Cache Out X", clear out all caches and restarts the Mac
    • Let Your Mac be turned on during one night. At about midnight there is a set of maintenance programs that runs and tidying up. This might help
    • Turn off Your Mac - and disconnect Mains - for about 20-30 minutes - at least this resets the FireWire port.
    • In QuickTime - DivX, 3ivx codec, Flip4Mac, Perian etc - might be problematic - temporarily move them out and re-try
    (I deleted the file "3ivxVideoCodec.component" located in Mac HD/Library/Quicktime and this resolved my issue.)
    buenrodri wrote
    I solved the problem by removing the file: 3ivxVideoCodec.component. after that, up-dated iMovie runs ok.
    Last resort: Trash all of iMovie and re-install it
    Yours Bengt W

  • Mysterious anonymous inner class in switch block

    public class MysteryFile {
      public enum Elements {
        WIND, EARTH, FIRE, WATER
      Elements el;
      public MysteryFile(Elements el) {
        this.el = el;
      public void whatIsItLike() {
        switch (el) {
          case WIND: System.out.println("A bit chilly sometimes"); break;
          case EARTH: System.out.println("Gets hands dirty."); break;
          case FIRE: System.out.println("Hot! skin melt"); break;
          case WATER: System.out.println("Cool! clean hands"); break;
          default: System.out.println("Don't know"); break;
      public static void main(String[] args) {
        MysteryFile anElement = new MysteryFile(Elements.FIRE);
        anElement.whatIsItLike();
    }When compiled in Netbeans or in the command line, generates an unexpected MysteryFile$1.class file. If the entire switch block is commented out and recompiled, it does not get generated. Where does this anonymous inner class come from?

    The MysteryFile$1 class looks something like this (javac 1.6.0_02):
    class MysteryFile$1 {
      static final int[] $SwitchMap$MysteryFile$Elements;
      static {
          // the line number (debug info) of this static initializer
          // is "switch (el)" line in MysteryFile.java
          $SwitchMap$MysteryFile$Elements =
                  new int[MysteryFile$Elements.values().length ];
          try {
              $SwitchMap$MysteryFile$Elements[
                      MysteryFile$Elements.WIND.ordinal() ] = 1;
          } catch (NoSuchFieldError e) {
              // fix stack?
          // repeat with EARTH(2), FIRE(3) and WATER(4)
    }... and the actual switch statement in 'MysteryFile' looks like so:
      //switch (el) {
      switch(MysteryFile$1.$SwitchMap$MysteryFile$Elements[
              this.el.ordinal() ])
      case 1:  // WIND
          break;
      case 2:  // EARTH
          break;
      case 3:  // FIRE
          break;
      case 4:  // WATER
          break;
      default:  // ...
      }I suppose this is necessary because the compiler can't guarantee that the runtime enum-constant-to-ordinal mapping will be identical to that at compile time (the API docs say it depends on the declaration order in the source code, which I think may change without breaking binary compatibility).
    PS MysteryFile$Elements.values() is a synthetic method that returns all enumeration constants in a MysteryFile$Elements array. Found this old related thread: [http://forum.java.sun.com/thread.jspa?threadID=617315]

Maybe you are looking for