CS5.5 Mac crashes every time I change Window Size in Design View

I'm using DW CS5.5 (version 11.5 build 5344) in Lion 10.7.3.  I added in a couple of window sizes (in Preferences) that correspond to iPhone and Android phones - 320x480, 480x320, 480x800, 640x960.  The 640x960 one works, as does a 592w one that came with Dreamweaver.  Any of the other ones, though, cause the app to hang in this one particular file I'm editing.  However, in the simple jQuery Mobile starter page DW creates, these resolutions work fine.  This appears to be related to some CSS code that I have inside of a CSS media selector:
@media screen and (max-width:480px)
There is also a corresponding
@media screen and (min-width:481px)
in the CSS.
To test this, I created a window size of 481x320, and that seemed to work completely fine without crashing DW. The 480x320 one crashes DW.  I assume that's because it's using the different CSS section.
Pasted below is the CSS code that goes along with the section that seems to cause the crashing:
@media screen and (max-width:480px) {
  .column {
    margin: 1em 0;
    border-bottom: 1px dashed #7b96bc;
  #visit, #points, #main {
    width: 100%;
    .taplist li {
    width:50%;
  #map {
    display:none;
  .header {
    display:none;
To further test this out, I commented out all of the code within that block.  The window sizes did not cause it to crash then.  I then started to add back in pieces of code to see when it began to crash.  The crashing seemed limited to the bottom two (#map and .header), although it wasn't consistent.  In some situations the window sizes would work and in others they would crash.  I didn't test every combo just because it took a lot of time.  With both of those in place, though, every one of the 480 or less sizes crashed.
Notable, the #map section is commented out in the HTML, however including that in the CSS still causes intermittent crashing.
I also deleted my cache file to see if that was it, and no luck.
Full code of the two files below (one HTML, one CSS)
ontap.html
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> 
    <title>On Tap Now at The Splendid Walrus</title>
  <link rel="stylesheet" type="text/css" href="taps.css" />
</head>
<body>
<div class="navigation">
      <ul>
      <li><a href="/">Home</a></li>
      <li><a href="ontap.html">On Tap Now</a></li>
      <li><a href="about.html">About Us</a></li>
    </ul>
</div>
<div class="header"><p>[The splendid walrus surveys his domain!]</p></div>
<h1>On Tap Now at The Splendid Walrus</h1>
<div id="ontap" class="column">
  <h2>On tap this month:</h2>
  <ul class="taplist">
    <li><img src="brews_images/bensons_bubbler.jpg" alt="Bensons Bubbler"></li>
    <li><img src="brews_images/chapman_lownsdale.jpg" alt="Chapman Lownsdale"></li>
    <li><img src="brews_images/crystal_springs.jpg" alt="Crystal Springs"></li>
    <li><img src="brews_images/hoyt.jpg" alt="Hoyt"></li>
    <li><img src="brews_images/mill_ends.jpg" alt="Mill Ends"></li>
    <li><img src="brews_images/milo_mciver.jpg" alt="Milo McIver"></li>
    <li><img src="brews_images/mount_tabor.jpg" alt="Mount Tabor"></li>
    <li><img src="brews_images/omsi.jpg" alt="OMSI"></li>
    <li><img src="brews_images/oxbow.jpg" alt="Oxbow"></li>
    <li><img src="brews_images/pittock.jpg" alt="Pittock"></li>
    <li><img src="brews_images/powells.jpg" alt="Powells"></li>
    <li><img src="brews_images/sandy_river.jpg" alt="Sandy River"></li>
    <li><img src="brews_images/sauvie_island.jpg" alt="Sauvie Island"></li>
    <li><img src="brews_images/the_grotto.jpg" alt="The Grotto"></li>
    <li><img src="brews_images/tryon_creek.jpg" alt="Tryon Creek"></li>
    <li><img src="brews_images/wells_fargo.jpg" alt="Wells Fargo"></li>
  </ul>
</div>
<div id="visit" class="column">
  <h2>Visit Us!</h2>
  <dl>
    <dt>Location</dt>
    <dd>1543 SW Pretend Street<br />
    Portland, OR 97201</dd>
    <dt>Hours</dt>
      <dd>
        <dl>
          <dt>M-F</dt>
          <dd>Until midnight</dd>
          <dt>Sa-Su</dt>
          <dd>Until 1AM*<p><em><small>*At least</small></em></p></dd>
        </dl>
      </dd>
    <dt>Call us</dt>
    <dd>+1 (503) 555-1212</dd>
  </dl>
  <!--
  <iframe id="map" width="300" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=334+NW+11th+Ave,+Portland,+OR+ 97209&aq=&sll=37.0625,-95.677068&sspn=58.164117,80.332031&vpsrc=0&ie=UTF8&hq=&hnear=334+NW +11th+Ave,+Portland,+Oregon+97209&t=m&ll=45.525472,-122.68218&spn=0.01804,0.025749&z=14&ou tput=embed"></iframe>
  -->
</div>
<div class="footer">
  <p>See you soon! Love, The Splendid Walrus</p>
</div>
</body>
</html>
taps.css
/* Everything Fluid */
/* Simple reset */
          margin: 0;
          padding: 0;
* Color, typography and basic layout
* (Shared for all devices and clients)
* Colors:
* - #f9f3e9 -> light cream (background)
* - #594846 -> Dark brown (body text, rules)
* - #42628F -> Dark blue (link text)
* - #7b96bc -> Medium-light blue (navigation and footer background)
body {
          background: #f9f3e9;
          color: #594846;
          font: 100% "Adobe Caslon Pro", Georgia, "Times New Roman", serif;
a, a:visited {
  color: #42628f;
p {
  margin: 0.5em 0.25em;
h1 {
  font-size: 1.75em;
          border: solid #594846;
          border-width: 2px 0;
          padding: 0.25em;
  text-align: center;
  font-variant: small-caps;
h2 {
  text-align: center;
  font-variant: small-caps;
dl {
  margin: 0 0.5em;
dt {
  font-weight: bold;
  margin: 0.5em 1em 0.5em 0;
  border-bottom: 1px dashed #7b96bc;
.intro {
  font-size: 1.15em;
  line-height: 1.3em;
  text-align: justify;
  margin: 0.5em;
  font-weight: bold;
.navigation {
  background-color:#7b96bc;
  border-bottom: 2px solid #594846;
.navigation ul li {
  text-align: center;
  display: block;
  float: left;
  padding: 0.25em 0;
.navigation li a {
  color: #f9f3e9;
  font-variant: small-caps;
  text-decoration: none;
.header p {
  margin-left: -1000px;
  margin-top: 0;
#points ul {
  list-style-image: url('images/point.png');
  margin: 0.5em 0 1em 0.5em;
  padding-left: 1em;
#points ul li {
  margin: 0.5em 1em;
.footer {
  background-color: #7b96bc;
  color: #f9f3e9;
  text-align: center;
  padding: .5em 0;
  font-style: italic;
/* Structure */
/* Common Structural Rules */
.header, .footer {
  clear: both;
.header {
  background:url('images/taps.jpg') repeat-x;
  height: 300px;
.navigation {
  min-height: 25px;
img, object {
  max-width: 100%;
.navigation ul li {
  width: 33.333%;
.header, .footer, .navigation {
  width: 100%;
/* Brews List */
.taplist li {
  display:block;
  float:left;
  text-align:center;
  width:33%;
.taplist img {
  width:100%;
  margin-bottom:5px;
#ontap, #ontap ul, #ontap ul li {
  background:#fff;
/* Wider viewports/higher resolutions (e.g. desktop)  */
@media screen and (min-width:481px) {
  .column {
    margin: 10px 1.04166667% 0 0;
  #visit {
    width: 31.25%;
    float: left;
  #points {
    width: 25%;
    float: right;
  #main {
    margin: 10px 27.0833333% 0 26.0416667%;
  #ontap {
    margin: 10px 0 0 32%;
/* Mobile/lower-resolution devices */
@media screen and (max-width:480px) {
  .column {
    margin: 1em 0;
    border-bottom: 1px dashed #7b96bc;
  #visit, #points, #main {
    width: 100%;
  .taplist li {
    width:50%;
  #map {
    display:none;
/*  .header {
    display:none;

Thanks very much Chris for pointing me in the right direction.  I downloaded FontDoctor, and it found one questionable font which I deleted.  However CS5 continues to crash when selecting the Design Workspace. So I followed the steps outlined in the Adobe document you linked.  When I got to the point of downloading the FontTest.jsx file and ran it, CS5 crashed right away without writing any log file.  I turned on app.displayDialogs = DialogModes.YES, and CS5 is crashing with a TypeError: undefined is not an object. So I don't know if this is related to my original problem, or not.  Any thoughts on how to proceed to get the FontTest script to run properly?  I took all of the normal defaults when I installed CS5 (e.g., didn't select any alternate paths, don't have any add-ons installed, etc.).

Similar Messages

  • Cisco IME express 7.1.1, service crashes every time I reboot Windows

    Cisco IME express 7.1.1, service crashes every time I reboot Windows
    Event Type:    Error
    Event Source:    Application Error
    Event Category:    (100)
    Event ID:    1004
    Date:        12/14/2011
    Time:        7:37:35 AM
    User:        N/A
    Computer:    ABN-WELLS-HP
    Description:
    Faulting application IMEServer.exe, version 0.0.0.0, faulting module unknown, version 0.0.0.0, fault address 0x00000000.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 41 70 70 6c 69 63 61 74   Applicat
    0008: 69 6f 6e 20 46 61 69 6c   ion Fail
    0010: 75 72 65 20 20 49 4d 45   ure  IME
    0018: 53 65 72 76 65 72 2e 65   Server.e
    0020: 78 65 20 30 2e 30 2e 30   xe 0.0.0
    0028: 2e 30 20 69 6e 20 75 6e   .0 in un
    0030: 6b 6e 6f 77 6e 20 30 2e   known 0.
    0038: 30 2e 30 2e 30 20 61 74   0.0.0 at
    0040: 20 6f 66 66 73 65 74 20    offset
    0048: 30 30 30 30 30 30 30 30   00000000

    Upgrade to 7.2.1  seems to have corrected problem

  • ITunes crashes every time it accesses windows explorer

    I've got a problem with iTunes crashing every time I try to sync photos to my iPhone (3GS, OS4.0). When I hit the change folder button to select the folder that I want to sync from it immediately crashes. I've had this problem with my iPad as well. Any ideas what causes it and how to get my photos to sync?
    Using Windows 7, 64 bit.
    Message was edited by: dkingsley

    Maybe it's down to internet speed - as I just realised my speed had dropped to virtually nil.
    It's now back up to a fiull 1.86mbps upload.
    We'll see...........

  • IPhoto 09/ SL Crashes every time I change number of months

    I am creating a calendar and wanted to change number of months from 12 to , say 14. iPhoto crashes every time.
    I have of course submitted crash reports.
    Any workarounds apart from starting from scratch?

    One thing to always try is renewing the iPhoto preference file - quit iPhoto and delete the preference file -- "your user name" ==> library ==> preferences ==> com.apple.iPhoto.plist -- restart your system and launch iPhoto - reset any user preferences you have changed and reset any personal preferences you have changed and if you have moved the iPhoto library repoint to it
    LN

  • Bug Report: DW CS5.5 Crashes Every Time On An Image Map

    I am posting this in lieu of contacting Adobe support. I went to my account to send Adobe a bug report and was told I needed to contact support via phone. That's pretty crappy. As a licensed user who's owned it less than three months, there's no direct path to tell you guys that your software is broken?
    Here's the deal: I am working on an HTML landing page with one image map attached to one image. Literally, every time I make a modification to the code near the image (tied to the image map) then click into the live preview window, Dreamweaver CS5.5 crashes like a 70-year old on a bar of soap on the floor of the shower. It crashes hard. My only relief is to save the file before clicking into the live preview window. That's my only workaround to the problem.
    But I'm left amazed that I can crash it every single time over an image map, flicking from the code to the preview pane. You would think that at version 11.5, a minor thing like that wouldn't hemorrage the supposed creme de la creme of web design software.
    Here's the code I'm editing that causes it to crash:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
              <?php
              require_once("/var/www/html/c/index.php");
              $recip_name = $subscriber['first_name'].' '.$subscriber['last_name'];
              ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/c/print.css" type="text/css" rel="stylesheet" media="print">
    <title>Membership Special - No Commitment</title>
    </head>
              <?php // Google Link Tracking Code ?>
              <script type='text/javascript' src='/c/google-analytics-code.js'></script>
              <?php // End Google Link Tracking Code ?>
        <!-- Source File -->
              <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css">
        <style type="text/css">
                        body {font:normal 14px/1.25em Georgia, "Times New Roman", Times, serif;}
                        h1,h2,h3,h4,h5,h6 {font-weight:bold;color:#333333;}
                        h1 {font:normal 28px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h2 {font:normal 24px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h3 {font:normal 20px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h4 {font:normal 16px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h5 {font:normal 12px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h6 {font:normal  8px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        a, a:link, a:visited, a:active {color:#0055FF;}
                        a:hover {color: #002AFF;}
                        #wrapper {margin:0 auto;width:432px;}
                        #header, #footer {margin:20px auto;text-align:center;position:relative;}
                        #footer {margin:40px auto;}
                        #coupon {position:relative;}
                        #coupon, #coupon img {margin:0 auto;text-align:center;}
                        .personalization {position:absolute;width:100%;text-align:center;text-transform:uppercase;}
                        .printcoupon {text-transform:uppercase;}
              </style>
    <body>
    <div id="wrapper">
    <div id="header">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    <div id="coupon">
              <img src="images/19415coupon-01.jpg" width="432" height="432" />          <!-- <div class="personalization" style="left:0;top:818px;"><h1><?php echo $recip_name; ?></h1></div> -->
      <img src="images/19357coupon-02.jpg" width="550" height="602" usemap="#imagemap" class="dontprint"/>
    </div>
    <div id="footer">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    </div>
    <map name="imagemap">
              <area coords="29,69,521,197" shape="rect" href="javascript:window.print();">
              <area coords="29,212,521,339" shape="rect" href="http://www.google.com" target="_blank" onClick="recordOutboundLink(this, 'Landing Page', 'http://www.google.com');return false;">
                        </map>
    </body>
    </html>

    Bug Report and Feature Request https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • ITunes crashes every time it changes a track on a cd

    iTunes keeps crashing every single time it changes a track on a cd record ( the round plastic things that won't fit on my ipod)
    They say a crash report is more than a thousand words, so here you go:
    Process:         iTunes [2525]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.6.3 (10.6.3)
    Build Info:      iTunes-10632501~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [334]
    PlugIn Path:       /Users/USER/Library/iTunes/iTunes Plug-ins/AudioScrobbler.bundle/Contents/MacOS/AudioScrobbler
    PlugIn Identifier: fm.last.iTunes Scrobbler
    PlugIn Version:    4.0.0 (4.0.0.0)
    Date/Time:       2012-07-13 18:57:13.648 +0100
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          171597 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  752465 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      4A0BD7C6-9AC8-4863-941B-2478DDDBA596
    Crashed Thread:  25
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[2525]: garbage collection is OFF
    Assertion failed: (m_initialPlayCount != -2), function playCountDifference, file /Users/Coffey/Projects/lastfm/plugins-1.5/iTunes/common/ITunesTrack.cpp, line 397.
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.HIToolbox                     0x00007fff941834d3 RunCurrentEventLoopInMode + 277
    6   com.apple.HIToolbox                     0x00007fff9418a781 ReceiveNextEventCommon + 355
    7   com.apple.HIToolbox                     0x00007fff9418a60e BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x00007fff92da5e31 _DPSNextEvent + 659
    9   com.apple.AppKit                        0x00007fff92da5735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    10  com.apple.AppKit                        0x00007fff92da2071 -[NSApplication run] + 470
    11  com.apple.iTunes                        0x000000010e63c7af 0x10e639000 + 14255
    12  com.apple.iTunes                        0x000000010e63c5f0 0x10e639000 + 13808
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff951ab7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff96c1678a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff96c1531a _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff951aabca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfea2a6 _pthread_cond_wait + 890
    2   com.apple.iTunes                        0x000000010e642886 0x10e639000 + 39046
    3   com.apple.iTunes                        0x000000010e652ec7 0x10e639000 + 106183
    4   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    5   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff951aadf2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff926d5c8b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e65b18e 0x10e639000 + 139662
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff951aae42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8cf9cdea nanosleep + 164
    2   libsystem_c.dylib                       0x00007fff8cf9cc2c sleep + 61
    3   fm.last.iTunes Scrobbler                0x0000000114b23e0f IPod::waitForIpodBackup() const + 273
    4   fm.last.iTunes Scrobbler                0x0000000114b23732 IPod::newFromUsbDevice(unsigned int, IPod::deviceType) + 1446
    5   fm.last.iTunes Scrobbler                0x0000000114b1312c IPodDetector::onIPhoneDetected(void*, unsigned int) + 54
    6   fm.last.iTunes Scrobbler                0x0000000114b17b16 IPodDetector::setupDetection() + 10096
    7   fm.last.iTunes Scrobbler                0x0000000114b1878c IPodDetector::threadEntry(void*) + 232
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.DiscRecording                 0x00007fff90098ebb DRWorkLoop::WorkLoop() + 231
    7   com.apple.DiscRecording                 0x00007fff90098dc1 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 9
    8   com.apple.DiscRecording                 0x00007fff90098aa0 DRThreadObject::StartRoutine(DRThreadObject*) + 128
    9   com.apple.DiscRecording                 0x00007fff90098935 DRThreadObject::SymbolRoutine(DRThreadObject*) + 9
    10  libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    11  libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff951aabca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfea274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010e642844 0x10e639000 + 38980
    3   com.apple.iTunes                        0x000000010e642780 0x10e639000 + 38784
    4   com.apple.iTunes                        0x000000010eff2a10 0x10e639000 + 10197520
    5   com.apple.iTunes                        0x000000010eff2a35 0x10e639000 + 10197557
    6   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    7   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.iTunes                        0x000000010e72b517 0x10e639000 + 992535
    3   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    4   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff951aa47a __accept + 10
    1   com.apple.iTunes                        0x000000010ee5c13b 0x10e639000 + 8532283
    2   com.apple.iTunes                        0x000000010ee42ee9 0x10e639000 + 8429289
    3   com.apple.iTunes                        0x000000010ee4308c 0x10e639000 + 8429708
    4   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    5   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff951aa47a __accept + 10
    1   com.apple.iTunes                        0x000000010ee5c13b 0x10e639000 + 8532283
    2   com.apple.iTunes                        0x000000010ee42ee9 0x10e639000 + 8429289
    3   com.apple.iTunes                        0x000000010ee4308c 0x10e639000 + 8429708
    4   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    5   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff951aabca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfea274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010ee9c93f 0x10e639000 + 8796479
    3   com.apple.iTunes                        0x000000010ee9c7c7 0x10e639000 + 8796103
    4   com.apple.iTunes                        0x000000010ee9c871 0x10e639000 + 8796273
    5   com.apple.iTunes                        0x000000010e663a22 0x10e639000 + 174626
    6   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    7   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff951aabca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfea274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010e642844 0x10e639000 + 38980
    3   com.apple.iTunes                        0x000000010e642780 0x10e639000 + 38784
    4   com.apple.iTunes                        0x000000010e8e3e35 0x10e639000 + 2797109
    5   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    6   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 19:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.audio.CoreAudio               0x00007fff9868eeb3 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, unsigned int) + 93
    3   com.apple.audio.CoreAudio               0x00007fff9868ef05 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, unsigned int) + 37
    4   com.apple.audio.CoreAudio               0x00007fff98688568 HALC_ProxyIOContext::IOWorkLoop() + 888
    5   com.apple.audio.CoreAudio               0x00007fff98688151 HALC_ProxyIOContext::IOThreadEntry(void*) + 73
    6   com.apple.audio.CoreAudio               0x00007fff9868800c HALB_IOThread::Entry(void*) + 78
    7   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff951a967a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff951a8d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff9268450c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff9268cc74 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff9268c486 CFRunLoopRunSpecific + 230
    5   com.apple.CoreFoundation                0x00007fff9269c19f CFRunLoopRun + 95
    6   com.apple.iTunes                        0x000000010e642697 0x10e639000 + 38551
    7   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    8   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff951ab192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfe8594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8cfe9b85 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff951aadf2 __select + 10
    1   com.apple.AirTrafficHost                0x0000000115e5ad08 _readDictionary + 228
    2   com.apple.AirTrafficHost                0x0000000115e5b431 ATProcessLinkCopyMessageFromChild + 150
    3   com.apple.AirTrafficHost                0x0000000115e5a371 ATHostConnectionReadMessage + 272
    4   com.apple.iTunes                        0x000000010e7f0490 0x10e639000 + 1799312
    5   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    6   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff951aabca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8cfea274 _pthread_cond_wait + 840
    2   com.apple.iTunes                        0x000000010ee9c93f 0x10e639000 + 8796479
    3   com.apple.iTunes                        0x000000010ee9c7c7 0x10e639000 + 8796103
    4   com.apple.iTunes                        0x000000010ee9c871 0x10e639000 + 8796273
    5   com.apple.iTunes                        0x000000010e663a22 0x10e639000 + 174626
    6   com.apple.iTunes                        0x000000010eecc29c 0x10e639000 + 8991388
    7   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff951ab192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8cfe8594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8cfe9b85 start_wqthread + 13
    Thread 25 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff951aace2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8cfe87d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x00007fff8cfd9a7a abort + 143
    3   libsystem_c.dylib                       0x00007fff8d00c5de __assert_rtn + 146
    4   fm.last.iTunes Scrobbler                0x0000000114b08e41 ExtendedITunesTrack::playCountDifference() const + 81
    5   fm.last.iTunes Scrobbler                0x0000000114b06add ITunesPlaysDatabase::sync(void*) + 843
    6   libsystem_c.dylib                       0x00007fff8cfe68bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8cfe9b75 thread_start + 13
    Thread 25 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000118a71778  rdx: 0x0000000000000000
      rdi: 0x000000000001e01f  rsi: 0x0000000000000006  rbp: 0x0000000118a717a0  rsp: 0x0000000118a71778
       r8: 0x00007fff7c1ebfb8   r9: 0x000000000000018d  r10: 0x00007fff951aad0a  r11: 0xffffff80002da8d0
      r12: 0x0000000114b2b6a0  r13: 0x0000000110243000  r14: 0x0000000118a72000  r15: 0x0000000114b2b6b8
      rip: 0x00007fff951aace2  rfl: 0x0000000000000246  cr2: 0x0000000110243000
    Logical CPU: 0
    Binary Images:
           0x10e639000 -        0x10f7e3ff7  com.apple.iTunes (10.6.3 - 10.6.3) <60A47696-C8BC-97A5-1E84-5C56F064E0B7> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x10faad000 -        0x10fb32fff  com.apple.iTunes.iPodUpdater (10.4 - 10.4) <DF57EBE4-8375-BFDE-F5A1-FD92666E1B9E> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x10fb83000 -        0x10fbaffff  com.apple.avfoundationcf (2.0 - 63.12) <88CB602F-688C-36AB-BF23-03B134490126> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x10fbe0000 -        0x10fbe6fff  com.apple.agl (3.2.0 - AGL-3.2.0) <AB0B5D3F-BA2A-3366-830A-EF9258C18276> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10fbef000 -        0x10fbf5fff  com.apple.iPod (1.7 - 19) <316D12C0-BB7B-30DC-97CE-33679C75E558> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x10fc00000 -        0x10ff2cff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x10ff53000 -        0x10ff8aff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x10ffa3000 -        0x110079fe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x11009e000 -        0x1100e1ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5 - compatibility 1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x110650000 -        0x11065bfff  AppleIntelSNBVA (??? - ???) <A63FC78D-C976-3444-B435-E5080150502A> /System/Library/Extensions/AppleIntelSNBVA.bundle/Contents/MacOS/AppleIntelSNBV A
           0x110660000 -        0x110666ff7  com.apple.iokit.SCSITaskLib (3.2.0 - 3.2.0) <13CEA8A7-ABD4-3777-96CC-41EE3D2ED050> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
           0x1106b7000 -        0x110b99fef  com.apple.CoreFP (2.1.42 - 2.1.42) <6BEB912E-AB97-7DC1-54B6-750E3CB83675> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x111ca8000 -        0x11327efff  com.apple.CoreFP1 (1.14.42 - 1.14.42) <1EFEFC6F-B93E-D2C3-1A43-13A14FF4611D> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
           0x1144b7000 -        0x1144b9fff  com.apple.textencoding.unicode (2.4 - 2.4) <FD4695F4-6110-36C6-AC06-86453E30FF6E> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1144be000 -        0x1144c2fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x1144c7000 -        0x1144ccfff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1144d1000 -        0x1144f8fff  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <B0925A5D-5355-3ECE-BF2F-E576FF105F5A> /usr/lib/libssl.0.9.7.dylib
           0x114725000 -        0x114870ff7  com.apple.audio.units.Components (1.7.2 - 1.7.2) <DC2BA4BE-E91A-3680-A88A-D8A709C48909> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x114967000 -        0x1149fffef  com.apple.mobiledevice (507.11 - 507.11) <620AD57D-94D5-54A2-A1ED-0036CFCF6C70> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x114b01000 -        0x114b36ff7 +fm.last.iTunes Scrobbler (4.0.0 - 4.0.0.0) <A45BF24A-B6E6-3C8D-A2F2-84510630897E> /Users/USER/Library/iTunes/iTunes Plug-ins/AudioScrobbler.bundle/Contents/MacOS/AudioScrobbler
           0x114fe1000 -        0x1150c4fff  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <358B5B40-43B2-3F92-9FD3-DAA68806E1FF> /usr/lib/libcrypto.0.9.7.dylib
           0x11511a000 -        0x1152fbff7  com.apple.audio.codecs.Components (2.2 - 2.2) <1DF409FA-F561-31C5-900A-42F41B2C1856> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
           0x1157a2000 -        0x1158eefff  com.apple.AppleGVAFramework (2.2.80 - 2.2.80) <F5670F34-0DE1-30FE-A99E-6690C10D7013> /System/Library/PrivateFrameworks/AppleGVA.framework/AppleGVA
           0x115909000 -        0x115a31fff  com.apple.AppleIntelHD3000GraphicsVADriver (7.18.18 - 7.1.8) <FA6AB5CA-9E29-3F58-9C8E-C5453FC96D63> /System/Library/Extensions/AppleIntelHD3000GraphicsVADriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsVADriver
           0x115e58000 -        0x115fd9fe7  com.apple.AirTrafficHost (249 - 249) <1C9EE638-688F-C447-4726-BA80E9A09D90> /System/Library/PrivateFrameworks/AirTrafficHost.framework/AirTrafficHost
           0x116810000 -        0x1170cbff7  com.apple.CoreKE (1.1.1 - 1.1.1) <D27F4E9F-4FB8-0744-99E9-87A6108781DB> /System/Library/PrivateFrameworks/CoreKE.framework/CoreKE
        0x7fff6e239000 -     0x7fff6e26dbaf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff8c058000 -     0x7fff8c341ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8c342000 -     0x7fff8c426fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8c427000 -     0x7fff8c42cfff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8c434000 -     0x7fff8c450ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8c4d9000 -     0x7fff8c53bff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8c54f000 -     0x7fff8c7bdff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8c7be000 -     0x7fff8c7bfff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8c7c0000 -     0x7fff8c83bff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c83c000 -     0x7fff8cc69fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8cca9000 -     0x7fff8cd70ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8cd71000 -     0x7fff8cdc5ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8ce3d000 -     0x7fff8ce99ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8ce9a000 -     0x7fff8cf97ff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8cf98000 -     0x7fff8d075fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8d076000 -     0x7fff8d08aff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8d0d8000 -     0x7fff8d1d8fff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8d1d9000 -     0x7fff8d1e9ff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8d3a3000 -     0x7fff8d3a3fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8d3a4000 -     0x7fff8d3a7fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff8d3c5000 -     0x7fff8d3d4ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8d478000 -     0x7fff8d47afff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff8d47b000 -     0x7fff8d515ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d516000 -     0x7fff8d51fff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d72b000 -     0x7fff8d7b0ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8dc96000 -     0x7fff8dc97fff  libScreenReader.dylib (??? - ???) <853E88DB-DA8E-362E-83D1-419BFD635C70> /usr/lib/libScreenReader.dylib
        0x7fff8dc98000 -     0x7fff8dcaffff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8dcb0000 -     0x7fff8dd03fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8dd04000 -     0x7fff8dd44ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8dd51000 -     0x7fff8e184ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8e18f000 -     0x7fff8e1bfff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8e514000 -     0x7fff8e52aff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8e52b000 -     0x7fff8e52cfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8e52d000 -     0x7fff8e551fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8e590000 -     0x7fff8e5b4fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8e5b5000 -     0x7fff8e5bafff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8e5bb000 -     0x7fff8e8d7fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8e8db000 -     0x7fff8e97dfff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8e97e000 -     0x7fff8ea97fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8f232000 -     0x7fff8f25dfff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8f29f000 -     0x7fff8f2a5ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8f2a6000 -     0x7fff8ffddfff  com.apple.WebCore (7534.56 - 7534.56.5) <4E63291C-539E-32E3-8B1C-EA8E546B3159> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8ffde000 -     0x7fff90049ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff9004a000 -     0x7fff90057fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff9005e000 -     0x7fff90091ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff90092000 -     0x7fff90095fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff90096000 -     0x7fff90174fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff901ab000 -     0x7fff90205ff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff90206000 -     0x7fff905affef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff905b0000 -     0x7fff905b5fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff905b6000 -     0x7fff905d0fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff905d1000 -     0x7fff90684ff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff906b3000 -     0x7fff908ddfe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff908de000 -     0x7fff909e0fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff909e1000 -     0x7fff90a77ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff90fac000 -     0x7fff90facfff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff90fad000 -     0x7fff90fbaff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff90fbb000 -     0x7fff90ffdff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff91013000 -     0x7fff91019fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff91033000 -     0x7fff911bdfff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff911be000 -     0x7fff91685fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9168e000 -     0x7fff919b0fe7  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff919b1000 -     0x7fff919b7fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff919e0000 -     0x7fff91a49fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff91a4a000 -     0x7fff91adcff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff91add000 -     0x7fff91ae8ff7  com.apple.aps.framework (2.1 - 2.1) <D0C49BA6-A5FB-3DBD-AFCC-7B6F056A57A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff91c2c000 -     0x7fff91c2dff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff9230a000 -     0x7fff9235cff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff9235d000 -     0x7fff9235dfff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9235e000 -     0x7fff925d3ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff925d4000 -     0x7fff92601ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff92602000 -     0x7fff92653ff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff92654000 -     0x7fff92828ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff92839000 -     0x7fff9284bff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff92d9d000 -     0x7fff939a3ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff939a4000 -     0x7fff939a5fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff939a6000 -     0x7fff93a39ff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff93a3a000 -     0x7fff93a3afff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff93a3b000 -     0x7fff93a3bfff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff93a3c000 -     0x7fff93aacfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff93aad000 -     0x7fff93ad3fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff93ad4000 -     0x7fff93ad4fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff93ae3000 -     0x7fff93be8fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93cfc000 -     0x7fff93d3afff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff93d3b000 -     0x7fff93d68fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff93d69000 -     0x7fff93d6cff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff93d6d000 -     0x7fff93e4cff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff93e93000 -     0x7fff93e94ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff93e95000 -     0x7fff93ed0fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff93ee2000 -     0x7fff93ef9fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff93efa000 -     0x7fff93f5afff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff93f5e000 -     0x7fff93fb6fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff93fb7000 -     0x7fff93fe0fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff93fe1000 -     0x7fff93ff7fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff94172000 -     0x7fff94178fff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff94181000 -     0x7fff944adff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff944de000 -     0x7fff94614fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff9461a000 -     0x7fff9462dff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff9462e000 -     0x7fff947b8ff7  com.apple.WebKit (7534.56 - 7534.56.5) <BC22A17F-A32F-3D9B-926F-091A47C4B315> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff9483c000 -     0x7fff94843fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff9488e000 -     0x7fff948cdff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff948ce000 -     0x7fff948cffff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff94c25000 -     0x7fff94c2afff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff94c2b000 -     0x7fff95048ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff95049000 -     0x7fff95156fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff95157000 -     0x7fff95162ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff95163000 -     0x7fff95165fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff95166000 -     0x7fff95193fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff95194000 -     0x7fff951b4fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff951b5000 -     0x7fff951c0ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff951c1000 -     0x7fff951c1fff  com.apple.Carbon (153 - 153) <E37A515C-4C10-3102-8146-C0FBD458F8CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff951cf000 -     0x7fff95216ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff95217000 -     0x7fff9530cfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff9530d000 -     0x7fff95317ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff95318000 -     0x7fff95cb5c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff95cb6000 -     0x7fff95cf5fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff95d72000 -     0x7fff95dcfff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff95dd0000 -     0x7fff95e24fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff95e26000 -     0x7fff96099fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff9609a000 -     0x7fff960deff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff960df000 -     0x7fff960f4fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff9626d000 -     0x7fff96278ff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff9634d000 -     0x7fff9635bfff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff963b5000 -     0x7fff96403fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff96417000 -     0x7fff96451fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff96452000 -     0x7fff96493fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationSe

    I had the same problem, I realised it was my proxy server blocking itunes from going away and getting the track information. I unchecked *Itunes>preferences>general>automatically retrieve cd track names from the internet* and it stopped it crashing.

  • Elements 9.0.3 for Mac crashes every time I quit program

    I receive an error every time I quit PSE.  I always do File->Quit to leave the program, but even that causes a crash.  I have the crash file, but because of its length I don't want to post that here, but it might help someone understand the problem.  I always get the window that asks me if I want to send a report to Adobe, which I've done several times.  I don't want to do an update to PSE 10 or 11, since I'm afraid it would just update an already corrupted program and leave me no better than I am now.
    I'm using Lion, version 10.7.5.
    Any help would be appreciated.

    So, if I understand you correctly, it's not really crashing, just throwing out the crash message when you tell it to quit?
    Try this. Go to your username>library>preferences and delete:
    com.adobe.PhotoshopElements.plist
    Adobe Photoshop Elements 9 paths
    Adobe Photoshop Elements 9 settings
    That library is hidden in 10.7. To see it, option-click the Go menu in the Finder. While you're in there, go to the Saved Application States folder and delete everything related to PSE.
    Repair permissions and try again.

  • Illustrator CS5 is crashing every time I open the Font Menu

    I'm using one of the new Mac Book pro Retinas.  Every time I open the Type>Font menu the program crashes.  Sometimes I can scroll down a little ways but sometimes it crashes immediately.  Photoshop is loading the previews fine so I believe this is an illustrator problem and not a more general font problem. 
    Thank you for your help.

    Ok, so I am now leaning towards a corrupt font also like Wade Z. suggested. A few things to try if you haven't first though.
    1.) Did you repair permissions using Disk Utility in the Applications > Utilities folder? I'd do that and run it a few times until it runs "clean". Meaning that you don't see it repair anything anymore in the list. (I'm assuming you're on a Mac). If you're on a PC this won't help.
    2.) You could try resetting the PRAM etc., but I don't think that will help this problem. Sometimes you never know though.
    So, if it is a corrupt font, I need to know if you are using a font management program or if you manually place them in font folders? (again assuming you're using a Mac). Post Script Type 1 fonts are known to be more finicky to use in Snow Leopard and Lion. I had some problems with duplicate fonts that were causing havoc on my machine just a few weeks ago. So you may want to try and track down if you have duplicate fonts also. I just used Spotlight to find where any errant fonts were installed. If you install fonts manually I'd temporarily remove them all from the User > Library > fonts folder (or wherever else you may have installed them) and then restart. That way you can test to see if that might be the problem. Then if it is you can add half the fonts back in and do a bubble sort to find which font is corrupt. A bubble sort is a way of taking half of something and testing if it's good or bad. Then if it's a bad half, taking half again to see if it's good or bad. That way you can narrow in on a specific file causing the problem. It can be a little tedious with having to restart, but is one of the best ways of finding a corrupt font. Another method may be to remove all of one type of font and add each set in until  the problem shows up again (if removing them is what fixes it).
    If you use the built in FontBook you can try this: http://www.lifespy.com/2007/mac-tips-find-and-eliminate-corrupt-fonts-in-osx/
    Hopefully you'll get it worked out.

  • ~The sound for every time you change windows or pages.

    ~Every time I navigate to a window or page on my pc (win 7) it makes a sound I think it is annoying. I tried sound and turned off all sound there but it still occurs. I would like to know the root cause so as to stop it. Where does this sound originate?
    Where is its file? Where are the sound files stored?

    Hi,
    Any update here?
    If you mean the click sound when using Internet Explorer or Windows explorer, we could trun it off through the steps below:
    1. Open Internet Options-> Advanced->Under
    Accessibility-> Uncheck the Play system sounds(This is the default settings);
    2. Open the Sound personalization window (Right click the sound icon, then select sound ).
    3. Under the sound tab, find the Windows explorer
    under program events, select Complete Navigation,
    select none; Then find the Start Navigation, and change it to none, see:
    After that, check if this works as expected. Reference: Change computer sounds
    Best regards
    Michael Shao
    TechNet Community Support

  • CS5 photoshop crashes every time -_-

    hi,
    my cs5 photoshop is crashing on me recently alot now, you can say if i do a small edit i save it straight away because fear of loosing data.
    the reason well not to sure, its just when im moving texts around it just says stop respnding and closes on me. -_-
    i cannot work like this.
    my setup is i have windows 7, intel cpu Q9550 quad core, 4 gig ram. 32 bit windows.
    2 9800GT in sli mode with the lastest drivers.
    so please i need help.
    thank you.

    Exception code: 0xc0000005 can be related to memory problems, but is more often just the use of a bad pointer in executable software.  Specifically:
    http://www.updatexp.com/0xC0000005.html
    It is possible that if this problem has recently appeared, that the computer is starting to experience hardware problems.  Since you have checked the RAM it's possible something else is starting to fail.
    It's also possible that software that you've recently installed has caused the problem.  Unfortunately, one single error log entry just isn't enough to go on to determine what's gone wrong.
    Does this occur with just Photoshop or are you seeing ill behavior from other applications as well?
    Other avenues of correction you might consider exploring:
    Look for other entries in your Windows System Error Log to see if you can discern a pattern.
    Reinstall Photoshop.
    Restore your computer to a configuration at a time when it was working properly - e.g., through the System Restore process.
    Open the computer up and carefully vacuum out the dust, and ensure all cards and RAM modules are well-inserted in their slots.  Make sure your fans are all working.
    Perhaps it's time to consider getting a whole new computer.
    Hope this helps.
    -Noel

  • When I send email from iphone, mail on my mac crashes every time.

    The latest in a string of issues I've had with Mountain Lion, and even more with Lion. This is the latest and most frustrating.
    Eveytime I send an email from iphone or ipad, mail on my macbook pro crashes. This happens everytime!
    Also, Safari is unusable as keeps crashing and hardly ever loads properly so moved to Chrome which works perfectly.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Logic Pro 8  crashes every time preferences change is attempted

    Hi I hope someone can help.
    I recently installed Logic Studio on my Macbook Pro 2.4 (4Gb) and upon launch, found that the arrange window launched too big for the MBP's 15" screen. I thought this was very strange and tried to look at the display preferences - which suddenly caused the system to freeze and the quits.
    I've tried deleting different preference files and repair permissions but nothing has helped. I can't access anything in the preferences tab or the Settings tab - and the arrange window still insists on launching too big. Its completely unusable as I can't change any audio preferences.
    Any ideas?
    I also have Pro Tools LE 6.4.2 cs2 installed - which works fine other than the core audio driver. (this is asecond problem I'm trying to solve). As you might be able to tell, I'm having a lot of fun - would welcome any suggestions!
    Thanks

    Thanks but Logic still crashes if I attempt to change the preferences or settings.
    The arrange window seems to be loading ok if I choose a blank arrangement but still loads too large if I choose any other template. Is this normal or also another fault I'm experiencing?
    I can live with having to resize the arrange window but not being able to change preferences?.... Any help appreciated!

  • Aperture 2.1.2 crashes every time I change to »All Projects«

    Help, do you know this problem?
    I have 10K pics in Aperture, mostly RAW and never had any big problems.
    But now I wanted to change between the Project mode and Aperture crashes after a short time of »spinning wheel«.
    Thanks für your help.

    So.... after bringing my 1st Gen. MBP into the local Apple service center - they suggested that the HD went bad. In fact they further informed me that the stock 80 Gig drives in these things was known for many issues. With that, they replaced the drive - and like magic.... My computer is up and running at full speed once again. Believe it or not, the bad drive was impacting Soooooooo many different problems that I had been suffering with - including the ability for my File Vault in Aperture to backup properly!

  • Dreamweaver CC for Mac crashes every time I try to open a file.

    Hello, I've gone through a lot of the topics and usual fixes and can't seem to figure out why this is happening. I tried the online support and they were of no help either. So hopefully someone has been experiencing it as well and has a solution. I've done the usual Library clean (preferences, cache) with a restart and nothing has worked. I have also installed and resinstalled a few times over the past few months.
    If I open the program and everything is fine. If I open a file that has already been worked on, it will crash before the file opens. However, if I open a blank HTML doc and then open the file it opens, but still seems quite buggy. Even with version 13.1 its just off.
    I've been using CS6 to get my projects done, but why should I have to when I am on a CC subscription? My CC versions of InDesign, Photoshop, and Illustrator all work fine. I don't get it. Any help or insight would be really greatful.

    FG Pages? I'm not really familiar with that term.
    It might have been validation though. I opened some HTML pages that are used for email marketing and they seem to be working fine now. I ran a few other HTML pages through and they're opening too. Before they weren't so something positive happened between restarts.
    Even the file that was crashing it is opening; maybe something is wrong with validation. It has parralax scrolling and a lot of linked files. I'd imagine something could crash it.
    With the new rendering engine will it just crash? It seems that the old one would just ignore things if they weren't in place. The new one looks good, so I am looking forward to seeing how it works and how close it gets to other browsers.

  • IDVD on a mini mac crashes every time

    Hi everybody. Can anyone help me? Here I am with a brand new MinMac, with a superdrivbe, loads of memory, and an iMovie project (or 3) that I want to burn to DVD. The trouble is, eachtime I click "burn" in iDVD, the app just crashes and offers me an option of telling Apple about it or not. I've reinstalled the software, I've run a hardware test, and nothing to show for it. Has anyone had a similar experience?
    Yo.

    At what point is iDVD crashing? Is any encoding happening, or is it right after you click on burn?
    I've run into something similar. After upgrading to iDVD 5 in Panther, I noticed that I'd get the little spinwheel of death once iDVD hit the audio encode. I tried everything that's been suggested in this thread, but the application just hung, and refused to do anything, except require a force quit.
    On another messageboard, someone said that wasn't uncomon, and suggested just letting it run. So I did. After getting to the spinwheel, I walked away and did some other stuff. An hour later I came back, and the DVD was done.
    After upgrading to Tiger, it crashes once it gets to the audio encode. I get the same message about 'reopen', 'close', 'report'. Of course that was the first time I've tried burning anything in Tiger, but it's not looking promising. I'm retrying the same disc as I type this.

Maybe you are looking for

  • ITunes has stopped working upon opening Windows 8.1

    I uninstalled and reinstalled my iTunes and it wont open.....Help??

  • OSB: how to remove soap envelope from the $body

    Hi, In Assign activity when i assign: xquF1:url-decode(fn-bea:serialize($body),"UTF-8") = variable1,i am getting: $variable1 = <soap-env:Body      xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">      <MESSAGE> <aa>12</aa> <bb>34</bb> </ME

  • How to cancel an erase request made through find my I phone

    I lost an I phone and through " find my I phone " I found it was offline so I made a request to erase the phone when connected to internet. Next day I found it, how to cancel that erase request? I am afraid if I opened it it will connect to internet

  • Mac OS 9.1 on eMac with OS X 10.4.11

    I need to run mac os 9.1 or later on my mac to use some old programs i have. my eMac isn't like most of its models it is capable of running OS X Leopard but i prefer tiger. originally i have os x 10.4.11 and os 9.2.2 but my sister tried to clear some

  • Yahoo webmail won't open (us523.mail message)

    Hope someone can help. I can log on to my Yahoo account but when I try to access my email, I get a message- Safari can't open the page "http://us.f523.mail.yahoo.com/ym/login?.rand=95gdup33sm8b5" because it could not connect to the server "us.f523.ma