Can anyone help me about mapping Faces Context please?

Hello buddies!!
Well, my application does'nt even load when i run it and i map the Faces Servlet like below:
<servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>On the other side, it run perfectly when i put the mapping below :
<servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>but all my links must have the "faces" befores its real url for instance:
<c:url value="faces/Logout" var="url"/>
        <a href="${url}" >Link</a> and it keeps adding the "faces" everytime i click a link on the adress bar like that:
http://myhost/myapp/faces/faces/faces/faces/home.jsp
Thanks very much for any advice!!
All the best!
Message was edited by:
Soneca

Don't use *.jsp as the mapping for the FacesServlet. This will override the implicit container mapping for JSPs. Instead, use *.jsf, or *.faces.

Similar Messages

  • HT1338 I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    You can sell your existing computer using eBay, Craigslist or the venue of your choice. You could then use the proceeds to purchase a new computer.

  • I have the iPhone 4 recently became weak Wi-Fi where I can not use the Internet only when sitting Bejjani router, Can anyone help me in solving this problem please iPhone 4, iOS 7.0.3

    I have the iPhone 4 recently became weak Wi-Fi where I can not use the Internet only when sitting Bejjani router, Can anyone help me in solving this problem please
    iPhone 4, iOS 7.0.3

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • I've just downloaded iTunes version  11.0.1.12  and lost all my previous playlists. Can anyone help a comparatively computer illiterate user please ?

    Help !
    I've just downloaded the latest version of iTunes   11.0.1.12    and all my playlists etc that were on my earlier version have disappeared.
    Can anyone help me please?  NB  I'm not very computer litterate so non computer tech information would be appreciated please.
    Eggmap.

    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • Can anyone help me about create my reports on Oracle XE?

    Hi,
    I want to report with this product and I can created. But my report is search all items. I want to do this. Example our customers are log on this report via internet and they can search their billing. I can not create like this. I'm creating only ; customer logon this report but they can all data on this report
    My View is like this:
    View Name : Customer_Billing
    Customer_Number
    Customer_Name
    Customer_Surname
    Customer_Bill
    This report can be this: Customer visit our pages and log on that link and they write customer number and push to search button. then report working and only display writen customer number....
    Please help me about this. How can I do that
    Note: My Oracle XE Version 10.2.0.1.0
    Message was edited by:
    EqinnoX

    I'm assuming that they are not logging into the application...
    There are many ways you could accomplish this. Here is one.
    You have a report, and text item, and a button...
    1. set the query in the report to reference the text item in the "WHERE" clause of the select statement.
    2. set the display condition of the report to a where exists query and write a select statement that again references the text item in the "WHERE" clause. This will keep the entire report from being displayed unless a correct entry is entered in the text item.
    Now when they click the button, if there is a match the report will display with the correct information.
    This would be better if the users were logging in with a username/password. Then you could reference the user in the query and prevent access to the wrong data.

  • Pages 5.1 can anyone help with removing previous page numbers please?

    Hi.  in the new pages 5.1  I have made a section break at page 10 in a document and found how to start numbering from page 10 as page 1. Can anyone please tell me how to remove the page numbers from 1 to 10 that preceed this section?

    from the speed can I assume that it was adsl (copper) and not fibre connection?
    which hub do you have?
    can you enter your phone number and post results remember to delete number  https://www.btwholesale.com/includes/adsl/main.html
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Can anyone help with my PHP contact form please!

    Hi all,
    I've just implemented the email contact form as described in the PHP Solutions book by David Powers and it is working fine.
    What I'm having problems with is my form is at the bottom of a long page and you have to scroll or click a link to get to it, which means that when the submit button is pressed, whether the form is successfully submitted or a field hasn't been completed, the user ends up back at the top of the page having to scroll back down to the form before they can see the feedback (either thanking them for submitting or pointing out that they have tried to submit an incomplete form).
    Can anyone tell me how I can make the page redirect upon clicking submit so that the user returns to the part of the page where the form is so they can see the feedback instead of going to the top of the page where the form is out of view.
    Many thanks,
    Karl.

    I've attached the entire code from the page plus the css so you can see what's going on and in additiion I've put in the corefuncs.php include code.
    Hope that's enough, thanks for looking.
    Cheers,
    Karl.
    <?php
    include('includes/corefuncs.php');
    if (function_exists('nukeMagicQuotes')) {
    nukeMagicQuotes();
    // process the email
    if (array_key_exists('send', $_POST)) {
    $to = '[email protected]'; // use your own email address
    $subject = 'Feedback from my form page';
    // list expected fields
    $expected = array('name', 'email', 'comments');
    // set required fields
    $required = array('name', 'email', 'comments');
    // create empty array for any missing fields
    $missing = array();
    // assume that there is nothing suspect
    $suspect = false;
    // create a pattern to locate suspect phrases
    $pattern = '/Content-Type:|Bcc:|Cc:/i';
    // function to check for suspect phrases
    function isSuspect($val, $pattern, &$suspect) {
         // if the variable is an array, loop through each element
         // and pass it recursively back to the same function
         if (is_array($val)) {
              foreach ($val as $item) {
                   isSuspect($item, $pattern, $suspect);
         else {
         // if one of the suspect phrases is found, set Boolean to true
              if (preg_match($pattern, $val)) {
                   $suspect = true;
    // check the $_POST array and any subarrays for suspect content
    isSuspect($_POST, $pattern, $suspect);
    if ($suspect) {
    $mailSent = false;
    unset($missing);
    else {
    // process the $_POST variables
    foreach ($_POST as $key => $value) {
    // assign to temporary variable and strip whitespace if not an array
    $temp = is_array($value) ? $value : trim($value);
    // if empty and required, add to $missing array
    if (empty($temp) && in_array($key, $required)) {
    array_push($missing, $key);
    // otherwise, assign to a variable of the same name as $key
    elseif (in_array($key, $expected)) {
    ${$key} = $temp;
    // validate the email address
    if (!empty($email)) {
    // regex to ensure no illegal characters in email address
    $checkEmail = '/^[^@]+@[^\s\r\n\'";,@%]+$/';
    // reject the email address if it doesn't match
    if (!preg_match($checkEmail, $email)) {
    array_push($missing, 'email');
    // go ahead only if not suspect and all required fields OK
    if (!$suspect && empty($missing)) {
    // build the message
    $message = "Name: $name\n\n";
    $message .= "Email: $email\n\n";
    $message .= "Comments: $comments";
    // limit line length to 70 characters
    $message = wordwrap($message, 70);
    // create additional headers
    $additionalHeaders = 'From: domain.com Feedback Form<[email protected]>';
    if (!empty($email)) {
    $additionalHeaders .= "\r\nReply-To: $email";
    // send it
    $mailSent = mail($to, $subject, $message, $additionalHeaders, '[email protected]');
    if ($mailSent) {
    // redirect the page with a fully qualified URL
    header('Location: http://www.domain.com/index.php#form-div');
    exit;
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Page | title</title>
    <script type="text/javascript" src="jquery.min.js">></script>
    <script type="text/javascript" src="jquery.cycle.all.2.72.js"></script>
    <script type="text/javascript">
    $(function() {
        $('#slideshow').cycle({
            speed:       1400,
            timeout:     8000
    </script>
    <link href="main.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper" class="container">
    <div id="header">
    <h1 class="logo">XXX Xxxx Xxxxx</h1>
    <h2 class="subhead">Xxx Xxxxxxx xxx Xxxxxx Xxxxxxx xx Xxxx xxx Xxxxx.</h2>
    <div id="nav">
    <h2>Need more information?</h2>
    <h3>Look no further...</h3>
    <ul>
      <li><a class="nav-about" href="#about-div">About Us...</a></li>
      <li><a class="nav-contact" href="#contact-div">Contact Us...</a></li>
    </ul>
    </div>
    <!-- end nav -->
    </div><!-- end header -->
    <div id="page-content">
    <div id="cycle">
    <div id="cycle-nav"></div>
    <div id="slideshow" class="pics">
                <img src="im/slides/escape.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/old-lady.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/gouge.jpg" border="0" alt="" title="" width="547" height="339" />
                <img src="im/slides/disarm.jpg" border="0" alt="" title="" width="547" height="339" /></div><!-- slideshow -->
    </div><!-- cycle -->
    <div id="right-column">
    <div id="ladies">
    <h1>Xxxxxx xxx'x xxx xxxxx xxxx xxxx.</h1>
    <p>Xxxx xxxxxxxxx xxxx XXX xxxxx xxxxxxxxxx xxx xxxx xxxx xxxx xxxx!</p>
    <p class="bottom">XXXX XX xx xxxx xxx xxxx...</p>
    </div>
    <div id="courses">
         <div id="course1">
          <h2 class="top"><strong>Xxxx Xxxx Xxxxxxx Xxxxxx Xxxxxxx</strong></h2>
        <p>XXX Xxxx Xxxx Xxxxxxx xxxxxx xxx x xxxx-xxxx xxxxxxxx xxx xx xxxx xxxx xxxxx xxx xxxxxx.</p>
        <p><strong>XXXXX:</strong> XXX.XX xxx xxxxxx.</p>
        <p><strong>XXXX XXXXXX:</strong><br />
        Xxxxxx Xxx Xxxx<br /><strong>[XXXXXX XXXXXXXXX]</strong></p>
        <ul><strong>XXXXXX XXXXXXX:</strong>
    <li>Xxxxxx Xxx Xxxxxxxxx</li>
    <li>Xxxxxx Xxx Xxxxxxxx</li>
    <li>Xxxxxx Xx Xxxxxxx -XXXX</li>
    </ul>
        <h2>Xxxx Xxxxx...</h2>
        <p class="book-early">Xx xxxxx xxx xx xx xxxxxxxx xxxxxxx xxx xxx xxxxxxx xxx xxxxx xxxxxxxxxx xx x xxxxxxx xxxxxxx xxxxxxxx xx xxx xxxx xxx xxxxxxxxx xxxxxx xxxx xx xxxxx xx xxxxxxx xx xxx xxx xxxxxxxx xx xxxxxxxxx xx xxxxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxxx</strong></h2>
        <p class="location">      XX. Xxxxxx Xxxx, <br />
          Xxx Xxxxxxxxx Xxxxxx, Xxxxxxxx Xxxx, Xxxx (xxxxx xxx xxxx xx xxxx).<br />
          Xxxxxxxx xx xxxxxxxxxxx xxxx xxxxxxxx Xxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxxx</strong></h2>
        <p class="structure"><strong>Xxxxxxx xxxxxxx:</strong><br />
          XX.XXxx – XX.XX xx<br />
          <strong>Xxxxx xxxxx:</strong><br />
          XX xxxx.<br />
          Xxxxxx xxxxxxx xxxx xxx xxxxxx Xxxxx.<br />
          <strong>Xxxxxxxxxx xxxxxxx:</strong><br />XX.XXxx – X.XXxx</p>
        <h2><strong>Xxxxxx Xxxx...</strong></h2>
        <p class="news">Xxxxx xxxx xxxxx xxx xxxx xxxxx xxx Xxxx Xxxx Xxxxxxx Xxxxxx.<br />
        </p>
      </div>
      <div class="to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
         <div id="course2">
          <h2 class="top"><strong>Xxxxx Xxxx Xxxxxxx Xxxxx Xxxxxxx</strong></h2>
          <p>Xxx XXX XXXXX Xxxx Xxxxxxx Xxxxx xxx x xxx-xxxx xxxxxxxx xxx xx xxxx xxxxxx.</p>
        <p><strong>XXXXX:</strong> XX.XX xxx xxxxxx</p>
        <p><strong>XXXX XXXXX:</strong><br /> 
        Xxxxxx XXxx Xxx<br /><strong>[XXXXXX XXXXXXX]</strong></p>
        <ul><strong>XXXXXX XXXXXXX:</strong>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    <li>Xxxxxx Xxx Xxxx</li>
    </ul>
        <h2>Xxxx Xxxxx...</h2>
        <p class="book-early">Xx xxxxx xxx xx xx xxxxxxx xxxxxxx xxx xxx xxxxxxx xxx xxxxx xxxxxxxxxx xx x xxxxxxxxx xxxxxxx xxxxxxxx xx xxx xxxx xxx xxxxxxxxx xxxxxx xxxx xx xxxxx xx xxxxxxx xx xxx xxx xxxxxxxxxx xx xxxxxxxxx x xxxxxx.</p>
        <h2><strong>Xxxxxxxxx xx xxx Xxxxx</strong></h2>
        <p class="location">Xxxxxxxxx Xxxx, Xxxxxx Xxxxxx, Xxxxx, (xxx xxxxxxx xxxxxxxxx xx -<br />
          Xxxxxxx xx xxxxxxxxxx xxxx - </p>
        <h2><strong>Xxxxs Xxxx...</strong></h2>
        <p class="news">Xxxxx xxxx xxxxx xxx xxxx xxxxx xxx Xxxxx Xxxx Xxxxxxx Xxxxx.<br />
        </p>
      </div><!-- Course 2 end -->
      <div class="to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
    </div><!-- Courses end -->
    </div><!-- end right column -->
    <div id="main-content" >
    <div id="main-content-1" class="clearfix">
    <h2>Xxxxxxx xx xxx Xxxx Xxxxxxx<br />
    xxxxxxx xxxx xxx XXX.</h2>
    <h3>Xxxxxx xxx Xxxxx xxxxxxx…</h3>
    <p>Xxx XXX xx xx xxxxxxxxxxx xxxxx xxxxxx xxxxxxx xx xxxx xxxxxxx xx Xxxx xxx Xxxxx - Xxxx Xxxxxxxxx, xxxxxx xxxxxxxxx xx xxxxx xxxxxx xxx xxxxxx xxxxxx,   xxx xxxxxxxx x xxxx xxxxxxx xx xxxxxx xxxxxxxxx xx xxxxxxxx xxxx xxxxxxx.</p>
    <p>Xxx XXX xxxxxx xxx xxxxxxx xxx xxxxxxxx Xxxx Xxxxxxx xx xxx Xxxx / Xxxxx xxxx xx Xxxx Xxxxxxxxx.</p>
    <p>Xxx xxxxx xxxxxx xx x xxx xxx Xxxx Xxxxxxx Xxxxxx xxxx x xxxxxxxx xx xxxxxxxxx xxxx xxxxx xxxxx xx xxxx xx Xxxx xxxx xxxxx xxx xxxxxx xx xxx Xxxxxxxx Xxxxxx.</p>
    <p>Xxx xxxxxx xxxxxx xx x xxxxxx Xxxx Xxxxxxx Xxxxx xxxxx xx x xxx xxxx xxxxxxx xxx xx xxxx xx xxx xxxxxx xx xxxxx xx Xxxxxxxx Xxxx xx xxxxx Xxxxx Xxxxxx. Xxxxxxxx xxx xx xxxxx xx xxxx xxxxx.</p>
    <h3 class="extra-padding">Xxx xx xx xxx xxx xxxx xxxx xxx xxxxx?</h3>
    <p>Xxxx xxxxxx xx xxxxxxxxxx xxxxxx xx xxxxxx xxx xxx xxxx xxxxxx xxxxxxx xxx xxxx xxxxxx xx xx xxx xxxxxxxxxx xxx xxxx xx xxxx xx xx xxxxxxx xxxxxx xxxx xx xxxxxxxx xx xxxxxxxx xxxx xx xxxxxx xxxxxxxxxx xxxxxxx xxx xxxxxx xx xxxxx xxxxxxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p><strong>xxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</strong></p>
    <p>xx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p>xx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx.</p>
    <p><strong>Xxxx xxxx xx xxxxxx xxxx xx xxxxxx xxxxxxxxxx, xx x xxxxxxxx xxx xxxxxxx xxxxxxxxxxx xxxxx xxxxxx xxxxxxxxx xxx xxxx xxxx xx xxxxxxxxxxx xxxxxx xxxx xx xxxx..</strong></p>
    <h3 class="extra-padding">Xxxxxxx xx…</h3>
    <h4>Xxx xxxxxxxxxx xx xxx Xxxx Xxxx Xxxxxxx Xxxxxx xxxxxxxx xxxx xxxxxx xxxx</h4>
    <h4>Xxx xxxxxxxxxx xx xxx Xxxx Xxxx Xxxxxxx Xxxxxx xxxxxxxx xxxx xxxxxx xxxx</h4>
    </div>
    <div id="main-content-2" class="clearfix">
      <h4> </h4>
    </div>
    </div><!-- end maincontent -->
    <div id="bottom-content">
    <div id="about-div">
    <h2>Xxxxx xx…</h2>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx.</p>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxxXx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx</p>
    <p>Xx, xx xxxxx ixx Xxxxxx Xxxxxxxxx xxxx xxxx xxxx xxxxxxx xxx xxxxxxxx xxxx xxxxxxx xxx xxxx xxxxxx xxxx xxxxx</p>
    <div class="about-bottom-to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>
    </div>
    <hr />
    <div id="links-div">
    <h2>Xxxxxx xxxxx...</h2>
    <ul>
         <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
        <li><a href="">Xxx Xxxxx xxxx xxx xxx xxx xx(?)</a></li>
    </ul>
    </div>
    <div id="contact-div">
    <h2>Xxxxxx xxx...</h2>
    <p>Xxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxxxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxx xxxx x xxxx xxx xxx xxxxxxxxxx xxx xxxxxxx x xxxx xxx xxx xxxxxxxxxx xxx xxx<br />
    </p>
    <p class="phone">Xxxxx</p>
    </div>
    <div id="form-div">
         <p>Please make sure you complete all three fields below so that we can reply directly.</p>
         <?php
              if ($_POST && isset($missing) && !empty($missing))
              ?>
              <p class="warning">Please complete the missing item(s) indicated.</p>
              <?php
              elseif ($_POST && !$mailSent) {
              ?>
              <p class="warning">Sorry, there was a problem sending your message.
              Please try later.</p>
              <?php
              elseif ($_POST && $mailSent) {
              ?>
              <p class="thanks"><strong>Your message has been sent. Thank you for your feedback.
              </strong></p>
              <?php } ?>
      <form method="post" id="feedback" class="contactForm" action="">
                                              <label for="name">Name: <?php
                                                 if (isset($missing) && in_array('name', $missing)) { ?>
                                                 <span class="warning">Please enter your name</span><?php } ?>
                                              </label>
                                     <input name="name" id="name" type="text" class="formbox"
                                             <?php if (isset($missing)) {
                                                      echo 'value="'.htmlentities($_POST['name']).'"';
                                             } ?>
                                             />
                                              <label for="email">Email: <?php
                                                 if (isset($missing) && in_array('email', $missing)) { ?>
                                                 <span class="warning">Please enter a valid email address</span><?php } ?>
                                            </label>
                                        <input name="email" id="email" type="text" class="formbox"
                                            <?php if (isset($missing)) {
                                                      echo 'value="'.htmlentities($_POST['email']).'"';
                                            } ?>
                                            />
                                        <label for="comments">Comments: <?php
                                            if (isset($missing) && in_array('comments', $missing)) { ?>
                                            <span class="warning">Please enter your comments</span><?php } ?>
                                            </label>
                                        <textarea name="comments" id="comments" cols="30" rows="10"><?php
                                                 if (isset($missing)) {
                                                      echo htmlentities($_POST['comments']);
                                            } ?></textarea>
                                             <input name="send" id="send" class="formSubmit" type="submit" value="Send message" />
      </form>
       <div class="form-bottom-to-top">
      <p><a href="#header">[Back to Top]</a></p>
      </div>                         
    </div>
    </div>
    <div id="footer">
    <p>Xxxxxxxxxxxxx</p>
    </div>
    </div><!-- wrapper -->
    </div>
    <!-- end page-content -->
    </div><!-- end wrapper -->
    </body>
    </html>
    /* following is the include php code */
    <?php
    function nukeMagicQuotes() {
      if (get_magic_quotes_gpc()) {
        function stripslashes_deep($value) {
          $value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
          return $value;
        $_POST = array_map('stripslashes_deep', $_POST);
        $_GET = array_map('stripslashes_deep', $_GET);
        $_COOKIE = array_map('stripslashes_deep', $_COOKIE);
    ?>
    /* Following is the css */
    @charset "UTF-8";
    /* CSS Document */
    html { margin: 0; background: #faf9f2 url(im/background_texture_tile.jpg) top center repeat; text-align: center; }
    body { margin: 0 auto; background: url(im/background_texture_tile.jpg) top center repeat; text-align: center; width: 910px;
    padding: 0; font: 62.5% Arial, Verdana, Helvetica, sans-serif; }
    h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, label, fieldset, legend, blockquote, table { margin: 0; padding: 0; }
    #wrapper {
         text-align: left;     
         position: relative;
    .container{     
         margin: 0 auto 0;
         width: 910px;
    #header {
         width: 870px;
         height: 150px;
         margin: 0 20px 20px 20px ;
         background: url(im/header-bg.gif) top left no-repeat;
    h1.logo {
         float: left;
         height: 130px;
         width: 315px;     
         margin: 0 0 0 50px;
         border: 0;
         outline: 0;
         text-indent:-9999px;
         background:url(im/logo.jpg) 0 10px no-repeat;
         display: inline;
    h2.subhead {
         font-weight: bold;
         font-size: 1.6em;
         line-height: 1.4em;
         color: #999;
         float: right;
         width: 135px;
         text-align: right;
         margin: 25px 320px 0 0;
         display: inline;
    #nav {
         position: absolute;
         top: 0px;
         right: 50px;
         width: 270px;
         height: 277px;
         background: url(im/nav-bg.png) top left no-repeat;
    #nav h2 {
         font-size: 1.6em;
         text-align: center;
         color: #4D98C5;
         margin-top: 35px;
    #nav h3 {
         font-size:2.2em ;
         text-align: center;
         color: #4D98C5;
         padding-bottom: 13px;
         margin: 0 40px 0;
         border-bottom: 4.5px dotted #999;
    #nav ul {list-style:none;}
    #nav li {
    list-style:none;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 40px 0 40px ;
    border-bottom: 4.5px dotted #999;
    #nav li a {
    text-align: left;
    background-image:url(im/CSSSprite.jpg);
    background-repeat:no-repeat;
    color: #4D98C5;
    text-decoration: none;
    line-height: 65px;
    margin: 10px 0 10px 0;
    #nav li a.nav-about {
    background-position: 105px -15px;
    padding: 20px 95px 20px 0;
    #nav li a.nav-about:hover,
    #nav li a.nav-about:active,
    #nav li a.nav-about:focus {
    background-position: 105px -102px;
    color: #814098;
    #nav li a.nav-contact {
    background-position: 105px -180px;
    padding: 20px 80px 20px 0;
    #nav li a.nav-contact:hover,
    #nav li a.nav-contact:active,
    #nav li a.nav-contact:focus {
    background-position: 105px -267px;
    color: #814098;
    /* Cycle styles */
    #cycle {
         float: left;
         margin-left: 20px;
         margin-bottom: 25px;
         width: 547px;
         height: 339px;
         clear: both;
    .pics { height: 339px; width: 547px; padding:0; margin:0; overflow: hidden; border: 1px solid #814098; }
    /* End cycle styles */
    /*///// RIGHT CONTENT ////*/
    #right-column {
         float: right;
         width: 260px;
         margin: 0 53px 0 0;
         display: inline;
    #ladies {
         width: 252px;
         height: 437px;
         background: url(im/pink-ladies.png) top left no-repeat !important ;
         background: url(im/pink-ladies.gif) top left no-repeat ;
         margin: 120px 0 0 6px;
    #ladies h1 {
         margin: 0px 30px 150px 20px;
         padding-top: 60px;
         font: bold 2em Georgia, "Times New Roman", Times, serif;
         text-align: center;
         color: #6A437E;
    #ladies p {
         margin: 0px 30px 15px 20px;
         font: normal 1.8em Georgia, "Times New Roman", Times, serif;
         text-align: center;
         line-height: 1.4em;
         color: #EF4358;
    #ladies p.bottom {
         margin: 0px 30px 0px 20px;
         font: bold 2.2em Helvetica, Arial, sans-serif;
         text-align: center;
         color: #6A437E;
    #courses{
         margin-top: 15px;
         margin-bottom: 18px;
    #courses h2 {
         letter-spacing: .07em;
    /*Hull Course */
    #course1 {
         margin: 0 0 5px 6px ;
         width:240px;
         background:url(im/rightnav.gif) bottom left no-repeat;
    #course1 h2.top {
         background:url(im/rightnaw.gif) top left no-repeat;
         margin:0;
         padding:15px;
         color:#FFFFFF;
         font-size:1.6em;
         line-height: 1.4em;
         font-weight: bold;
         text-transform:uppercase;
    #course1 h2 {
         font-size:1.6em;
         line-height: 1.4em;
         color:#FFFFFF;
         background-color:#814198;
         padding:15px;
         text-transform:uppercase;
    #course1 p {
         font-size:1.4em;
         line-height:1.4em;
         padding: 15px 15px 0 15px;
         margin:0;
    #course1 p a {
         text-decoration:underline;
         font-weight:bold;
         color: #9f1f63     
    #course1 p a:hover {
         color: #ec008c;
    #course1 ul {
         margin: 20px 0 20px 15px;
         font-size:1.4em;
         line-height: 1.6em;
         list-style: none;
    #course1 p.book-early {
         padding-bottom: 20px;
    #course1 p.location {
         padding-bottom: 30px;
    #course1 p.structure {
         padding-bottom: 30px;
    #course1 p.news {
         padding-bottom: 30px;
    #right-column .to-top {
         color: #000;
         text-align: right;
         padding-right: 27px;
         margin-bottom: 40px;
    #right-column .to-top a, a:link {
         color: #000;
         font-size: 1.3em;     
         text-decoration: none;
    #right-column .to-top a:hover {
         text-decoration: underline;
    #course2 {
         margin: 0 0 5px 6px ;
         width:240px;
         background:url(im/rightnav.gif) bottom left no-repeat;
    #course2 h2.top {
         background:url(im/rightnaw.gif) top left no-repeat;
         margin:0;
         padding:15px;
         color:#FFFFFF;
         font-size:1.6em;
         line-height: 1.4em;
         font-weight: bold;
         text-transform:uppercase;
    #course2 h2 {
         font-size:1.6em;
         line-height: 1.4em;
         color:#FFFFFF;
         background-color:#814198;
         padding:15px;
         text-transform:uppercase;
    #course2 p {
         font-size:1.4em;
         line-height:1.4em;
         padding: 15px 15px 0 15px;
         margin:0;
    #course2 p a {
         text-decoration:underline;
         font-weight:bold;
         color: #9f1f63     
    #course2 p a:hover {
         color: #ec008c;
    #course2 ul {
         margin: 20px 0 20px 15px;
         font-size:1.4em;
         line-height: 1.6em;
         list-style: none;
    #course2 p.book-early {
         padding-bottom: 20px;
    #course2 p.location {
         padding-bottom: 30px;
    #course2 p.news {
         padding-bottom: 30px;
    /*///// RIGHT CONTENT ////*/
    #main-content {
         margin: 0 360px 0 40px;
         padding: 0;
    #main-content-1 {
         width: 510px;
    #main-content-2 {
         width: 510px;
    #main-content p {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 1.6em;
         line-height: 1.4em;
         padding-bottom: 1em;
         color: #666;
    #main-content h2{
         padding: 0 0 20px 0;
         margin: 0;
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 3em;
         color: #666;
    #main-content h3 {
         font-size: 2.3em;
         color: #666;
         font-weight: normal;
         padding-bottom: 0.8em;
    #main-content h3.extra-padding {
         padding-top: 0.8em;
         padding-bottom: 0.8em;
    #main-content h4 {
         font-size: 2em;
         font-weight: normal;
    #bottom-content {     
         background-color: #814098;
         clear: both;
         margin: 0 20px;
         width: 870px;
         float: left;
    #bottom-content h2 {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size: 2.6em;
         letter-spacing: .05em;
         color: #FFF;
         font-style: normal;
         padding: 0 0 15px 0;
    #bottom-content p {
         color: #FFF;     
    #about-div {
         padding: 0 320px 30px 0;
         background: url(im/sheila.png) 560px 20px no-repeat !important;
         background: url(im/sheila.jpg) 560px 20px no-repeat ;
    #about-div h2 {
         padding: 20px 28px 15px 28px;
    #about-div p {
         padding: 0 28px 20px 28px;
         font-size: 1.5em;
         line-height: 1.4em;
    .about-bottom-to-top {
         position: relative;
         top: 65px;
         right: -320px;
         text-align: right;
         padding-right: 33px;
         font-size: .68em;     
    .about-bottom-to-top a, a:link {
         color: #FFF;
         text-decoration: none;
    .about-bottom-to-top a:hover {
         text-decoration: underline;
    hr {
           margin: 40px 28px 20px 28px;
           color: #C09FCB;
           border-top: 1px black solid;
    #links-div {
         margin: 0 15px 0px 28px;
         float: left;
         width: 254px;
    #links-div li {
         list-style: none;
         padding: 0 0;
    #links-div li a {
         font-size:1.5em;
         line-height: 1.5em;
         text-decoration: none;
         color: #FFF;
    #links-div li a:hover {
         text-decoration: underline;
    #contact-div {
         margin: 0 10px 0 0;
         width: 254px;
         float: left;
    #contact-div p {
         font-size: 1.5em;
         line-height: 1.4em;
    #contact-div p.phone {
         font-size: 2.2em;
         font-weight: bold;
         letter-spacing: .05em;
    /* CONTACT FORM */
    #form-div {
         margin: 0 28px 50px 0 ;
         float: right;
         width: 281px;
    #form-div .contactForm {
         padding:6px;
    #form-div .contactForm .formbox {
         font-family: Arial, Verdana, Helvetica, sans-serif;
         font-size:1.2em;
         color:#333;
         width:261px;
         padding:5px 3px;
         margin:0 0 5px 0 ;
         border:1px solid #666;
         border-top-color:#000;
         background:#fff url(im/contact-input.gif) top repeat-x;
    #form-div .contactForm #comments {
         font-family: Helvetica, Arial, sans-serif;
         font-size:1.23em;
         color:#333;
         line-height: 1.5em;
         width:258px;
         padding: 5px 0.4em 0 0.4em ;
         margin: 0 0 10px 0 ;
         display:block;
         clear:both;
         border:1px solid #666;
         border-top-color:#000;
         background:#fff url(im/contact-textarea.gif) top repeat-x;
    .formSubmit {
         display:block;
         clear:both;
         width:110px;     
         height:25px;
         padding:0;
         border:none;
         background-color: #251149;
         text-align:center;
         font-size:1.2em;
         color:#fff;
         cursor:pointer;
    .formSubmit:hover {
         background-color: #E76F34;
    .form-bottom-to-top {
         text-align: right;
         padding-right: 33px;
         font-size: 0.68em;     
         margin-top: 40px;
    .form-bottom-to-top a, a:link {
         color: #FFF;
         text-decoration: none;
    .form-bottom-to-top a:hover {
         text-decoration: underline;
    /* David Powers styles */
    .warning {
        font-weight: bold;
         font-size: 1em;
        color: #FCCCB9;
         display: block;
    .thanks {
        font-weight: bold;
        color: #f00;
         margin-left: 3px;
    #form-div p {
        margin: 0 0 10px 8px ;
         font-size: 1.5em;
         line-height: 1.4em;
    label {
        font-weight: bold;
         font-size: 1.6em;
        color: #FFF;
        display: block;
    /* END CONTACT FORM */
    #footer {
         height: 10em;
         background-color: #FFF;
         margin: 0 20px;
         clear: both;
    #footer p {
         font-size: 1.4em;
         color: #666;
         padding: 40px 0 30px 120px;     
         background: url(im/footer-logo.gif) 50px 20px no-repeat ;
    .clearfix:after{ content:"."; display:block; height:0; clear:both; visibility:hidden; }
    .clearfix {display: inline-block;}
    /* Hide from IE Mac \*/
    .clearfix {display:block;}
    /* End hide from IE Mac */
    * html .clearfix{ height: 1px; }

  • YouTube Convert into AVI can Anyone help me???? Please

    Hello,
    I have a question.. i was wondering if there is a free program that allows you to save YouTube Files on to your computer??? I heard there was but I didn't get the address on it.. can anyone please help me ??
    Mem

    now that it's been moved to the right forum, but what you need is Tubesock:
    http://stinkbot.com/Tubesock/

  • TS1474 can anyone help me in resolving my issue please?

    whenever i connect my iphone 4s running ios7.0.2 to my laptop window 7 running latest version of itunes, it displays a message "an iphone has been detected but could not be recognised.disconnect it than reconnect it later" why is it so? my iphone is not being connected to itunes? previously it was connecting properly. this issue started even before updating my iphone to ios7.how it can be fixed now?? any suggestions please!

    If you have access to a different USB cable, that would be well worth a try.  Otherwise, you could Reset the iPhone and see if that helps.  Hold down the Sleep button and the Home button at the same time until the Apple logo appears then wait for the Reset, returning your iPhone to the lock-screen.  Now try rebooting your laptop and then connecting the iphone to the USB cable, then the cable to the best USB port available.  If you have two or more USB ports on your computer use a different one than you have been using. 

  • TS3367 hello, can anyone help me about facetime?

    hello,
    anyone can help me why my iphon4 can't make a call to facetime to any  number?

    Start with this Apple support article and see if it helps:
    http://support.apple.com/kb/TS3367
    Regards.
    Message was edited by: varjak paw; posted link to wrong article.

  • Can anyone help me about deleting the repeats by java??

    My subject is to write a static method called deleteRepeats that has a partially filled array of characters as formal parameter and deletes all repeated letters from the array.And when a letter is deleted, the remaining letters are moved one position to fill in the gap.This second formal parameter cannot be changed by a Java method, so have the method return the new value for this parameter. For example;
    char a[10];
    a[0] = 'a';
    a[1] = 'b';
    a[2] = 'a';
    a[3] = 'c';
    int size = 4;
    size = deleteRepeats(a, size);
    After this code is executed, the value of a[0] is 'a', the value of a[1] is 'b', the value of a[2] is 'c', and the value of size is 3
    So I did it like.Is it true?
    public class deleteRepeats{
    public static int deleteRepeats(char[] a, int size) {
         size=a.length;
         int numberOfRepeats=0;
         for(int i=0; i<size; i++) {
         for(int j=1; i+j<size; j++) {
         if(a==a[i+j]) {
         a[i+j]=a[(i+j)+1];
         size--;
         numberOfRepeats++;
    return size;

    nclow wrote:
    CellAt wrote:
    If you think Set is very simple for this question please share with me.I figured this was a homework assignment and you didn't know about collections yet. Why not read the documentation?
    [http://java.sun.com/javase/6/docs/api/java/util/Set.html|http://java.sun.com/javase/6/docs/api/java/util/Set.html]
    Your existing implementation would work if you would address the bug I pointed out...thanks...

  • Can anyone help with my broad band issue please?

    Hi all, I'm leaving this message here in desperation as I really don't know what else to do apart from cancel my contract with BT.
    I had broadband and a phone line installed on the 26th of May and though the phone line went live straight away, the broadband has not worked. An engineer visited, advised the issue was at the echange and late called my partner to see if the blue light on the hub had come on. She confirmed it had and the engineer than closed the call.
    I arrived home that evening to try and use the broadband and connected but the speed was abysmal.
    I then ran a speed test which informed me my download speed was 0.38mbps. Obviously this speed is not worth paying for.
    I called again to report the poor speed and was told an engineer would visit this morning between 8 and 1. My partner booked this time off from work but the engineer did not turn up. I spoke to the online service to report this and they said they could not see an appointment had been booked. I remembered to print off my previous online conversation with them and even quoted the reference number for the booking. They then said there was a technical issue at their end.
    They have rebooked for next Monday and unless they resolve it there and then I can't see any other option but to cancel the whole thing.
    I am so frustrated at the last of customer service and the fact I have to talk online to someone who is very apologetic but not able to help. I can't believe I can have a service installed on the 26th of last month and it still is not working!
    And the fact that my partner has twice booked half days for the engineer appointments is just bad luck?
    If anyone has any help or knows anyway to expedite the issue or speak to anyone with enough authority to log a complaint I'd be most grateful. Thank you

    from the speed can I assume that it was adsl (copper) and not fibre connection?
    which hub do you have?
    can you enter your phone number and post results remember to delete number  https://www.btwholesale.com/includes/adsl/main.html
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Can anyone help me with Error -3259? PLEASE :((

    Re: My home button isn't working well so i went to my service provider to ask about the problem. They advised me to update my iPhone to iOS 5 but the problem is no matter what i do, there is always an error. What should I do?
    my home button isn't working well so i went to my service prodiver to ask about the problem. They advised me to update my iPhone 4.2.1 software to iOS 5.1, since there is a setting that i can use where i just have to touch my screen to go to the home screen, or somewhat like that. but i have been trying to update my software to iOS 5.1, but Erroe -3259 always occurs. and now, i tried the advised of some in the community, still it won't work. for the nth time. i don't know what to do already, i cant use my iPhone 4 because of the home screen button. is there any other way to solve this problem? please. thank you.

    the only way I found was to map other buttons to cover for the iphone's home button, I was using a friends iphone for a while as he always like me to test stuff out so he can then use me as free tech support and now I'm herer XD
    anyway after checking with him I had to Jailbrea his phone and installed activator, then using that I was  able to get the home fuction when both volume buttons were pressed.
    1. You need to jailbreak first don't worry not as scary as it sounds in fact quite easy, download a program redsn0w, ( http://blog.iphone-dev.org/tagged/redsn0w ) once you run  it you need to put your phone into DFU mode, make sure itunes is closed before trying this.
    2. (1. turn off iphone while plugged into computer, then hold the sleep button count to three 2. then hold the home button whiile still holding the sleep button, count to 10 3. release the sleep button but keep home button,) you phone should now be in DFU mode, while in this mode run redsn0w it will guide you through the process.
    3. Once jailbroken you will find a new icon cydia on the springboard (homescreen) press on it and it'll as what kind of person you are, I sugggest user for first time. then it'll close just restart and it'll show you a normal screen, down in bottom right is the serch tab, tap that and it'll bring up search, tap "Activator", tap on the activator at the top of the list then tap install and comfirm
    4. once installed you'll find a new option called activator, tap it to open it here you can map and command to button's, I suggest tapping anywhere then scroll down to Volume button's->both press->home button
    5. then you can ust press both volume button's anytime and it'll response just like home button, even if you double press, doesn't work as a hold so can use voice control but it'll work for everthing else and even still work as volume buttons

  • Can anyone help with iTunes error message (0x80092013) please?

    I just updated iTunes and now I get error message (0x80092013), does anyone know how to fix it please?  I am using Windows, not Mac.

    I am having the exact same problem! and now i can't access my pending downloads!! if anybody has any answers, i am begging you, please help me. if i can't fix this then i have wasted $40., so please, help me!

  • Can anyone help me decode this crash report please?

    My 2008 MacBook is becoming increasingly prone to crashing, and I wondered if this crash report from iMovie might contain a clue as to how serious the problem is, and the possible cause. I'd be very grateful for the advice of anyone who understands these things!
    Process:         iMovie [22307]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [164]
    Date/Time:       2012-02-18 16:05:28.362 +0000
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  22  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000050000020
    VM Regions Near 0x50000020:
        shared memory          000000004ef7f000-000000004efa0000 [  132K] rw-/rw- SM=SHM 
    -->
        MALLOC_SMALL           0000000051000000-0000000051800000 [ 8192K] rw-/rwx SM=SHM 
    Application Specific Information:
    objc_msgSend() selector name: _fastCStringContents:
    RAD:Cancel complete.
    thumbnails starting: VM 1004.49 MB
    thumbnails done: VM 1009.02 MB
    thumbnails done: VM 1009.09 MB
    thumbnails done: VM 1012.74 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1018.48 MB
    RAD:Ingest cancelled
    thumbnails done: VM 1023.26 MB
    thumbnails done: VM 1049.84 MB
    RAD:Cancel complete.
    thumbnails done: VM 1029.82 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1080.96 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1097.87 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    objc[22307]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9250217f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x925094e7 ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x92509356 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9bb51a9c _DPSNextEvent + 678
    10  com.apple.AppKit                        0x9bb51306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.iMovieApp                     0x00044e47 0x1000 + 278087
    12  com.apple.AppKit                        0x9bb4d675 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x9bde1261 NSApplicationMain + 1054
    14  com.apple.iMovieApp                     0x000031b3 0x1000 + 8627
    15  com.apple.iMovieApp                     0x00002a6e 0x1000 + 6766
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x993b2b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9846ab11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x984696a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x00f04763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9460c3ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9460c165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9460bf76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9b333be6 0x9ad47000 + 6212582
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 4:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9b455b7d 0x9ad47000 + 7400317
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x993b2b42 __select + 10
    1   com.apple.CoreFoundation                0x91b09ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x9b80ef10 0x9ad47000 + 11304720
    2   com.apple.QuickTimeComponents.component          0x9b3a3d0d 0x9ad47000 + 6671629
    3   com.apple.QuickTimeComponents.component          0x9b80ee43 0x9ad47000 + 11304515
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    4   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 11:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.AVCHDPlugin                   0x335baf1f 0x333fc000 + 1830687
    4   com.apple.AVCHDPlugin                   0x335e84ea 0x333fc000 + 2016490
    5   com.apple.AVCHDPlugin                   0x335babbe 0x333fc000 + 1829822
    6   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    7   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 12:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33468e98 0x333fc000 + 446104
    4   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    5   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 13:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.DiscRecording                 0x99c170be DRWorkLoop::WorkLoop() + 274
    7   com.apple.DiscRecording                 0x99c16f95 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    8   com.apple.DiscRecording                 0x99c16d04 DRThreadObject::StartRoutine(DRThreadObject*) + 142
    9   com.apple.DiscRecording                 0x99c16c75 DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    10  libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x993e2ed2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x993d8a3d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIOServices           0x0f4ae8ea CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIOServices           0x0f4a4b29 CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 16:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x997910f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 17:: QTKit: QTVisualContextImageProviderWorkLoop
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.QTKit                         0x9a046792 QTVisualContextImageProviderWorkLoop + 124
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 18:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 19:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 20:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 21:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libobjc.A.dylib                         0x99a60d47 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x91a8bb8d CFStringGetCStringPtr + 781
    2   com.apple.CoreFoundation                0x91a9904a CFStringFindWithOptionsAndLocale + 410
    3   com.apple.CoreFoundation                0x91a98e9c CFStringFindWithOptions + 60
    4   com.apple.CoreFoundation                0x91aa55ca CFURLCreateStringByReplacingPercentEscapes + 1194
    5   com.apple.CoreFoundation                0x91aa6542 CFURLCreateStringByReplacingPercentEscapesUsingEncoding + 66
    6   com.apple.CoreFoundation                0x91aa649e URLPathToPOSIXPath + 46
    7   com.apple.CoreFoundation                0x91a9d34a CFURLCreateStringWithFileSystemPath + 1866
    8   com.apple.CoreFoundation                0x91a9cbed CFURLCopyFileSystemPath + 45
    9   com.apple.Foundation                    0x99729147 -[NSURL(NSURL) path] + 62
    10  com.apple.iLifeMediaBrowser             0x92862cee -[ILMediaObject setURL:] + 147
    11  com.apple.iLMBiTunesPlugin              0x08b93abf 0x8b8e000 + 23231
    12  com.apple.iLMBiTunesPlugin              0x08b90a29 0x8b8e000 + 10793
    13  com.apple.iLMBiTunesPlugin              0x08b93f71 0x8b8e000 + 24433
    14  com.apple.iLifeMediaBrowser             0x928945e0 -[ILMediaManager _performLoadData] + 216
    15  com.apple.iLifeMediaBrowser             0x92894351 -[ILMediaManager _loadDataThreaded] + 514
    16  com.apple.CoreFoundation                0x91b1db6d __invoking___ + 29
    17  com.apple.CoreFoundation                0x91b1daa9 -[NSInvocation invoke] + 137
    18  com.apple.Foundation                    0x9985761a -[NSInvocationOperation main] + 267
    19  com.apple.Foundation                    0x9977237b -[__NSOperationInternal start] + 1177
    20  com.apple.Foundation                    0x99771edb -[NSOperation start] + 67
    21  com.apple.Foundation                    0x9978602e ____NSOQSchedule_block_invoke_2 + 135
    22  libdispatch.dylib                       0x98468e11 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x98469e70 _dispatch_worker_thread2 + 231
    24  libsystem_c.dylib                       0x963fcb24 _pthread_wqthread + 346
    25  libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x993b2bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x963af7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x963af558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9bd98c1e -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 crashed with X86 Thread State (32-bit):
      eax: 0x0a208390  ebx: 0x00000000  ecx: 0x9c533270  edx: 0x50000000
      edi: 0x00000000  esi: 0x91a8b88e  ebp: 0xb0101828  esp: 0xb0101808
       ss: 0x0000001f  efl: 0x00010206  eip: 0x99a60d47   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x50000020
    Logical CPU: 1
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b2ff7  com.apple.mobiledevice (503.2 - 503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fa000 -   0x635fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x673000 -   0x674ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x679000 -   0x67aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x680000 -   0x71fff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77c000 -   0x829ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x86e000 -   0x86ffff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x873000 -   0x898ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x89f000 -   0x8d3fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8d9000 -   0xa40fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa44000 -   0xa67ffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa75000 -   0xc02ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf00000 -   0xf30ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xf84000 -   0xfb1ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xff3000 -   0xff6ff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x31a5000 -  0x3312ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3346000 -  0x343dffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x3474000 -  0x34ccfff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3521000 -  0x3523fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <114A418A-D35E-3859-9CF2-43A8EBEE5223> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3528000 -  0x352bffe  com.apple.DirectoryServicesSource (1.2 - 1083) <0986E1F9-47D8-3E90-BAA1-702336BB0371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3531000 -  0x3537fff  com.apple.AddressBook.LDAPSource (1.2 - 1083) <5D6185FA-8E19-3926-B687-078E5AB0D4F4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x399d000 -  0x3df2ff7  com.apple.driver.AppleIntelGMAX3100GLDriver (7.0.52 - 7.0.0) <5187FA1B-C47C-3AAA-9FCB-E68464DE648A> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x5596000 -  0x55d5fff  com.apple.ExchangeSource (1.2 - 1083) <4E60AD70-A474-3D9A-B424-219A0CC02D55> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
    0x5610000 -  0x566bfff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x574f000 -  0x5756ff5  com.apple.iLMBAperturePlugin (2.6.2 - 288.2.12) <A9882D14-D1F2-3724-A486-DAD561ECF2E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x575d000 -  0x575dfff  com.apple.iLMBAppDefPlugin (2.6.2 - 288.2.12) <13748A1D-487A-3815-94A7-E5342AD254DC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x887c000 -  0x8885ffc  com.apple.iLMBFinalCutPlugin (2.6.2 - 288.2.12) <AB6A3216-4F2D-344C-BBA8-69DA7273D699> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x888b000 -  0x888cfff  com.apple.iLMBFolderPlugin (2.6.2 - 288.2.12) <E9F003F7-D978-3E7A-A15D-04BABB025F09> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x8891000 -  0x8892ff7  com.apple.iLMBMoviesFolderPlugin (2.6.2 - 288.2.12) <198BA9E9-5FE6-3747-AA19-90DC344730E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x88bc000 -  0x88bffff  com.apple.iLMBGarageBandPlugin (2.6.2 - 288.2.12) <011958D7-5E85-3820-8BF1-29D5082F9B05> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x88c5000 -  0x88d0ff3  com.apple.iLMBiMoviePlugin (2.6.2 - 288.2.12) <3A7C1FA1-8F5D-3620-B8EA-9093323D8388> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x88d7000 -  0x88d9ff8  com.apple.iLMBPhotoBooth2Plugin (2.6.2 - 288.2.12) <F197CF53-0EE3-32F9-9539-47C2FCEA7224> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x88e7000 -  0x88efff3  com.apple.iLMBiPhotoPlugin (2.6.2 - 288.2.12) <F4057373-3E0F-3E7C-A65E-C204B6E1018E> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x88f6000 -  0x88f7ff7  com.apple.iLMBPhotoBoothPlugin (2.6.2 - 288.2.12) <078CF428-0527-355B-8BB1-90E83C7F5EC0> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8b73000 -  0x8b86ff7  com.apple.iLMBiPhoto8Plugin (2.6.2 - 288.2.12) <E539BF4E-56CA-3B20-94B7-F12ABCAA7BB6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x8b8e000 -  0x8b96ff3  com.apple.iLMBiTunesPlugin (2.6.2 - 288.2.12) <8547E357-96D5-3D8F-8423-B49376A77FFE> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x8d00000 -  0x8e55ff9  com.apple.iLMBAperture31Plugin (2.6.2 - 288.2.12) <817A3E85-B1D7-3430-BFF5-AA3E529ACA41> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x8e9d000 -  0x8ff5ff9  com.apple.iLMBiPhoto9Plugin (2.6.2 - 288.2.12) <7F6D66BF-6A80-3FBA-B02F-13AD7D185843> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x903d000 -  0x90edfff  com.apple.iTunesAccess (10.5.3 - 10.5.3) <16ED9ECE-172C-D221-E50F-405A1DD78CC7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cee000 -  0x9cf2ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9d5b000 -  0x9d5dffe +com.lemkesoft.GraphicConverterCMI (2.0 - 1.7) <2615990C-34B4-C411-C9CE-753796BB4A19> /Users/USER/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x9de6000 -  0x9de6ff3 +cl_kernels (??? - ???) <DF659A0D-FD09-4513-BB44-79E90D1D489A> cl_kernels
    0x9dfa000 -  0x9dfbffb +cl_kernels (??? - ???) <D959D665-6936-43C7-A089-E17C3E232040> cl_kernels
    0x9f08000 -  0x9f09ff8 +cl_kernels (??? - ???) <43AB24A6-60BC-4CF5-A718-D7C8CF6C1379> cl_kernels
    0xa07d000 -  0xa082ff7  com.apple.iokit.SCSITaskLib (3.0.3 - 3.0.3) <4838E507-DD48-3026-A2BB-8C037A91F432> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0xa0a2000 -  0xa0acfe3  com.apple.AppleIntelGMAX3100VADriver (7.0.52 - 7.0.0) <1CD6AB54-2F52-3A86-89D8-14879C914F07> /System/Library/Extensions/AppleIntelGMAX3100VADriver.bundle/Contents/MacOS/App leIntelGMAX3100VADriver
    0xa0d5000 -  0xa0dcffe  com.apple.AppleGVAHW.component (1.0 - 1) <13BFEB64-0AD7-3ACE-94DA-806546212480> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xa0e2000 -  0xa0e7ffb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <F3A640A6-52E4-3BE9-86A6-235A0ACD45C3> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xa0f4000 -  0xa0faffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xacc3000 -  0xacc4ffc  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn (4.0 - 4.0.3f12) <6AC8BCC4-40BA-3106-AD2B-5CF93D342631> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0xb114000 -  0xb116ff4 +cl_kernels (??? - ???) <CE8F3C3A-AFC5-447A-BF6C-4D4063F2F4D0> cl_kernels
    0xb1d9000 -  0xb1e6ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb5d0000 -  0xb5d5fe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xb5dc000 -  0xb5defff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xb62c000 -  0xb62cffb +cl_kernels (??? - ???) <321E2581-1769-4B96-A247-D924034F4271> cl_kernels
    0xb62e000 -  0xb6cfff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xb6e9000 -  0xb6eaff8 +cl_kernels (??? - ???) <B9AD480F-11F8-4189-BA15-4C84E8C75041> cl_kernels
    0xb766000 -  0xb787fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <C71EE6F3-7B4D-38DA-B3D9-65B0AD4CE313> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb7f8000 -  0xb7fafff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xc4e5000 -  0xc4fdff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc699000 -  0xc85afe2 +net.telestream.wmv.advanced (2.3.8.1 - 2.3.8.1) <C77F8347-4BBF-D78E-EC6B-3ECA0F7C1B83> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xc89e000 -  0xc904fff  com.apple.AppleProResDecoder (3.0 - 542.6) <ABCA83B4-EBDA-3851-95F1-03ED201EBFDD> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xc935000 -  0xc974ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <4460AFFB-17DE-34F0-91C7-A2C90B817146> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xca37000 -  0xcb4dff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xcd06000 -  0xced2ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <ACB95E1B-100E-36FE-BE0F-F2525946B5A8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xcf31000 -  0xcf6aff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xd0b4000 -  0xd441fe3  QuickTimeH264.scalar (??? - ???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0xd4bf000 -  0xd6b1ff2 +net.telestream.wmv.import (2.3.8.1 - 2.3.8.1) <21D9596D-BEE0-A591-F226-412C95FA21D4> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe0d8000 -  0xe0fdfff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.3) <53682AE5-1424-3784-8AA2-E6F159ED4132> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xe10d000 -  0xe159ffb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xe17c000 -  0xe1a5fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xe703000 -  0xe72aff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D7539881-9A0B-37CE-BB89-DAACF14ECEB4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xe73d000 -  0xe747fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xea41000 -  0xea58fff  com.apple.podcastproducer.kit (2.0 - 245) <91640030-7867-3657-B6F6-2BF058D3546D> /System/Library/PrivateFrameworks/PodcastProducerKit.framework/PodcastProducerK it
    0xeb4f000 -  0xeb5eff2  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <65E0DBCA-1D6B-3AB7-ACDF-FBBF703E2BB8> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
    0xeb6b000 -  0xeb9cff2  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <DA7876AF-C4E2-3FC5-B582-52E65CD2011E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0xf052000 -  0xf0affff  com.apple.proapps.MIO (1.0.5 - 509) <DC6326C3-FDA8-3DA3-DFE9-FA268A017B82> /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xf0eb000 -  0xf125ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xf140000 -  0xf14fff7  com.apple.MP4RADPlugin (1.1 - 507) <E4690B7C-C4E0-C7AC-3D52-07594DD6A58D> /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0xf4a2000 -  0xf4ecffb  com.apple.CoreMediaIOServices (151.0 - 3232) <0C456E67-311F-3047-9F8E-FB0EAE567DED> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xf76f000 -  0xf7c1ff3  com.apple.AppleVADriver (5.0.14 - 5.0.14) <1D768F51-833B-3A05-B8D3-7AE09EBB7BAE> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0xf7e7000 -  0xf860ff5  com.apple.frameworks.server.foundation (10.7.3 - 185.5) <383D3C16-C9AB-3306-BB26-71833365CDFE> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
    0xff7b000 -  0xffa4ffb  com.apple.cmio.DAL.VDC_4 (210.0 - 3180) <82CD4CB5-D357-35A4-A078-C221566D47D7> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
    0xffae000 - 0x1000eff7  com.apple.CMIOQTUnits (210.0 - 3180) <A4EEAED2-DAE3-36AB-9CEE-49636A0A49B4> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQ TUnits.bundle/Contents/MacOS/CMIOQTUnits
    0x1001e000 - 0x1004eff7  com.apple.FWAVC (201.47 - 47) <4B38E6AF-AC02-3D8F-8362-31100A74FCF4> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1025c000 - 0x10284ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1028c000 - 0x102a9fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <18F1CA40-D308-DD8B-D4EA-68442FED0C99> /Library/QuickTime/Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x102b4000 - 0x102d1fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <B6DDC135-B99A-954C-C981-239B8A15265F> /Library/QuickTime/Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x102dc000 - 0x10305ffb  com.apple.mio.DAL.VDC_4 (151.0 - 3232) <42F26626-7A26-399E-9CE6-FB5D9A5CE875> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x21878000 - 0x218c6ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x218d0000 - 0x21944ff5  com.apple.frameworks.server.kit (10.7.2 - 171.5) <98C6CE24-3F76-3C66-A4F0-ACAC884B045F> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
    0x26ab7000 - 0x26ae2ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x2ae62000 - 0x2afd6ff7  com.apple.CMIOUnits (210.0 - 3180) <787E53C3-8AAF-3202-98D2-741A4F4C0D1D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
    0x2ce7e000 - 0x2ce98fff +AdobeBIB (??? - ???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x2e487000 - 0x2e64fff7  com.apple.MPEG2PSRADPlugin (1.2 - 425) <550615C1-A261-71B5-2F0A-28788703EF71> /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0x333fc000 - 0x33a63feb  com.apple.AVCHDPlugin (1.0.3 - 416) <EE5E94D7-A159-E3A0-84E9-DF61FF8BBFFC> /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0x3867a000 - 0x386b6fc7 +com.adobe.vcmenu (??? - 4.0.0.344) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe9d000 - 0x8fecfaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900bbff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2315) <17DE2163-96B2-301F-BCF5-256D92CCF13F> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x900bc000 - 0x901d3fe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90209000 - 0x90432ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90433000 - 0x90474ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    0x90475000 - 0x9047fffc  com.apple.NSServerNotificationCenter (4.0 - 4.0) <027FD93B-7F9E-3853-843F-584759761970> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x90480000 - 0x904a9ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x904aa000 - 0x904acffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904ad000 - 0x906f6ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x906f7000 - 0x90aeaffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x90aeb000 - 0x90b21ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b22000 - 0x90e50fff  com.apple.FinderKit (1.0.1 - 1.0.1) <5D4B0D33-C8FB-3E85-8B19-052B2A9B9918> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x90e51000 - 0x90edefe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90edf000 - 0x90eeaffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <92C8B5DE-ACAB-36DF-9CA8-F113A28C4B20> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90eeb000 - 0x90eecff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x90eed000 - 0x90ef7fff  com.apple.CoreBluetooth (100.7 - 1) <5E69FE35-47A1-3629-9031-B67DE01F90DE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x915b3000 - 0x915b4ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x915b5000 - 0x915e0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x915e1000 - 0x91668fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9167a000 - 0x9186fff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91870000 - 0x9192dff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9192e000 - 0x91933ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x91934000 - 0x9199cff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9199d000 - 0x919a2ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x919a3000 - 0x919f3ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x919f4000 - 0x91a23ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x91a24000 - 0x91a3cff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x91a3d000 - 0x91a3dfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a80000 - 0x91c57fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91d14000 - 0x91d57ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x91d58000 - 0x91d6dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d6e000 - 0x91d71fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x91d72000 - 0x91dc2ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91dc3000 - 0x91dc7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91dc8000 - 0x91e14ff2  com.apple.GraphKit (1.0.5 - 30) <B4B039E8-8C61-300C-9B4A-FA824AED5596> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x91e15000 - 0x91e25ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x91e26000 - 0x91e26fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e27000 - 0x91e2fff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x91e30000 - 0x91e4dff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91e4e000 - 0x91e52ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91ec3000 - 0x92024ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92025000 - 0x920a1ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x920a2000 - 0x920b7fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x920b8000 - 0x9214dff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92150000 - 0x921b4fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921b5000 - 0x921b5fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x921b6000 - 0x921d5fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x921d6000 - 0x921d6fff  libffi.dylib (??? - ???) <58A2AA81-461E-3581-9A8C-880A3BDA2D6A> /usr/lib/libffi.dylib
    0x921d7000 - 0x922ceff3  com.apple.PubSub (1.0.5 - 65.28) <D7F21FC5-FE39-3690-B996-F84764CBCFD5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x922cf000 - 0x9232cffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9232d000 - 0x9238fffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92390000 - 0x923d0ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923d1000 - 0x923defff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x923df000 - 0x92413ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x92448000 - 0x9248cff3  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <5F2FB135-3B53-3DA8-B7E1-90A0C5F42127> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9248d000 - 0x9248effd  com.apple.ServerInformation (1.0 - 1) <E964895E-8205-3406-8C9E-E312EA4C83F8> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x9248f000 - 0x9249cfff  com.apple.HelpData (2.1.2 - 72) <37D51522-EDED-38BC-9412-3224ED91A078> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x924dc000 - 0x924feffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x924ff000 - 0x924ffffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92500000 - 0x92844ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92845000 - 0x92850fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x92851000 - 0x928d0ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <A6253E92-F339-306D-9AC0-3CFAB169E8D0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x928d1000 - 0x928d2ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x928d3000 - 0x928e3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x928e4000 - 0x9293fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92944000 - 0x92957ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x92958000 - 0x92a18ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92a19000 - 0x92a55ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92a56000 - 0x92a56fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-

    My 2008 MacBook is becoming increasingly prone to crashing, and I wondered if this crash report from iMovie might contain a clue as to how serious the problem is, and the possible cause. I'd be very grateful for the advice of anyone who understands these things!
    Process:         iMovie [22307]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [164]
    Date/Time:       2012-02-18 16:05:28.362 +0000
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  22  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000050000020
    VM Regions Near 0x50000020:
        shared memory          000000004ef7f000-000000004efa0000 [  132K] rw-/rw- SM=SHM 
    -->
        MALLOC_SMALL           0000000051000000-0000000051800000 [ 8192K] rw-/rwx SM=SHM 
    Application Specific Information:
    objc_msgSend() selector name: _fastCStringContents:
    RAD:Cancel complete.
    thumbnails starting: VM 1004.49 MB
    thumbnails done: VM 1009.02 MB
    thumbnails done: VM 1009.09 MB
    thumbnails done: VM 1012.74 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1018.48 MB
    RAD:Ingest cancelled
    thumbnails done: VM 1023.26 MB
    thumbnails done: VM 1049.84 MB
    RAD:Cancel complete.
    thumbnails done: VM 1029.82 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    thumbnails starting: VM 1080.96 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1085.56 MB
    thumbnails done: VM 1097.87 MB
    RAD:Ingest cancelled
    RAD:Cancel complete.
    objc[22307]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x9250217f RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x925094e7 ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x92509356 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9bb51a9c _DPSNextEvent + 678
    10  com.apple.AppKit                        0x9bb51306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.iMovieApp                     0x00044e47 0x1000 + 278087
    12  com.apple.AppKit                        0x9bb4d675 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x9bde1261 NSApplicationMain + 1054
    14  com.apple.iMovieApp                     0x000031b3 0x1000 + 8627
    15  com.apple.iMovieApp                     0x00002a6e 0x1000 + 6766
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x993b2b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x9846ab11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x984696a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.FWAVCPrivate                  0x00f04763 _ZN3AVSL27AVCVideoServicesThreadStartEPNS_28AVCVideoServicesThreadParamsE + 254
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9460c3ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9460c165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9460bf76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x9b333be6 0x9ad47000 + 6212582
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 4:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x9b455b7d 0x9ad47000 + 7400317
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 5:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x993b2b42 __select + 10
    1   com.apple.CoreFoundation                0x91b09ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x9b80ef10 0x9ad47000 + 11304720
    2   com.apple.QuickTimeComponents.component          0x9b3a3d0d 0x9ad47000 + 6671629
    3   com.apple.QuickTimeComponents.component          0x9b80ee43 0x9ad47000 + 11304515
    4   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963fef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x997b73f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9977d806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9977d6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proapps.MIO                   0x0f072909 -[PluginLockPair scanPaths] + 638
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    4   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 11:
    0   libsystem_kernel.dylib                  0x993b283e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x963fee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x963a682a pthread_cond_wait + 48
    3   com.apple.AVCHDPlugin                   0x335baf1f 0x333fc000 + 1830687
    4   com.apple.AVCHDPlugin                   0x335e84ea 0x333fc000 + 2016490
    5   com.apple.AVCHDPlugin                   0x335babbe 0x333fc000 + 1829822
    6   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    7   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 12:
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x334663e8 0x333fc000 + 435176
    2   com.apple.AVCHDPlugin                   0x334e3ce6 0x333fc000 + 949478
    3   com.apple.AVCHDPlugin                   0x33468e98 0x333fc000 + 446104
    4   com.apple.AVCHDPlugin                   0x33466871 0x333fc000 + 436337
    5   libsystem_c.dylib                       0x963fcf05 _pthread_body + 72
    Thread 13:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.DiscRecording                 0x99c170be DRWorkLoop::WorkLoop() + 274
    7   com.apple.DiscRecording                 0x99c16f95 DRWorkLoop::WorkLoopEntry(DRWorkLoop*) + 17
    8   com.apple.DiscRecording                 0x99c16d04 DRThreadObject::StartRoutine(DRThreadObject*) + 142
    9   com.apple.DiscRecording                 0x99c16c75 DRThreadObject::SymbolRoutine(DRThreadObject*) + 17
    10  libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIO                   0x993e2ed2 CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIO                   0x993d8a3d CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.CoreMediaIOServices           0x0f4ae8ea CMIO::DAL::RunLoop::OwnThread(void*) + 160
    7   com.apple.CoreMediaIOServices           0x0f4a4b29 CAPThread::Entry(CAPThread*) + 123
    8   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 16:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91abb328 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x997910f8 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 378
    7   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    8   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    9   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 17:: QTKit: QTVisualContextImageProviderWorkLoop
    0   libsystem_kernel.dylib                  0x993b0c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993b01f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91ab2c7a __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91abbda4 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91abb47c CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91acc1a1 CFRunLoopRun + 129
    6   com.apple.QTKit                         0x9a046792 QTVisualContextImageProviderWorkLoop + 124
    7   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 18:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 19:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 20:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d34fedb 0xd0b4000 + 2735835
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 21:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x993b0c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x0d3503f3 0xd0b4000 + 2737139
    2   QuickTimeH264.scalar                    0x0d40d5e3 0xd0b4000 + 3511779
    3   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libobjc.A.dylib                         0x99a60d47 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x91a8bb8d CFStringGetCStringPtr + 781
    2   com.apple.CoreFoundation                0x91a9904a CFStringFindWithOptionsAndLocale + 410
    3   com.apple.CoreFoundation                0x91a98e9c CFStringFindWithOptions + 60
    4   com.apple.CoreFoundation                0x91aa55ca CFURLCreateStringByReplacingPercentEscapes + 1194
    5   com.apple.CoreFoundation                0x91aa6542 CFURLCreateStringByReplacingPercentEscapesUsingEncoding + 66
    6   com.apple.CoreFoundation                0x91aa649e URLPathToPOSIXPath + 46
    7   com.apple.CoreFoundation                0x91a9d34a CFURLCreateStringWithFileSystemPath + 1866
    8   com.apple.CoreFoundation                0x91a9cbed CFURLCopyFileSystemPath + 45
    9   com.apple.Foundation                    0x99729147 -[NSURL(NSURL) path] + 62
    10  com.apple.iLifeMediaBrowser             0x92862cee -[ILMediaObject setURL:] + 147
    11  com.apple.iLMBiTunesPlugin              0x08b93abf 0x8b8e000 + 23231
    12  com.apple.iLMBiTunesPlugin              0x08b90a29 0x8b8e000 + 10793
    13  com.apple.iLMBiTunesPlugin              0x08b93f71 0x8b8e000 + 24433
    14  com.apple.iLifeMediaBrowser             0x928945e0 -[ILMediaManager _performLoadData] + 216
    15  com.apple.iLifeMediaBrowser             0x92894351 -[ILMediaManager _loadDataThreaded] + 514
    16  com.apple.CoreFoundation                0x91b1db6d __invoking___ + 29
    17  com.apple.CoreFoundation                0x91b1daa9 -[NSInvocation invoke] + 137
    18  com.apple.Foundation                    0x9985761a -[NSInvocationOperation main] + 267
    19  com.apple.Foundation                    0x9977237b -[__NSOperationInternal start] + 1177
    20  com.apple.Foundation                    0x99771edb -[NSOperation start] + 67
    21  com.apple.Foundation                    0x9978602e ____NSOQSchedule_block_invoke_2 + 135
    22  libdispatch.dylib                       0x98468e11 _dispatch_call_block_and_release + 15
    23  libdispatch.dylib                       0x98469e70 _dispatch_worker_thread2 + 231
    24  libsystem_c.dylib                       0x963fcb24 _pthread_wqthread + 346
    25  libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x993b302e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x963fcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x963fe6fe start_wqthread + 30
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x993b2bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x963af7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x963af558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9bd98c1e -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x99784e59 -[NSThread main] + 45
    5   com.apple.Foundation                    0x99784e09 __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x963faed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x963fe6de thread_start + 34
    Thread 22 crashed with X86 Thread State (32-bit):
      eax: 0x0a208390  ebx: 0x00000000  ecx: 0x9c533270  edx: 0x50000000
      edi: 0x00000000  esi: 0x91a8b88e  ebp: 0xb0101828  esp: 0xb0101808
       ss: 0x0000001f  efl: 0x00010206  eip: 0x99a60d47   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x50000020
    Logical CPU: 1
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b2ff7  com.apple.mobiledevice (503.2 - 503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fa000 -   0x635fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x673000 -   0x674ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x679000 -   0x67aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x680000 -   0x71fff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77c000 -   0x829ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x86e000 -   0x86ffff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x873000 -   0x898ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x89f000 -   0x8d3fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8d9000 -   0xa40fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa44000 -   0xa67ffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa75000 -   0xc02ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf00000 -   0xf30ff7  com.apple.FWAVCPrivate (52.47 - 47) <8E724EF3-79D6-3B0D-8A57-6E13DA3EACB5> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/FWAVCPrivate
      0xf84000 -   0xfb1ff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
      0xff3000 -   0xff6ff3 +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x31a5000 -  0x3312ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x3346000 -  0x343dffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x3474000 -  0x34ccfff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x3521000 -  0x3523fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <114A418A-D35E-3859-9CF2-43A8EBEE5223> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x3528000 -  0x352bffe  com.apple.DirectoryServicesSource (1.2 - 1083) <0986E1F9-47D8-3E90-BAA1-702336BB0371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3531000 -  0x3537fff  com.apple.AddressBook.LDAPSource (1.2 - 1083) <5D6185FA-8E19-3926-B687-078E5AB0D4F4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x399d000 -  0x3df2ff7  com.apple.driver.AppleIntelGMAX3100GLDriver (7.0.52 - 7.0.0) <5187FA1B-C47C-3AAA-9FCB-E68464DE648A> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x5596000 -  0x55d5fff  com.apple.ExchangeSource (1.2 - 1083) <4E60AD70-A474-3D9A-B424-219A0CC02D55> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
    0x5610000 -  0x566bfff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x574f000 -  0x5756ff5  com.apple.iLMBAperturePlugin (2.6.2 - 288.2.12) <A9882D14-D1F2-3724-A486-DAD561ECF2E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x575d000 -  0x575dfff  com.apple.iLMBAppDefPlugin (2.6.2 - 288.2.12) <13748A1D-487A-3815-94A7-E5342AD254DC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x887c000 -  0x8885ffc  com.apple.iLMBFinalCutPlugin (2.6.2 - 288.2.12) <AB6A3216-4F2D-344C-BBA8-69DA7273D699> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0x888b000 -  0x888cfff  com.apple.iLMBFolderPlugin (2.6.2 - 288.2.12) <E9F003F7-D978-3E7A-A15D-04BABB025F09> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x8891000 -  0x8892ff7  com.apple.iLMBMoviesFolderPlugin (2.6.2 - 288.2.12) <198BA9E9-5FE6-3747-AA19-90DC344730E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0x88bc000 -  0x88bffff  com.apple.iLMBGarageBandPlugin (2.6.2 - 288.2.12) <011958D7-5E85-3820-8BF1-29D5082F9B05> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x88c5000 -  0x88d0ff3  com.apple.iLMBiMoviePlugin (2.6.2 - 288.2.12) <3A7C1FA1-8F5D-3620-B8EA-9093323D8388> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0x88d7000 -  0x88d9ff8  com.apple.iLMBPhotoBooth2Plugin (2.6.2 - 288.2.12) <F197CF53-0EE3-32F9-9539-47C2FCEA7224> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0x88e7000 -  0x88efff3  com.apple.iLMBiPhotoPlugin (2.6.2 - 288.2.12) <F4057373-3E0F-3E7C-A65E-C204B6E1018E> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0x88f6000 -  0x88f7ff7  com.apple.iLMBPhotoBoothPlugin (2.6.2 - 288.2.12) <078CF428-0527-355B-8BB1-90E83C7F5EC0> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0x8b73000 -  0x8b86ff7  com.apple.iLMBiPhoto8Plugin (2.6.2 - 288.2.12) <E539BF4E-56CA-3B20-94B7-F12ABCAA7BB6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0x8b8e000 -  0x8b96ff3  com.apple.iLMBiTunesPlugin (2.6.2 - 288.2.12) <8547E357-96D5-3D8F-8423-B49376A77FFE> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x8d00000 -  0x8e55ff9  com.apple.iLMBAperture31Plugin (2.6.2 - 288.2.12) <817A3E85-B1D7-3430-BFF5-AA3E529ACA41> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0x8e9d000 -  0x8ff5ff9  com.apple.iLMBiPhoto9Plugin (2.6.2 - 288.2.12) <7F6D66BF-6A80-3FBA-B02F-13AD7D185843> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0x903d000 -  0x90edfff  com.apple.iTunesAccess (10.5.3 - 10.5.3) <16ED9ECE-172C-D221-E50F-405A1DD78CC7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x9cee000 -  0x9cf2ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x9d5b000 -  0x9d5dffe +com.lemkesoft.GraphicConverterCMI (2.0 - 1.7) <2615990C-34B4-C411-C9CE-753796BB4A19> /Users/USER/Library/Contextual Menu Items/GraphicConverterCMI.plugin/Contents/MacOS/GraphicConverterCMI
    0x9de6000 -  0x9de6ff3 +cl_kernels (??? - ???) <DF659A0D-FD09-4513-BB44-79E90D1D489A> cl_kernels
    0x9dfa000 -  0x9dfbffb +cl_kernels (??? - ???) <D959D665-6936-43C7-A089-E17C3E232040> cl_kernels
    0x9f08000 -  0x9f09ff8 +cl_kernels (??? - ???) <43AB24A6-60BC-4CF5-A718-D7C8CF6C1379> cl_kernels
    0xa07d000 -  0xa082ff7  com.apple.iokit.SCSITaskLib (3.0.3 - 3.0.3) <4838E507-DD48-3026-A2BB-8C037A91F432> /System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/ SCSITaskUserClient.kext/Contents/PlugIns/SCSITaskLib.plugin/Contents/MacOS/SCSIT askLib
    0xa0a2000 -  0xa0acfe3  com.apple.AppleIntelGMAX3100VADriver (7.0.52 - 7.0.0) <1CD6AB54-2F52-3A86-89D8-14879C914F07> /System/Library/Extensions/AppleIntelGMAX3100VADriver.bundle/Contents/MacOS/App leIntelGMAX3100VADriver
    0xa0d5000 -  0xa0dcffe  com.apple.AppleGVAHW.component (1.0 - 1) <13BFEB64-0AD7-3ACE-94DA-806546212480> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xa0e2000 -  0xa0e7ffb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <F3A640A6-52E4-3BE9-86A6-235A0ACD45C3> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xa0f4000 -  0xa0faffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xacc3000 -  0xacc4ffc  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn (4.0 - 4.0.3f12) <6AC8BCC4-40BA-3106-AD2B-5CF93D342631> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0xb114000 -  0xb116ff4 +cl_kernels (??? - ???) <CE8F3C3A-AFC5-447A-BF6C-4D4063F2F4D0> cl_kernels
    0xb1d9000 -  0xb1e6ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xb5d0000 -  0xb5d5fe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xb5dc000 -  0xb5defff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xb62c000 -  0xb62cffb +cl_kernels (??? - ???) <321E2581-1769-4B96-A247-D924034F4271> cl_kernels
    0xb62e000 -  0xb6cfff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xb6e9000 -  0xb6eaff8 +cl_kernels (??? - ???) <B9AD480F-11F8-4189-BA15-4C84E8C75041> cl_kernels
    0xb766000 -  0xb787fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <C71EE6F3-7B4D-38DA-B3D9-65B0AD4CE313> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xb7f8000 -  0xb7fafff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xc4e5000 -  0xc4fdff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xc699000 -  0xc85afe2 +net.telestream.wmv.advanced (2.3.8.1 - 2.3.8.1) <C77F8347-4BBF-D78E-EC6B-3ECA0F7C1B83> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0xc89e000 -  0xc904fff  com.apple.AppleProResDecoder (3.0 - 542.6) <ABCA83B4-EBDA-3851-95F1-03ED201EBFDD> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0xc935000 -  0xc974ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <4460AFFB-17DE-34F0-91C7-A2C90B817146> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0xca37000 -  0xcb4dff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0xcd06000 -  0xced2ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <ACB95E1B-100E-36FE-BE0F-F2525946B5A8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xcf31000 -  0xcf6aff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xd0b4000 -  0xd441fe3  QuickTimeH264.scalar (??? - ???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0xd4bf000 -  0xd6b1ff2 +net.telestream.wmv.import (2.3.8.1 - 2.3.8.1) <21D9596D-BEE0-A591-F226-412C95FA21D4> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0xe0d8000 -  0xe0fdfff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.3) <53682AE5-1424-3784-8AA2-E6F159ED4132> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xe10d000 -  0xe159ffb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0xe17c000 -  0xe1a5fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xe703000 -  0xe72aff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D7539881-9A0B-37CE-BB89-DAACF14ECEB4> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xe73d000 -  0xe747fff  com.apple.IOFWDVComponents (2.0.7 - 2.0.7) <811CF4D6-15B2-3EDA-B026-5E4B28C0F742> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xea41000 -  0xea58fff  com.apple.podcastproducer.kit (2.0 - 245) <91640030-7867-3657-B6F6-2BF058D3546D> /System/Library/PrivateFrameworks/PodcastProducerKit.framework/PodcastProducerK it
    0xeb4f000 -  0xeb5eff2  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <65E0DBCA-1D6B-3AB7-ACDF-FBBF703E2BB8> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
    0xeb6b000 -  0xeb9cff2  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <DA7876AF-C4E2-3FC5-B582-52E65CD2011E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0xf052000 -  0xf0affff  com.apple.proapps.MIO (1.0.5 - 509) <DC6326C3-FDA8-3DA3-DFE9-FA268A017B82> /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0xf0eb000 -  0xf125ff7  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311) <D88F358F-5971-3D0F-996F-B384501DA11E> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0xf140000 -  0xf14fff7  com.apple.MP4RADPlugin (1.1 - 507) <E4690B7C-C4E0-C7AC-3D52-07594DD6A58D> /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0xf4a2000 -  0xf4ecffb  com.apple.CoreMediaIOServices (151.0 - 3232) <0C456E67-311F-3047-9F8E-FB0EAE567DED> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0xf76f000 -  0xf7c1ff3  com.apple.AppleVADriver (5.0.14 - 5.0.14) <1D768F51-833B-3A05-B8D3-7AE09EBB7BAE> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0xf7e7000 -  0xf860ff5  com.apple.frameworks.server.foundation (10.7.3 - 185.5) <383D3C16-C9AB-3306-BB26-71833365CDFE> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
    0xff7b000 -  0xffa4ffb  com.apple.cmio.DAL.VDC_4 (210.0 - 3180) <82CD4CB5-D357-35A4-A078-C221566D47D7> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/ MacOS/VDC
    0xffae000 - 0x1000eff7  com.apple.CMIOQTUnits (210.0 - 3180) <A4EEAED2-DAE3-36AB-9CEE-49636A0A49B4> /System/Library/Frameworks/CoreMediaIO.framework/Resources/QuickTimeUnits/CMIOQ TUnits.bundle/Contents/MacOS/CMIOQTUnits
    0x1001e000 - 0x1004eff7  com.apple.FWAVC (201.47 - 47) <4B38E6AF-AC02-3D8F-8362-31100A74FCF4> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1025c000 - 0x10284ff3  com.apple.QuickTimeIIDCDigitizer (7.7.1 - 2315) <E860A690-288A-30D1-8C30-09C17347C401> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x1028c000 - 0x102a9fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <18F1CA40-D308-DD8B-D4EA-68442FED0C99> /Library/QuickTime/Google Camera Adapter 0.component/Contents/MacOS/Google Camera Adapter 0
    0x102b4000 - 0x102d1fe7 +com.google.talk.camera (2.6.1.5251 - 2.6.1.5251) <B6DDC135-B99A-954C-C981-239B8A15265F> /Library/QuickTime/Google Camera Adapter 1.component/Contents/MacOS/Google Camera Adapter 1
    0x102dc000 - 0x10305ffb  com.apple.mio.DAL.VDC_4 (151.0 - 3232) <42F26626-7A26-399E-9CE6-FB5D9A5CE875> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x21878000 - 0x218c6ff7  com.apple.QuickTimeUSBVDCDigitizer (2.7.1 - 2.7.1) <1D79F9C3-E0F4-33AE-A390-38DD884DEA28> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x218d0000 - 0x21944ff5  com.apple.frameworks.server.kit (10.7.2 - 171.5) <98C6CE24-3F76-3C66-A4F0-ACAC884B045F> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
    0x26ab7000 - 0x26ae2ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x2ae62000 - 0x2afd6ff7  com.apple.CMIOUnits (210.0 - 3180) <787E53C3-8AAF-3202-98D2-741A4F4C0D1D> /System/Library/Frameworks/CoreMediaIO.framework/Resources/CMIOUnits.bundle/Con tents/MacOS/CMIOUnits
    0x2ce7e000 - 0x2ce98fff +AdobeBIB (??? - ???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x2e487000 - 0x2e64fff7  com.apple.MPEG2PSRADPlugin (1.2 - 425) <550615C1-A261-71B5-2F0A-28788703EF71> /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0x333fc000 - 0x33a63feb  com.apple.AVCHDPlugin (1.0.3 - 416) <EE5E94D7-A159-E3A0-84E9-DF61FF8BBFFC> /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0x3867a000 - 0x386b6fc7 +com.adobe.vcmenu (??? - 4.0.0.344) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe9d000 - 0x8fecfaa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900bbff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2315) <17DE2163-96B2-301F-BCF5-256D92CCF13F> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x900bc000 - 0x901d3fe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90209000 - 0x90432ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90433000 - 0x90474ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    0x90475000 - 0x9047fffc  com.apple.NSServerNotificationCenter (4.0 - 4.0) <027FD93B-7F9E-3853-843F-584759761970> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x90480000 - 0x904a9ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x904aa000 - 0x904acffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x904ad000 - 0x906f6ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x906f7000 - 0x90aeaffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x90aeb000 - 0x90b21ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90b22000 - 0x90e50fff  com.apple.FinderKit (1.0.1 - 1.0.1) <5D4B0D33-C8FB-3E85-8B19-052B2A9B9918> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x90e51000 - 0x90edefe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90edf000 - 0x90eeaffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <92C8B5DE-ACAB-36DF-9CA8-F113A28C4B20> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x90eeb000 - 0x90eecff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x90eed000 - 0x90ef7fff  com.apple.CoreBluetooth (100.7 - 1) <5E69FE35-47A1-3629-9031-B67DE01F90DE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
    0x915b3000 - 0x915b4ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x915b5000 - 0x915e0fff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x915e1000 - 0x91668fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9167a000 - 0x9186fff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91870000 - 0x9192dff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9192e000 - 0x91933ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x91934000 - 0x9199cff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9199d000 - 0x919a2ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x919a3000 - 0x919f3ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x919f4000 - 0x91a23ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x91a24000 - 0x91a3cff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x91a3d000 - 0x91a3dfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91a80000 - 0x91c57fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91d14000 - 0x91d57ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x91d58000 - 0x91d6dff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91d6e000 - 0x91d71fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x91d72000 - 0x91dc2ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91dc3000 - 0x91dc7ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91dc8000 - 0x91e14ff2  com.apple.GraphKit (1.0.5 - 30) <B4B039E8-8C61-300C-9B4A-FA824AED5596> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
    0x91e15000 - 0x91e25ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x91e26000 - 0x91e26fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e27000 - 0x91e2fff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x91e30000 - 0x91e4dff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91e4e000 - 0x91e52ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x91ec3000 - 0x92024ffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92025000 - 0x920a1ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x920a2000 - 0x920b7fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x920b8000 - 0x9214dff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x92150000 - 0x921b4fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921b5000 - 0x921b5fff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x921b6000 - 0x921d5fff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x921d6000 - 0x921d6fff  libffi.dylib (??? - ???) <58A2AA81-461E-3581-9A8C-880A3BDA2D6A> /usr/lib/libffi.dylib
    0x921d7000 - 0x922ceff3  com.apple.PubSub (1.0.5 - 65.28) <D7F21FC5-FE39-3690-B996-F84764CBCFD5> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x922cf000 - 0x9232cffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9232d000 - 0x9238fffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92390000 - 0x923d0ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x923d1000 - 0x923defff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x923df000 - 0x92413ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x92448000 - 0x9248cff3  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <5F2FB135-3B53-3DA8-B7E1-90A0C5F42127> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9248d000 - 0x9248effd  com.apple.ServerInformation (1.0 - 1) <E964895E-8205-3406-8C9E-E312EA4C83F8> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x9248f000 - 0x9249cfff  com.apple.HelpData (2.1.2 - 72) <37D51522-EDED-38BC-9412-3224ED91A078> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x924dc000 - 0x924feffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x924ff000 - 0x924ffffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x92500000 - 0x92844ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92845000 - 0x92850fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x92851000 - 0x928d0ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <A6253E92-F339-306D-9AC0-3CFAB169E8D0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x928d1000 - 0x928d2ffd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x928d3000 - 0x928e3fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x928e4000 - 0x9293fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x92944000 - 0x92957ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x92958000 - 0x92a18ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92a19000 - 0x92a55ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92a56000 - 0x92a56fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-

Maybe you are looking for