Large Images Database Management

 I want to know that can I store my images (of size nearly 1 GB each with JPEG 2000 extension) directly in database (SQL server)? or will I store them in server directory,
like in folder structure by year vice order? which one is better? In SQL server option what implementation strategy will be preferable?
Engr. Mudassar Ali Software Engineer

You can map a drive letter to the UNC path as you can any other share.  For example:
NET USE D:
\\YourServer\ServerShare\DatabaseDirectory\FileTableName
Below is a tested example of triggers to maintain the meta data table.  Slightly different than the example David provided but you get the idea.  This will associate the meta data with the parent folder and images within whenever an image
file is created, updated or deleted.  The expectation is that the XML file is created/updated before the image file.
CREATE TABLE dbo.LocationImage AS FILETABLE
WITH
FILETABLE_DIRECTORY = 'LocationImage',
FILETABLE_COLLATE_FILENAME = SQL_Latin1_General_CP1_CI_AS
GO
CREATE TABLE dbo.LocationImageMetaData(
image_folder_path_locator hierarchyid
,vertex_id int IDENTITY
,longitude decimal(18,14)
,latitude decimal(18,14)
,CONSTRAINT PK_LocationImageMetaData PRIMARY KEY(image_folder_path_locator, vertex_id)
GO
CREATE TRIGGER TR_I_U_LocationImage
ON dbo.LocationImage
FOR INSERT, UPDATE
AS
BEGIN TRY
DECLARE @ImageFolder TABLE(
path_locator hierarchyid PRIMARY KEY);
--get list of folders with inserted or updated images
INSERT INTO @ImageFolder
SELECT DISTINCT parent_path_locator AS path_locator
FROM inserted
WHERE
is_directory = 0
AND file_type = 'jpg2000';
--remove existing meta-data for modified folders
DELETE dbo.LocationImageMetaData
WHERE image_folder_path_locator IN(
SELECT path_locator
FROM @ImageFolder
--insert meta-data for new and changed images
WITH
meta_data_files AS (
SELECT
image_folder.path_locator
,CAST(file_stream AS xml) AS meta_data_xml
FROM dbo.LocationImage
JOIN @ImageFolder AS image_folder ON
image_folder.path_locator = LocationImage.parent_path_locator
WHERE
LocationImage.file_type = 'xml'
INSERT INTO dbo.LocationImageMetaData(
image_folder_path_locator
,longitude
,latitude
SELECT
meta_data_files.path_locator
,Vertex.value('./LON[1]', 'decimal(18,14)')
,Vertex.value('./LAT[1]', 'decimal(18,14)')
FROM meta_data_files
CROSS APPLY meta_data_files.meta_data_xml.nodes('//Dataset_Extent/Vertex') AS Dataset_Extent(Vertex);
END TRY
BEGIN CATCH
THROW;
END CATCH;
GO
CREATE TRIGGER TR_D_LocationImage
ON dbo.LocationImage
FOR DELETE
AS
BEGIN TRY
DECLARE @ImageFolder TABLE(
path_locator hierarchyid PRIMARY KEY);
--get list of folders with deleted images
INSERT INTO @ImageFolder
SELECT DISTINCT parent_path_locator AS path_locator
FROM deleted
WHERE
is_directory = 0
AND file_type = 'jpg2000';
--remove existing meta-data for folders with no images
DELETE limd
FROM @ImageFolder AS image_folder
JOIN LocationImageMetaData AS limd ON
limd.image_folder_path_locator = image_folder.path_locator
WHERE NOT EXISTS(
SELECT *
FROM dbo.LocationImage
WHERE
LocationImage.parent_path_locator = limd.image_folder_path_locator
AND LocationImage.is_directory = 0
AND LocationImage.file_type = 'jpg2000'
END TRY
BEGIN CATCH
THROW;
END CATCH;
GO
Dan Guzman, SQL Server MVP, http://www.dbdelta.com

Similar Messages

  • Hooks to networked image database.

    I am looking for a workaround that might let me use lightroom as a "feeder" application to a larger image database that can also accept CMYK image files.
    I have many thousands of corporate images many of which must be in CMYK format because my printers do not do a good job of RGB conversion.
    Until some future version of Lightroom that might be network and CMYK aware, I would love to use lightroom to help me select new images from cameras, do color correction and create "initial" keywording that would accessible for new images within lightroom.
    Then I could use lightroom for new images and also import these images into another program that would also let me see the legacy CMYK images and their keywords.
    I know this would be duplication in many ways but until lightroom matures into a DAM (if ever) that can also handle CMYK it would be a workaround.
    Any ideas?

    In this book ( Application Developer's Guide - Fundamentals Contents / Search / Index / PDF ) you can find that information:
    Representing Large Data Types
    In times gone by, the way to represent large data objects in the database was to use the LONG, RAW, and LONG RAW types. Oracle recommends that current applications use the various LOB types, such as CLOB, BLOB and BFILE, for this data.
    See the Oracle9i Application Developer's Guide - Large Objects (LOBs) , for information about LOB datatypes.
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adfnstyp.htm#430288
    Joel Pérez
    http://otn.oracle.com/experts

  • Larger image pop up using php / database

    Hi,
    My photographic site gallery section runs off a data base
    where the images
    are uploaded via a content management system into the folder
    images/photos.
    The images are then loaded from this folder and run through a
    downsizing
    script to their appropriate areas ie gallery thumbnails and
    gallery images.
    What I am wanting to do is add a section on the image page so
    people can
    view a larger image.
    I have made a _blank link made to
    seelarger.php?im=images/photos/<?=$image?> on the image
    page with a text
    link
    and the image on the seelarger.php is
    images/photos/<?=$image?>
    This isnt working.... how can I transfer the image on the
    image page to a
    another page.
    Thanks
    Matt
    Matt Lauder Gallery
    Panoramic Images of Australia
    www.mattlauder.com.au
    0414 374 533

    Do I replace the
    seelarger.php?im=<?php echo urlencode($image); ?> code
    you gave me before
    with
    seelarger.php?im=<?php echo urlencode($image);
    ?>&amp;title=<?php echo
    urlencode($title); ?>
    and can you confirm what code I need on the seelarger.php
    page.
    as I replaced the seelarger.php?im=<?php echo
    urlencode($image); ?> code
    with the new one you gave and nothing happened.
    Thanks
    Matt
    "David Powers" <[email protected]> wrote in message
    news:ej84c4$283$[email protected]..
    > matt wrote:
    >> Excellent.... worked perfectly thankyou.... now how
    do I do the same with
    >> the title.... on the image page I have it as
    <?=$title?>
    >>
    >> And on the seelarger.php I have it as echo
    >> "<title>{$_GET[title]}</title>";
    >
    > You need to pass the variable from one page to the next.
    It doesn't just
    > appear by magic.
    >
    > seelarger.php?im=<?php echo urlencode($image);
    ?>&amp;title=<?php echo
    > urlencode($title); ?>
    >
    > --
    > David Powers
    > Adobe Community Expert
    > Author, "Foundation PHP for Dreamweaver 8" (friends of
    ED)
    >
    http://foundationphp.com/

  • Large images

    I am looking at .NET/SQLSERVER vs Oracle/Java solution for storing, dispplaying some 2TB image database that stores hospital data. Any ideas or white papers on this? Which is a better solution? I used to be on an oracle intermedia project last year I thought it was a big overhead? All we want is to retrive this info and show in web pages with some security that a doctor can look at only certain part of the brain etc.

    http://www.oracle.com/technology/products/intermedia/pdf/new_mexico.pdf
    We have much larger sites, but the above is 5TB
    http://www.oracle.com/technology/products/intermedia/pdf/biomed_central.pdf
    Would also be interesting for you I think.
    You might be interested in:
    http://www.oracle.com/technology/sample_code/products/intermedia/htdocs/imedia_servlet_jsp.html
    Kinda old...
    http://www.oracle.com/technology/industries/life_sciences/presentations/lsday903_9_BioMedCentral_Images.ppt
    You should contact the product manager [email protected] to discuss your application. There is some new stuff you should know about with medical images.
    Larry

  • In iPhoto, my thumbnails show but larger images do not, why?

    I am having trouble with some of my larger images not showing up in iPhoto. I click on "Faces" and go into pictures of my mom that I have tagged. I see all the thumbnail images of her, but when I click to view the images larger, it doesn't show the picture. It shouws a triangle with a !
    I am running iPhoto '11 (version 9.2.1)
    Please help me.
    Thanks.

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Migrating image database in Informix 9.21 to Oracle 9i

    I am going to be migrating an image database from Informix 9.21 to Oracle 9i and am needing to know
    what Oracle9i has to offer as far as options in storing large media types - image, video, audio, etc...
    Specifically, does Oracle have anything comparable to Informix' smart blobspace? Is it possible to migrate
    image data from Informix to Oracle? I know the migration kits only are available up to Informix version 7.
    What does interMedia offer?

    Hi,
    I was unable to reproduce your problem. I carried out the following steps in attempt to replicate the issue:
    1. I launched the workbench, version 10.1.0.2, selecting the Oracle Lite "Default Repository".
    2. Using the Oracle Enterprise Manager Console, I created a user "rtdb" with the password "rtdb" on my target Oracle 9i database.
    3. I captured a test Informix database, generating its source and oracle models.
    4. I then proceeded to migrate the database to Oracle and supplied my target Oracle9i database information in the "Migration Wizard, Step 1 of 4: Destination Database Details", supplying rtdb/rtdb as the username/password.
    5. My test database migrated with no such error messages reported.
    If you carried out the migration steps as I have outlined above, and are still experiencing issues with a "Failed to connect" error, I would contact support.
    Regards,
    Hilary

  • Preview of pages containing large images ( 600MB)

    Hello,
    I use the CS3-Server with the Java API, I have to export a pagepreview from a certain page of an indd-document as JPEG. The page that I have to export contains images each with a size greater than 600 MB. At the moment I call the doExport-method of the document-object. My JPEGExportPreferences are all set to lowresolution (72 dpi) and low JPEGQuality (kJPEGOptionsQualityLow).
    But the JPEG-Export always lasts over 20 seconds which is too long.
    The document must contain these images. This cannot be changed.
    Now I search different way to get a pagepreview. When Indesign saves a document it saves previews as well, is it possible to use these previews? Or does anybody know a way to tell Indesign to use its internal preview instead of the large image to generate the pagepreview?
    I already tried to unlink the image but the unlink-process lasts even longer than the preview generation process itself :-), even the relink to an non-existant image did not work.
    I don´t know how to handle this...Does anybody run into this problem before and perhaps can help me, PLEASE?
    Thank you!
    Gregor

    The short answer is not yet - although the expectation of 64-bit Aperture is that it HAS to be out SOON. I shoot a lot of film in medium and large format and the scans are 16bit 4000dpi some of my files exceed 2gigs and still use Aperture to organize them along with references to my negative files but Aperture will not deal with 1G files right now no matter how much memory you jamb in your machine it is pure 32bit and cannot manage multiple 32bit address spaces soooo....
    4G address space - OS X and shared 32bit reserved address space - program/text space - the amount of memory Aperture uses for other things - etc = a lot less than 4G actually a lot less than 2G.
    Hope that makes a long story short. Just thank heavens that OS X did not reserve 2G in address space like some older unicies.
    RB

  • PVIVImageView crash - large image support in 10.6 got MUCH worse

    I have been making lots of panoramas and 10.5 had great support - both Safari and Preview were fast and never crashed due to the large images. As soon I installed 10.6 I was immediately disappointed by the speed - the tiling display thing has problems.
    This crash was with a .jpg file that is 26423 × 6954.
    Is this on anyone's radar or should I go back to 10.5?
    YON - Jan C. Hardenbergh
    Process: Preview [13438]
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: com.apple.Preview
    Version: 5.0.1 (503)
    Build Info: Preview-5030000~4
    Code Type: X86 (Native)
    Parent Process: launchd [104]
    Date/Time: 2010-01-29 23:27:42.117 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 951133 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 5005206 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: F2CA63B7-D2BB-4A09-BAFD-FF3B062414E2
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000008084beb0
    Crashed Thread: 2 Dispatch queue: com.apple.root.default-priority
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00022173 -[PVIVImageView _drawImageKeepingTilesLocked:] + 2282
    2 com.apple.Preview 0x0002145d -[PVIVImageView drawRect:] + 1174
    3 com.apple.AppKit 0x956c8a99 -[NSView _drawRect:clip:] + 3510
    4 com.apple.AppKit 0x956c7737 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1600
    5 com.apple.AppKit 0x956c5c56 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 711
    6 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    7 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    8 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    9 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    10 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    11 com.apple.AppKit 0x956c57cb -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 265
    12 com.apple.AppKit 0x956c2111 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309
    13 com.apple.AppKit 0x95622d6e -[NSView displayIfNeeded] + 818
    14 com.apple.AppKit 0x955ec094 -[NSWindow displayIfNeeded] + 204
    15 com.apple.AppKit 0x9561d5aa _handleWindowNeedsDisplay + 696
    16 com.apple.CoreFoundation 0x90c1f892 __CFRunLoopDoObservers + 1186
    17 com.apple.CoreFoundation 0x90bdc18d __CFRunLoopRun + 557
    18 com.apple.CoreFoundation 0x90bdb864 CFRunLoopRunSpecific + 452
    19 com.apple.CoreFoundation 0x90bdb691 CFRunLoopRunInMode + 97
    20 com.apple.HIToolbox 0x9620bf0c RunCurrentEventLoopInMode + 392
    21 com.apple.HIToolbox 0x9620bcc3 ReceiveNextEventCommon + 354
    22 com.apple.HIToolbox 0x9620bb48 BlockUntilNextEventMatchingListInMode + 81
    23 com.apple.AppKit 0x955f3ac5 _DPSNextEvent + 847
    24 com.apple.AppKit 0x955f3306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    25 com.apple.AppKit 0x955b549f -[NSApplication run] + 821
    26 com.apple.AppKit 0x955ad535 NSApplicationMain + 574
    27 com.apple.Preview 0x000024d5 start + 53
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x93b810ea kevent + 10
    1 libSystem.B.dylib 0x93b81804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x93b80cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x93b80a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 2 Crashed: Dispatch queue: com.apple.root.default-priority
    0 com.apple.Preview 0x0002bd8a -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 1625
    1 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 3: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    2 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    3 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    4 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    5 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    6 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    7 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    8 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    9 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    10 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 4: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    2 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    3 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    4 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    5 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    6 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    7 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    8 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    9 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    10 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 5: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 6: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x93b5a8da machmsgtrap + 10
    1 libSystem.B.dylib 0x93b5b047 mach_msg + 68
    2 libSystem.B.dylib 0x93bc087b notify_servercancel + 127
    3 libSystem.B.dylib 0x93bbff24 notify_cancel + 199
    4 libSystem.B.dylib 0x93bbf248 asl_close + 219
    5 com.apple.CoreFoundation 0x90c72974 __CFLogCString + 292
    6 com.apple.CoreFoundation 0x90c7283e _CFLogvEx + 334
    7 com.apple.Foundation 0x95f3d7f0 NSLogv + 143
    8 com.apple.Foundation 0x95f3d75f NSLog + 27
    9 com.apple.Preview 0x00023b8d -[PVIVGLContextPool _lockedContextPoolItem] + 303
    10 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    11 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    12 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    13 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    14 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    15 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    16 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    17 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    18 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    19 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 7: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 8: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 9: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 2 crashed with X86 Thread State (32-bit):
    eax: 0xa00e8068 ebx: 0x00000004 ecx: 0x00884000 edx: 0x004abd10
    edi: 0x004abc50 esi: 0x004abc50 ebp: 0xb0102d38 esp: 0xb0102c30
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002bd8a cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x8084beb0
    Binary Images:
    0x1000 - 0x12cfe7 com.apple.Preview 5.0.1 (503) <B737041C-95DB-2579-53FC-CB9FD62D0CD3> /Applications/Preview.app/Contents/MacOS/Preview
    0x12640000 - 0x12680ff7 com.apple.driver.AppleIntelGMA950GLDriver 1.6.6 (6.0.6) <965B9C6A-2A0D-CDEA-D1D5-1074F0301A1A> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x126e9000 - 0x126ebff7 com.apple.printingprivate.framework.PrintingPrivate 6.0 (15) <E118F149-8F32-0198-874A-CF800383079A> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
    0x12dfc000 - 0x12f6dff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12f9e000 - 0x12fbaff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x14404000 - 0x14421ff7 libPDFRIP.A.dylib ??? (???) <EBF2754B-B509-E631-B41C-1F7061802B4D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x14788000 - 0x147caff7 com.apple.print.framework.Print.Private 6.1 (305.1) <411077DE-8627-7D79-C107-85D3FE74CD81> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x148c2000 - 0x148f4fe7 com.apple.print.PrintingCocoaPDEs 6.1 (305.1) <08B0D562-E227-198C-5B18-924BE9025185> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    0x1bc83000 - 0x1be36fe7 libCMaps.A.dylib ??? (???) <7C24AA8F-89C2-8000-0B71-60F6631173C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90047ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x900f1000 - 0x900fbfe7 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
    0x90143000 - 0x9017ffff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x90180000 - 0x9019bff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9019c000 - 0x902cafe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x902cb000 - 0x902d1ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x902d2000 - 0x902eefe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x902ef000 - 0x90380fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90381000 - 0x903bbffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x903bc000 - 0x90459fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9045a000 - 0x90482ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x90488000 - 0x90781ff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90782000 - 0x90782ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90833000 - 0x90833ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9093c000 - 0x90b9eff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90b9f000 - 0x90b9fff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90ba0000 - 0x90d17fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90d18000 - 0x90d19ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90d1a000 - 0x90d7afe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d7b000 - 0x90d7eff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90d7f000 - 0x90d90ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90d91000 - 0x90f91feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90f92000 - 0x90ff6ffb 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
    0x90ff7000 - 0x9102cff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9106e000 - 0x910b7fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x910d9000 - 0x910dffff 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
    0x9110b000 - 0x911b3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x911b4000 - 0x911c1ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x911c2000 - 0x9125efe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91260000 - 0x91676ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x916b4000 - 0x916dafff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x916db000 - 0x916e5ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x916e6000 - 0x91740fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91741000 - 0x9177fff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91816000 - 0x91908ff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9196c000 - 0x919a9ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x919aa000 - 0x919e1ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91a21000 - 0x91d1afef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91d1b000 - 0x91d68feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91d69000 - 0x91e10fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91eca000 - 0x9204cfe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x92052000 - 0x920c2ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x920c3000 - 0x920c7ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x920c8000 - 0x920f2ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9211a000 - 0x9212cff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92133000 - 0x92184ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x921b8000 - 0x92292ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92293000 - 0x92296ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x92297000 - 0x922a1ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x922a2000 - 0x922a7ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x922a8000 - 0x922d8ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x922d9000 - 0x922f1ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x923d1000 - 0x923e6fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923e7000 - 0x9274eff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9274f000 - 0x9287bfe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9299f000 - 0x92b3cfef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92b3d000 - 0x92b71ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x92b72000 - 0x92c25fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92c3f000 - 0x92f5efe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92f5f000 - 0x92fc9fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92fec000 - 0x930eefef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x930ef000 - 0x9315dff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9315e000 - 0x9315eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9315f000 - 0x93161ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93162000 - 0x931d9fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x933bc000 - 0x9386afe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x938cd000 - 0x9390ffe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93910000 - 0x93a1dff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93a37000 - 0x93a7aff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93aac000 - 0x93abafe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x93abe000 - 0x93abeff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93abf000 - 0x93accff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93aeb000 - 0x93afbff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x93afc000 - 0x93b08ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x93b5a000 - 0x93cfefeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x93cff000 - 0x93d79fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93d7a000 - 0x93d8effb 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
    0x93d8f000 - 0x93d92fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93d93000 - 0x93e2bfe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93e2c000 - 0x9400efff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9400f000 - 0x94010ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94011000 - 0x94061fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94062000 - 0x940bafe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x940bb000 - 0x940c5ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x940c6000 - 0x940fcfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x940fd000 - 0x9416cff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9416d000 - 0x94173ff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94635000 - 0x9463cfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9463d000 - 0x94868ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94869000 - 0x9489aff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9489b000 - 0x948d3ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x948d4000 - 0x949b1ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94cbe000 - 0x94cdefe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94cdf000 - 0x94d39ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94d4d000 - 0x94f09fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94f2c000 - 0x94f2cff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94f2d000 - 0x94fdafe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x94fdb000 - 0x94fddff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94fde000 - 0x95013ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95014000 - 0x95053ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95196000 - 0x951ecff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x951ed000 - 0x9522dff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9522e000 - 0x952aefeb 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
    0x952af000 - 0x952d1fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x952d2000 - 0x95318ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x95388000 - 0x95436ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95437000 - 0x9544bfe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9544c000 - 0x95450ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x955ab000 - 0x95e89ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95e8a000 - 0x95ea8ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95ea9000 - 0x96119ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x961d6000 - 0x961d6ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x961d7000 - 0x964fafef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9748a000 - 0x975c9fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x975ca000 - 0x975f1ff7 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
    0x97602000 - 0x97de54b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98611000 - 0x98621ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x98622000 - 0x98718ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98719000 - 0x9881afe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9881b000 - 0x9883bfe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x98850000 - 0x98c85ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98ce2000 - 0x98d32ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98d33000 - 0x98d57ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98e4e000 - 0x98efdff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x98efe000 - 0x98f09ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98f0a000 - 0x98f4efe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98f90000 - 0x99049fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x9904a000 - 0x990ccffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x990cd000 - 0x99100ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9913b000 - 0x991b4ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x991ed000 - 0x991edff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9920e000 - 0x9920fff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99210000 - 0x992dafef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x992fa000 - 0x992faff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99344000 - 0x99347ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x99348000 - 0x99351ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99386000 - 0x99457fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x99458000 - 0x9945cff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x99574000 - 0x995b5ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: Macmini1,1, BootROM MM11.0055.B08, 2 processors, Intel Core Duo, 1.66 GHz, 2 GB, SMC 1.3f4
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), Atheros 5424: 2.0.19.8
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: FUJITSU MHV2080BHPL, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-846
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd600000
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1294, 0xfd610000
    USB Device: External USB HDD, 0x0480, 0xa001, 0xfd630000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd620000
    USB Device: Hub in Apple Pro Keyboard, 0x05ac (Apple Inc.), 0x1003, 0x3d100000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0x3d110000
    USB Device: Apple Pro Keyboard, 0x05ac (Apple Inc.), 0x020b, 0x3d130000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x7d200000
    USB Device: USB MFP, 0x04b8 (Seiko Epson Corp.), 0x080d, 0x5d100000
    FireWire Device: ST3160021A, DMI, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown

    I have been making lots of panoramas and 10.5 had great support - both Safari and Preview were fast and never crashed due to the large images. As soon I installed 10.6 I was immediately disappointed by the speed - the tiling display thing has problems.
    This crash was with a .jpg file that is 26423 × 6954.
    Is this on anyone's radar or should I go back to 10.5?
    YON - Jan C. Hardenbergh
    Process: Preview [13438]
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: com.apple.Preview
    Version: 5.0.1 (503)
    Build Info: Preview-5030000~4
    Code Type: X86 (Native)
    Parent Process: launchd [104]
    Date/Time: 2010-01-29 23:27:42.117 -0500
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 951133 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 5005206 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: F2CA63B7-D2BB-4A09-BAFD-FF3B062414E2
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x000000008084beb0
    Crashed Thread: 2 Dispatch queue: com.apple.root.default-priority
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00022173 -[PVIVImageView _drawImageKeepingTilesLocked:] + 2282
    2 com.apple.Preview 0x0002145d -[PVIVImageView drawRect:] + 1174
    3 com.apple.AppKit 0x956c8a99 -[NSView _drawRect:clip:] + 3510
    4 com.apple.AppKit 0x956c7737 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1600
    5 com.apple.AppKit 0x956c5c56 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 711
    6 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    7 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    8 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    9 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    10 com.apple.AppKit 0x956c6bcb -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4668
    11 com.apple.AppKit 0x956c57cb -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 265
    12 com.apple.AppKit 0x956c2111 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 3309
    13 com.apple.AppKit 0x95622d6e -[NSView displayIfNeeded] + 818
    14 com.apple.AppKit 0x955ec094 -[NSWindow displayIfNeeded] + 204
    15 com.apple.AppKit 0x9561d5aa _handleWindowNeedsDisplay + 696
    16 com.apple.CoreFoundation 0x90c1f892 __CFRunLoopDoObservers + 1186
    17 com.apple.CoreFoundation 0x90bdc18d __CFRunLoopRun + 557
    18 com.apple.CoreFoundation 0x90bdb864 CFRunLoopRunSpecific + 452
    19 com.apple.CoreFoundation 0x90bdb691 CFRunLoopRunInMode + 97
    20 com.apple.HIToolbox 0x9620bf0c RunCurrentEventLoopInMode + 392
    21 com.apple.HIToolbox 0x9620bcc3 ReceiveNextEventCommon + 354
    22 com.apple.HIToolbox 0x9620bb48 BlockUntilNextEventMatchingListInMode + 81
    23 com.apple.AppKit 0x955f3ac5 _DPSNextEvent + 847
    24 com.apple.AppKit 0x955f3306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    25 com.apple.AppKit 0x955b549f -[NSApplication run] + 821
    26 com.apple.AppKit 0x955ad535 NSApplicationMain + 574
    27 com.apple.Preview 0x000024d5 start + 53
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x93b810ea kevent + 10
    1 libSystem.B.dylib 0x93b81804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x93b80cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x93b80a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 2 Crashed: Dispatch queue: com.apple.root.default-priority
    0 com.apple.Preview 0x0002bd8a -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 1625
    1 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 3: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    2 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    3 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    4 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    5 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    6 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    7 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    8 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    9 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    10 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 4: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    2 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    3 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    4 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    5 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    6 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    7 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    8 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    9 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    10 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 5: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 6: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x93b5a8da machmsgtrap + 10
    1 libSystem.B.dylib 0x93b5b047 mach_msg + 68
    2 libSystem.B.dylib 0x93bc087b notify_servercancel + 127
    3 libSystem.B.dylib 0x93bbff24 notify_cancel + 199
    4 libSystem.B.dylib 0x93bbf248 asl_close + 219
    5 com.apple.CoreFoundation 0x90c72974 __CFLogCString + 292
    6 com.apple.CoreFoundation 0x90c7283e _CFLogvEx + 334
    7 com.apple.Foundation 0x95f3d7f0 NSLogv + 143
    8 com.apple.Foundation 0x95f3d75f NSLog + 27
    9 com.apple.Preview 0x00023b8d -[PVIVGLContextPool _lockedContextPoolItem] + 303
    10 com.apple.Preview 0x00023a52 -[PVIVGLContextPool lockedGLContext] + 26
    11 com.apple.Preview 0x0002b770 -[PVIVImageTile _scaleLevel:intoLevel:onOperation:] + 63
    12 com.apple.Preview 0x0001f156 -[PVIVImageTile loadLevel:onOperation:] + 168
    13 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    14 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    15 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    16 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    17 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    18 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    19 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 7: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 8: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 9: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0xffff028f _spinlock + 47
    1 com.apple.Preview 0x0001f51c -[PVIVImageTile _loadLevel:onOperation:] + 814
    2 com.apple.Preview 0x0001f029 -[PVIVImageTileLoadOp main] + 42
    3 com.apple.Foundation 0x95ee72d4 -[__NSOperationInternal start] + 708
    4 com.apple.Foundation 0x95ee6f61 ___startOperations_block_invoke2 + 94
    5 libSystem.B.dylib 0x93b8e828 dispatch_call_block_andrelease + 16
    6 libSystem.B.dylib 0x93b80a5c dispatch_workerthread2 + 222
    7 libSystem.B.dylib 0x93b804f1 pthreadwqthread + 390
    8 libSystem.B.dylib 0x93b80336 start_wqthread + 30
    Thread 2 crashed with X86 Thread State (32-bit):
    eax: 0xa00e8068 ebx: 0x00000004 ecx: 0x00884000 edx: 0x004abd10
    edi: 0x004abc50 esi: 0x004abc50 ebp: 0xb0102d38 esp: 0xb0102c30
    ss: 0x0000001f efl: 0x00010246 eip: 0x0002bd8a cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x8084beb0
    Binary Images:
    0x1000 - 0x12cfe7 com.apple.Preview 5.0.1 (503) <B737041C-95DB-2579-53FC-CB9FD62D0CD3> /Applications/Preview.app/Contents/MacOS/Preview
    0x12640000 - 0x12680ff7 com.apple.driver.AppleIntelGMA950GLDriver 1.6.6 (6.0.6) <965B9C6A-2A0D-CDEA-D1D5-1074F0301A1A> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x126e9000 - 0x126ebff7 com.apple.printingprivate.framework.PrintingPrivate 6.0 (15) <E118F149-8F32-0198-874A-CF800383079A> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
    0x12dfc000 - 0x12f6dff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12f9e000 - 0x12fbaff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x14404000 - 0x14421ff7 libPDFRIP.A.dylib ??? (???) <EBF2754B-B509-E631-B41C-1F7061802B4D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x14788000 - 0x147caff7 com.apple.print.framework.Print.Private 6.1 (305.1) <411077DE-8627-7D79-C107-85D3FE74CD81> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x148c2000 - 0x148f4fe7 com.apple.print.PrintingCocoaPDEs 6.1 (305.1) <08B0D562-E227-198C-5B18-924BE9025185> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    0x1bc83000 - 0x1be36fe7 libCMaps.A.dylib ??? (???) <7C24AA8F-89C2-8000-0B71-60F6631173C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90047ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x900f1000 - 0x900fbfe7 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
    0x90143000 - 0x9017ffff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x90180000 - 0x9019bff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9019c000 - 0x902cafe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x902cb000 - 0x902d1ff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x902d2000 - 0x902eefe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x902ef000 - 0x90380fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90381000 - 0x903bbffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x903bc000 - 0x90459fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9045a000 - 0x90482ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x90488000 - 0x90781ff3 com.apple.RawCamera.bundle 2.3.0 (505) <1C7CEA30-FFE2-B4DE-98CE-D6518DF1E54B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x90782000 - 0x90782ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90833000 - 0x90833ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9093c000 - 0x90b9eff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90b9f000 - 0x90b9fff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x90ba0000 - 0x90d17fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90d18000 - 0x90d19ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90d1a000 - 0x90d7afe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d7b000 - 0x90d7eff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90d7f000 - 0x90d90ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90d91000 - 0x90f91feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90f92000 - 0x90ff6ffb 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
    0x90ff7000 - 0x9102cff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9106e000 - 0x910b7fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x910d9000 - 0x910dffff 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
    0x9110b000 - 0x911b3ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x911b4000 - 0x911c1ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x911c2000 - 0x9125efe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91260000 - 0x91676ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x916b4000 - 0x916dafff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x916db000 - 0x916e5ff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x916e6000 - 0x91740fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91741000 - 0x9177fff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91816000 - 0x91908ff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x9196c000 - 0x919a9ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x919aa000 - 0x919e1ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91a21000 - 0x91d1afef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91d1b000 - 0x91d68feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91d69000 - 0x91e10fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91eca000 - 0x9204cfe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x92052000 - 0x920c2ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x920c3000 - 0x920c7ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x920c8000 - 0x920f2ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9211a000 - 0x9212cff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92133000 - 0x92184ff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x921b8000 - 0x92292ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92293000 - 0x92296ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x92297000 - 0x922a1ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x922a2000 - 0x922a7ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x922a8000 - 0x922d8ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x922d9000 - 0x922f1ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x923d1000 - 0x923e6fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x923e7000 - 0x9274eff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9274f000 - 0x9287bfe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9299f000 - 0x92b3cfef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92b3d000 - 0x92b71ff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x92b72000 - 0x92c25fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x92c3f000 - 0x92f5efe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92f5f000 - 0x92fc9fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92fec000 - 0x930eefef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x930ef000 - 0x9315dff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9315e000 - 0x9315eff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9315f000 - 0x93161ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93162000 - 0x931d9fe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x933bc000 - 0x9386afe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x938cd000 - 0x9390ffe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x93910000 - 0x93a1dff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93a37000 - 0x93a7aff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93aac000 - 0x93abafe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x93abe000 - 0x93abeff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93abf000 - 0x93accff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93aeb000 - 0x93afbff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x93afc000 - 0x93b08ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x93b5a000 - 0x93cfefeb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x93cff000 - 0x93d79fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93d7a000 - 0x93d8effb 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
    0x93d8f000 - 0x93d92fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x93d93000 - 0x93e2bfe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93e2c000 - 0x9400efff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9400f000 - 0x94010ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x94011000 - 0x94061fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94062000 - 0x940bafe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x940bb000 - 0x940c5ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x940c6000 - 0x940fcfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x940fd000 - 0x9416cff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9416d000 - 0x94173ff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94635000 - 0x9463cfff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9463d000 - 0x94868ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94869000 - 0x9489aff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x9489b000 - 0x948d3ff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x948d4000 - 0x949b1ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94cbe000 - 0x94cdefe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x94cdf000 - 0x94d39ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94d4d000 - 0x94f09fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94f2c000 - 0x94f2cff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94f2d000 - 0x94fdafe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x94fdb000 - 0x94fddff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94fde000 - 0x95013ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95014000 - 0x95053ff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95196000 - 0x951ecff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x951ed000 - 0x9522dff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9522e000 - 0x952aefeb 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
    0x952af000 - 0x952d1fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x952d2000 - 0x95318ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x95388000 - 0x95436ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95437000 - 0x9544bfe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9544c000 - 0x95450ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x955ab000 - 0x95e89ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95e8a000 - 0x95ea8ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95ea9000 - 0x96119ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x961d6000 - 0x961d6ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x961d7000 - 0x964fafef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9748a000 - 0x975c9fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x975ca000 - 0x975f1ff7 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
    0x97602000 - 0x97de54b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98611000 - 0x98621ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x98622000 - 0x98718ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98719000 - 0x9881afe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9881b000 - 0x9883bfe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x98850000 - 0x98c85ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98ce2000 - 0x98d32ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98d33000 - 0x98d57ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98e4e000 - 0x98efdff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x98efe000 - 0x98f09ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98f0a000 - 0x98f4efe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x98f90000 - 0x99049fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x9904a000 - 0x990ccffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x990cd000 - 0x99100ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9913b000 - 0x991b4ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x991ed000 - 0x991edff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9920e000 - 0x9920fff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99210000 - 0x992dafef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x992fa000 - 0x992faff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99344000 - 0x99347ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x99348000 - 0x99351ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99386000 - 0x99457fe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x99458000 - 0x9945cff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x99574000 - 0x995b5ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: Macmini1,1, BootROM MM11.0055.B08, 2 processors, Intel Core Duo, 1.66 GHz, 2 GB, SMC 1.3f4
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x86), Atheros 5424: 2.0.19.8
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: FUJITSU MHV2080BHPL, 74.53 GB
    Parallel ATA Device: MATSHITADVD-R UJ-846
    USB Device: Hub, 0x05ac (Apple Inc.), 0x9131, 0xfd600000
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1294, 0xfd610000
    USB Device: External USB HDD, 0x0480, 0xa001, 0xfd630000
    USB Device: Apple Cinema HD Display, 0x05ac (Apple Inc.), 0x9223, 0xfd620000
    USB Device: Hub in Apple Pro Keyboard, 0x05ac (Apple Inc.), 0x1003, 0x3d100000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0x3d110000
    USB Device: Apple Pro Keyboard, 0x05ac (Apple Inc.), 0x020b, 0x3d130000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x7d200000
    USB Device: USB MFP, 0x04b8 (Seiko Epson Corp.), 0x080d, 0x5d100000
    FireWire Device: ST3160021A, DMI, Up to 400 Mb/sec
    FireWire Device: unknown_device, Unknown

  • CAN I USE THE ONLINE WORKSPACE FOR MY COMPAY'S DATABASE MANAGEMENT?

    Hi Forum,
    I am the Database Management System Administrator for the company I am working with. The company has branches in other regions of the country. In order to control and centralize its operational information management I have realized the need for the database to have internet link to help achieve the purpose. I have tried to connect my apex 11g to the internet but I have not succeeded. I am thinking of an alternative of using the Oracle Online Worskspace. Would Oracle allow me to use it? I shall also be glad if someone can still help me to configure my apex database to be accessed on the internet that can be used to manage large geographical operations.
    May God bless you and OTN forum
    Regards,
    Godis-Tei

    Godis-Tei wrote:
    I am the Database Management System Administrator for the company I am working with. The company has branches in other regions of the country. In order to control and centralize its operational information management I have realized the need for the database to have internet link to help achieve the purpose. I have tried to connect my apex 11g to the internet but I have not succeeded. I am thinking of an alternative of using the Oracle Online Worskspace. Would Oracle allow me to use it? No. The following conditions apply to use of apex.oracle.com:
    >
    This service is for demonstration purposes only. Use of this system to store sensitive data is prohibited.
    >
    and
    >
    This hosted Oracle Application Express instance is provided as a free demonstration service to anyone. Use of this system to store sensitive, offensive, unauthorized, or illegal data is prohibited. You are also prohibited from running production applications on this service.
    >
    May God bless you and OTN forumIn line with the OTN Terms and Conditions, please do not use religious language in the forum. It is irrelevant and likely to cause offence to users who do not share your beliefs.

  • How to dispaly large images?

    Hi!
    I have a simple problem, hope somebody could help me!
    I would like to display images from a LONG RAW type column of an Oracle database (Oracle8i Enterprise Edition Release 8.1.6.0.0) in a BC4J application. I use JDEV 9.0.3.
    The wizard generated entity object's attribute type for the image field is raw, i could not find the LONG RAW type in the java types. The maximun size of the raw type is 2000 bytes, so my app can not handle and display large images. How could i solve this problem? Pls help me!
    I have read the otn forum tips, but they did not help me :((
    Thanx
    Bence

    You may try mapping your column to BlobDomain!
    If that doesn't fit the need, you'd have to create a similar LobDomain (see BlobDomain.java source in bc4jdomorcl.zip) for LongRawDomain so that it uses streamnig apis to fetch data from jdbc rather than using a column-value fetch.

  • Database management systems trends

    Hello,
    Is there any official document which tries to predict the database management system trends? Like cloud computing? Distributed database systems?
    Thank you.

    Is there any official document which tries to predict the database management system trends? Like cloud computing? Distributed database systems?I doubt that there is any official document. Every analyst may see it differently.
    For example, my vision is -
    DBMSes move in various aspects simultaneously, including
    cloud computing and distributed database systems.
    Other aspects are:
    - standartisation of SQL language,
    - Very Large DB
    - using specific hardware and DB architecture for performance,
    - embedded DBs,
    - in memory DBs,
    - 100% online administration and management transparent to users,
    - automatic "self" administration and management
    - very smart optimizers
    - new data types (XML)
    - structure-less DBMS
    - DBMS that organizes data and detects data relationships automatically
    ...

  • Database Management Copy Data - Replace Option

    Can anyone provide info on how this works? we are using 9.2.1
    When using database management to copy data, when using the replace option, even if we only pick a few accounts to copy, it is erasing all data in the Target scenario. Does the replace option clear all data by default before copying in the selected data?
    we tried to use the Merge option but apparently that doesn't always work for some reason-could be user error. not sure.
    Thanks
    Wags

    Hey Wags- this is expected functionality of the Replace method. It clears all custom/account data for the load entity/year/period combo prior to do the load. For example, if there is P&L data in entity A in Jan 2010 and you load $500 to it in a Sales account, all the rest of the P&L data will be cleared and you'll just have $500 in the Sales account.
    Here's stuff from the guide:
    Several options are available for loading data into an application. You can merge, replace, or
    accumulate the data into the application. You select one of these options for each load process.
    Note:
    You cannot load calculated data into an application.
    Merge
    Select this option to overwrite the data in the application with the data from the file.
    For each unique point of view that exists in the data file and in the application, the value in the
    data file overwrites the data in the application.
    Note:
    If you have multiple values in the file for the same point of view, the system loads only the value
    for the last entry.
    If you select the Accumulate Within File option in conjunction with the Merge option, the system
    adds all values for the same point of view in the data file, and overwrites the data in the application
    with the total.
    For each unique point of view that is in the data file but does not have a value in the application,
    the value from the data file is loaded into the application.
    Replace
    For each unique combination of scenario, year, period, entity, and value in the data file, the
    system first clears all corresponding values from the application, then loads the value from the
    data file.
    Note:
    If you have multiple values in the file for the same unique combination of dimensions, the system
    loads only the value for the last entry.
    If you select the Accumulate Within File option in conjunction with the Replace option, the
    system clears the value from the application, adds all values for the same point of view in the
    data file, and loads the total.
    You can achieve the same result as using the Replace option with the Accumulate Within File
    option by using the Database Management module. You can organize the data in the file into
    groups based on Scenario, Year, Entity, Value, and Period.
    Use the Clear Data tab in the Database Management module to clear each unique combination
    of these dimensions, selecting all accounts including system accounts. Enter the data manually
    in a data grid, or load or copy the data into the application using the Merge or Accumulate load
    options. When you perform the Clear operation for a period in a subcube, data, cell text, and
    line item detail are cleared, but cell attachments are not cleared.
    Note:
    You may need to create several small files to load a data file using the Replace mode, especially
    if the data is very large or if the file contains ownership data. An error message is displayed if the
    file is too large when you try to load it.
    Replace by Security
    This option enables you to perform a data load in Replace mode even if you do not have access
    to all accounts. When you perform the Clear operation for a period in a subcube, only the cells
    to which you have access are cleared. Data, cell text, and line item detail are cleared, but cell
    attachments are not cleared.
    Accumulate
    For each unique point of view that exists in the data file and in the application, the value from
    the load file is added to the value in the application.
    Note:
    Data for system accounts is not accumulated.
    Accumulate Within File
    You can use the Accumulate Within File option in conjunction with the Merge and Replace
    options. This option accumulates the data in the file first and loads the totals into the application
    based on the load option selected.
    File Contains Ownership Data
    If the file contains ownership data, you must indicate this by selecting File Contains Ownership
    Data. If you do not select this option and the data file contains ownership or shares information,
    an error occurs when you load the file.

  • Creating a custom DataBuffer for very LARGE images

    I would like to work with very large images (up to 100MB) in an application.
    Only for image manipulating, not rendering for screen.
    My idea is to write my own DataBuffer which use Hard Drive,maybe with some "intelligent" swapping.
    But At first performance doesn�t matter.
    I try this:ColorModel cm = ColorModel.getRGBdefault();
    SampleModel sm = cm.createCompatibleSampleModel(w,h);
    DataBuffer db =  new  myDataBufferInt(size);
    WritableRaster raster = Raster.createWritableRaster(sm,db,null);But somebody don�t like myDataBuffer
    and of course it is type DataBuffer.TYPE_INTthrows:java.awt.image.RasterFormatException: IntegerComponentRasters must haveinteger DataBuffers
    at sun.awt.image.IntegerComponentRaster.<init>(IntegerComponentRaster.java:155)
    at sun.awt.image.IntegerInterleavedRaster.<init>(IntegerInterleavedRaster.java:111)
    at sun.awt.image.IntegerInterleavedRaster.<init>(IntegerInterleavedRaster.java:78)
    at java.awt.image.Raster.createWritableRaster(Raster.java:980)
    public  class myDataBufferInt extends DataBuffer {
    public myDataBufferInt(int size) {
            super(TYPE_INT,size);
        . . . }The question is how to manage large image?
    What kind of subclasses I have to write?
    Thank you all
    P.S: I don�t want to use: java -Xmsn -Xmxn

    i have the same problem let me know please if you have an answer?

  • WLSE SQL1032N No start database manager command was issued

    Hello,
    i have a problem with my WLSE device.
    it seens like db2 database fails to start.
    2004@WLSE:diag all
    DIAG: IMAGE
    *** PASS: Software image verification passed. ***
    DIAG: BIOS
    *** Drive model does not require BIOS patch. ***
    DIAG: DMA
    Checking disk for DMA errors *** PASS: NO DMA IO errors found. ***
    Checking disk sectors for errors ...*** PASS: NO disk sector errors found. ***
    DIAG: DB2CLEAN *** PASS: No dump files found. ***
    DIAG: DB2VERIFY *** FAIL: Cannot connect to DB2. Integrity verification failed. ***
    DIAG: SERIALNO *** Serial Number -???????? ***
    2004@WLSE:service status
    Process= TFTP
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WirelessSvcMgr
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSEjobvm
    State = Running but busy flag set
    Info = WLSEjobvm started.
    Process= WLSEFaults
    State = Running normally
    Info = WLSEFaults is ready.
    Process= CDPbrdcast
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSEIdleServer
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WLSERepository
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= HaMibDaemon
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= WebServer
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= Tomcat
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= ExcepReporter
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    Process= PerfMon
    State = Program started - No mgt msgs received
    Info = Application started by administrator request.
    snmpd (pid 1854) is running...
    Database test failed
    FAIL Version and product query result was:
    SQL1032N No start database manager command was issued. SQLSTATE=57019
    Any idea??? is it possible to start the database manager without restoring the database?
    Thank you in advanced.

    This happens when the database of WLSE is corrupted. Use " reinitdb " command to reinitialize the database. Then try to stop the service for 5 mins and start again.

  • Large image popup

    Hi,
    Does any one know of an extension which creates a large image
    popup on mouse over and it works with images from a database
    too.

    Hi Zabeth,
    Thanks for your reply!
    How exactly can i define the hotspot and not the image as the rollover? I guess i replace the:
    <a class="thumbnail" href="#thumb"><img src="sales1.1_thumb.jpg" width="80px" height="60px" border="0" /><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    with something like:
    <a class="thumbnail" href="#thumb"><map name="Map" id="Map"> <area shape="rect" coords="33,140,114,260" href="#" /></map><span>
    <img src="sales1.2.jpg" />
    </span>
    </a>
    However this obviously doesnt work! Am i on the right direction!?
    Thanks

Maybe you are looking for

  • GL Balances report

    Hi Friends, When we check the balance via transaction FS10N for some account( exp: 55000,552000) the closing balance 2008 and the opening blance 2009 are not the same which is not the case when we check with TC FBL3N( for Ccode 0900 & 9170 & 9183 ON

  • Unable to write to External Hard Drive, Disk Utility options don't work.

    I am a recent new user of Apple Mac from when I bought this Macbook Air 3 months ago. Nice machine, but difficult to get the hang of. Specific problem I'd like help with please is to enable me to write to my Samsung S2 Portable Hard Drive (500GB) I c

  • Is the 15,4" MBP graphics issue fixed? (9600M)

    Hi! Is the graphics issue with the 9600M card fixed on the Macbook Pro 15,4"'s that are being sold now? I'm planning on upgrading from a white macbook 2,1 (with Intel GMA950 graphics) to get better graphics and a bigger screen, but I don't want it to

  • Connecting to 1440 x 900 TV

    I bought a 2012 Mini a month ago.  I needed my monitor to read various account settings from my old mini, so I used an HDMI cable to connect the new Mini to a 1440 x 900 TV. Reading information from the TV screen was a hassle because black text came

  • FCP/Adobe Premier Workflow

    I have a friend who has done some work on his PC using Adobe Premiere and now wants me to finish up the editing for him. The problem is that I have a PowerMac and use Final Cut Studio. Is there any way that the work that he's done on Premiere can be