Display content if user group

I'm using PL/SQL to render a whole host of content in HTML via Oracle Portal.
What I'd like to do is display a piece of HTML if the current user is within groups X, Y or Z.
So in layman's terms:
IF user_group = SLCPortalDeveloper
then
htp.p('<p>this is some html content</p>');

No joy with that. My existing PL/SQL is quite deep though so wonder if that's an issue?
<ORACLE>
declare
l_cur_user     varchar2(30);
l_last_logon   varchar2(30);
l_count        number;
l_first_name   varchar2(60);
l_news1           NUMBER;
l_news2           NUMBER;
l_news3           NUMBER;
l_news4           NUMBER;
l_news5           NUMBER;
l_content_id      NUMBER;
news_story        VARCHAR2(2000);
summary           VARCHAR2(3000);
newsdate          VARCHAR2(1000);
image             VARCHAR2(10);
alt_tag           VARCHAR2(1000);
    CURSOR cur_rec IS
    SELECT REPLACE(REPLACE(extract(cim.content_xml,
'content/summary/text()').getStringVal(),'&amp;','&'),'&apos;','''') summary
    FROM CM$CONTENT_ITEMS cim,
    CM$CONTENT_CATEGORIES ccy,
    CM$STORAGE_TYPES ste
    WHERE cim.id = 5656;
    r_cur_rec cur_rec%rowtype;
    CURSOR c_news_details IS
    SELECT REPLACE(REPLACE(extract(cim.content_xml, 'content/headline/text()').getStringVal(),'&amp;','&'),'&apos;','''') news_story,
    REPLACE(REPLACE(extract(cim.content_xml, 'content/summary/text()').getStringVal(),'&amp;','&'),'&apos;','''') summary,
    extract(cim.content_xml, 'content/date/text()').getStringVal() newsdate,
    REPLACE(REPLACE(extract(cim.content_xml, 'content/link/text()').getStringVal(),'&amp;','&'),'&apos;','''') link,
    REPLACE(REPLACE(extract(cim.content_xml, 'content/newspar15/text()').getStringVal(),'&amp;','&'),'&apos;','''') url,
    extract(cim.content_xml, 'content/media3/text()').getStringVal() image,
    (SELECT (REPLACE(REPLACE(extract(metadata, 'metadata/Title/text()').getStringVal(),'&amp;','&'),'&apos;','''')) tag
    FROM CM$CONTENT_ITEMS
    WHERE id = extract(cim.content_xml, 'content/media3/text()').getStringVal()) alt_tag
    FROM
    CM$CONTENT_ITEMS cim
    WHERE cim.id = l_content_id;
    r_news_details c_news_details%ROWTYPE;
begin
l_cur_user := slcportal.wwctx_api.get_user;
    l_news1 := :news1;
    l_news2 := :news2;
    l_news3 := :news3;
    l_news4 := :news4;
    l_news5 := :news5;
select count(*)
into l_count
from xxslc_corp_personnel
where username = l_cur_user;
if l_count = 0 then
  insert into xxslc_corp_personnel(username, user_last_logged_on,created_by)
  values(upper(l_cur_user),to_char(sysdate,'DD/MM/RRRR'),l_cur_user);
else
  select nvl(user_last_logged_on,'Null')
  into l_last_logon
  from xxslc_corp_personnel
  where username = l_cur_user;
  if (l_last_logon not like to_char(sysdate,'DD/MM/RRRR')) or (l_last_logon = 'Null') then
    update xxslc_corp_personnel
    set user_last_logged_on = to_char(sysdate,'DD/MM/RRRR')
    where upper(username) = upper(l_cur_user);
    insert into xxslc_corp_personnel_stats
    values(upper(l_cur_user), to_date(sysdate,'DD/MM/RRRR'));
  end if;
end if;
select name_of_user
into l_first_name
from xxslc_corp_personnel
where username = l_cur_user;
htp.p('<div id="wrapper">');
htp.p('<div id="header">
    <div id="top">
      <ul id="toplinks">
        <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_ATOZ/">A to Z</a></li>
        <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_SITEMAP/">Sitemap</a></li>
      </ul>
    </div>
    <div id="search">
      <p>      <form name="IntSearch" action="/portal/pls/portal/SLCINTRANET.keywordsearch" method="POST">
        <label>search</label>
        <input name="p_search_text" type="text" />
        <input type="submit" name="p_request" id="button" value="Search" />
</form>
        </p>
    </div>
    <img src="/portal/page/portal/INTRANET/Intranet_Components/slclogo.gif" alt="south lanarkshire council logo" width="100" height="54" class="logo" /><img src="/portal/page/portal/INTRANET/Intranet_Components/connecting-you-at-work-logo.gif" alt="connecting you at work logo" width="165" height="54" class="logo" />
    <div class="jscriptdate">
<script language="Javascript" type="text/javascript">
document.write("<p>" + dayName[now.getDay()] + " " + now.getDate() + " " + monName[now.getMonth()] + " 2009" + "<\/p>")
</script>
</div>
</div>');
htp.p('<div id="welcome">
  <p class="welcomeheading">Hello ' || substr(l_first_name,1,instr(l_first_name,' ',1)-1) || '</p>
  </div>');
htp.p('<div id="newsholder"><ul id="news">');
     l_content_id := l_news1;
    open c_news_details;
    fetch c_news_details into r_news_details;
    htp.p('<li><img src="../../../../pscmsingleitem/RenderMedia?mediaPk='||r_news_details.image||'" alt= "'||r_news_details.alt_tag||'"><h3><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_NEWS/INTRA_NEWS_FULL_STORY?content_id=' || l_content_id || '">'||r_news_details.news_story||'</a></h3><p class="date">'||r_news_details.newsdate||'</p><p>'||r_news_details.summary||'</p>');
    close c_news_details;
      htp.p('</li>');
      l_content_id := l_news2;
    open c_news_details;
    fetch c_news_details into r_news_details;
    htp.p('<li><img src="../../../../pscmsingleitem/RenderMedia?mediaPk='||r_news_details.image||'" alt= "'||r_news_details.alt_tag||'"><h3><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_NEWS/INTRA_NEWS_FULL_STORY?content_id=' || l_content_id || '">'||r_news_details.news_story||'</a></h3><p class="date">'||r_news_details.newsdate||'</p><p>'||r_news_details.summary||'</p>');
    close c_news_details;
      htp.p('</li>');
      l_content_id := l_news3;
    open c_news_details;
    fetch c_news_details into r_news_details;
    htp.p('<li><img src="../../../../pscmsingleitem/RenderMedia?mediaPk='||r_news_details.image||'" alt= "'||r_news_details.alt_tag||'"><h3><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_NEWS/INTRA_NEWS_FULL_STORY?content_id=' || l_content_id || '">'||r_news_details.news_story||'</a></h3><p class="date">'||r_news_details.newsdate||'</p><p>'||r_news_details.summary||'</p>');
    close c_news_details;
      htp.p('</li>');
      l_content_id := l_news4;
    open c_news_details;
    fetch c_news_details into r_news_details;
    htp.p('<li><img src="../../../../pscmsingleitem/RenderMedia?mediaPk='||r_news_details.image||'" alt= "'||r_news_details.alt_tag||'"><h3><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_NEWS/INTRA_NEWS_FULL_STORY?content_id=' || l_content_id || '">'||r_news_details.news_story||'</a></h3><p class="date">'||r_news_details.newsdate||'</p><p>'||r_news_details.summary||'</p>');
    close c_news_details;
      htp.p('</li>');
      l_content_id := l_news5;
    open c_news_details;
    fetch c_news_details into r_news_details;
    htp.p('<li><img src="../../../../pscmsingleitem/RenderMedia?mediaPk='||r_news_details.image||'" alt= "'||r_news_details.alt_tag||'"><h3><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_NEWS/INTRA_NEWS_FULL_STORY?content_id=' || l_content_id || '">'||r_news_details.news_story||'</a></h3><p class="date">'||r_news_details.newsdate||'</p><p>'||r_news_details.summary||'</p>');
    close c_news_details;
      htp.p('</li>');
      htp.p('</ul></div>');
htp.p('<div id="directory"><img src="/portal/page/portal/INTRANET/Intranet_Components/empdirectory.gif" width="40" height="39" alt="employee directory" />
    <p class="directoryheading">Employee Directory </p>');
htp.p('<form method="get" action="slcintranet.xxslc_call_bts">');
htp.p('<p>
        <label>Forename</label>
<input type="text" name="p_forename" />      </p>
      <p>
        <label>Surname</label>
        <input type="text" name="p_surname" />
      </p>
      <p>
        <label>Resource</label>
        <select name="p_resource">
          <option value="" selected="selected"></option>
          <option>Community</option>
          <option>Corporate</option>
          <option>Education</option>
          <option>Enterprise</option>
          <option>Finance and IT</option>
          <option>Housing and Technical</option>
          <option>Social Work</option>
          <option>SLL</option>
        </select>
      </p>
      <p class="submit">
        <input type="submit" name="search" id="button" value="search" />
      </p>
    </form>
  </div>');
htp.p('<div class="spacer"></div>');
htp.p('<ul id="links">
    <li id="linkwhatson"><a href="/portal/page/portal/EXTERNAL_WEBSITE_DEVELOPMENT/SLC_ONLINE_HOME/SLC_WHATS_ON">whats on</a></li>
    <li id="linkpeopleconnect"><a href="/portal/page/portal/INTRANET/People_Connect">people connect</a></li>
    <li id="linkemployeeass"><a href="">Employee Assistance Programme</a></li>
    <li id="linklearndev"><a href="/portal/page/portal/4F656F414FAE5DFFE040270A0DFE12C0">Learning and Development</a></li>
  </ul>');  
htp.p('<div id="myworkplace">
    <h2><img src="/portal/page/portal/INTRANET/Intranet_Components/myworkplace.gif" width="45" height="42" alt="my workplace" />My workplace</h2>
    <ul>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_DEPARTMENTS">Resources</a></li>
      <li><a href="http://internal.southlanarkshire.gov.uk/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_KEY_POLICIES/">Key policies</a></li>
      <li><a href="http://internal.southlanarkshire.gov.uk/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_EMP_INFO">Personnel information</a></li>
      <li><a href="http://ecas.southlanarkshire.gov.uk/default.asp">Councillors and committees</a></li>
      <!--<li><a href="#">Management tools</a></li>-->
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_DEPARTMENTS/INTRA_CORP_RESOURCES/INTRA_CORP_RES_INFO?resource=Corporate%20Resources&resourcekey1=corpeqop&reqcatid=10&disptempid=13">Equal opportunities</a></li>
    </ul>
  </div>');
htp.p('<div id="myspace">
    <h2><img src="/portal/page/portal/INTRANET/Intranet_Components/myspace.gif" width="39" height="42" alt="my space" />My space</h2>
    <ul>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_BUY_SELL">Buy and sell</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_HEALTH_WELLBEING/">Healthy working lives</a></li>
      <!--<li><a href="#">Employee benefits</a></li>-->
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_MENUS">Menus</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_ONLINE_SERVICES/INTRA_ONLINE_FORMS/Pre_bookable_lunch_terms">Baguette and go</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_BRAIN_TEASER">Brain teasers</a></li>
      <li><a href="/portal/page/portal/SLL_WEBSITE/Home/Health_and_Fitness/Fitness_Classes_homepage">Fitness timetables</a></li>
    </ul>
  </div>');
htp.p('<div id="myjob">
    <h2><img src="/portal/page/portal/INTRANET/Intranet_Components/myjob.gif" width="40" height="38" alt="my job" />My job</h2>
    <ul>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_ONLINE_SERVICES/INTRA_ONLINE_FORMS/MY_PROFILE/">My profile</a></li>
      <li><a href="https://southlanarkshire.myjobscotland.gov.uk/fe/tpl_southlanarkshire01.asp?newms=jd&id=1158">Job vacancies</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_TRAINING">Learning and development</a></li>
      <li><a href="/portal/page/portal/Intranet_Flexi/ONLINE_FLEXI_MENU">Flexi adjustment form</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_ONLINE_SERVICES/INTRA_ONLINE_FORMS/">Online forms</a></li>
      <li><a href="/portal/page/portal/INTRANET/INTRANET_HOME/INTRA_USER_ASSISTANCE">How do I?</a></li>
      <li><a href="/portal/page/portal/EXTERNAL_WEBSITE_DEVELOPMENT/SLC_ONLINE_HOME/EDUCATION_LIBRARIES/SCHOOL_HOLIDAYS">School holidays</a></li>
    </ul>
  </div>');
htp.p('<div class="clear"></div>');
htp.p('<ul id="adminlinks">');
If user_group IN ('SLCPortalDeveloper')  -- SLCPortalDeveloper
  then
  htp.p('<li><a href="#">Content Administration</a></li>');
end if;
htp.p('  </ul>');
htp.p('<script type="text/javascript" charset="utf-8">
               $(document).ready(function(){
                    $("#news").wslide({
                         width: 620,
                         height: 160,
                         pos: 1,
                         horiz: true
          </script>');
htp.p('<!--close wrapper--></div>');
end;
</ORACLE>

Similar Messages

  • Display Content Groups using  JSP

    I have created an ATG content group with the
    rulesets=<ruleset>\n <accepts>\n <rule op\=and tag\="Show">\n <rule op\=and tag\="Content">\n <rule op\=any tag\="ContentSources">\n </rule>\n <rule op\=and tag\="ContentConditions">\n <rule op\=eq>\n <valueof target\="id">\n <valueof constant\="rootProd">\n </rule>\n </rule>\n </rule>\n </rule>\n </accepts>\n</ruleset>
    But i don't know how to use it/ display the product in the JSP.
    I also created a targeter and was able to display the product using TargetingFirst droplet.
    Please share your views on how to display contents of Content Group in JSP.

    Put it in an applet.
    http://java.sun.com/docs/books/tutorial/applet/index.html

  • Subcribe a Portal User Group to content change events on page?

    Another developer at my shop has created a custom routine that programmatically subscribes the given user to content change events on a page. At the heart of their custom routine are the following Oracle Portal API calls:
    portal.wwctx_api_private.set_context( v_user );
    portal.wwsbr_app_approval.subscribe
    p_object_context_id => v_siteid,
    p_page_id => v_pageid
    ...where v_user is the account we want to subscribe for notification of content changes on the given page.
    I have a need to extend this to allow subscriptions of Portal User Groups (PUGs) for the same content change events. It is not acceptable to statically subscribe the PUG membership, because I do not want a situation where today I subscribe all the members of group X, then tomorrow the membership of group X changes, but the list of subscribed users does not change automatically with the group membership modification. I could just as well manually subscribe each group member without going through the hassle of coding a modified subscription UI and backend routine to handle groups.
    Any suggestions?
    Thanks,
    shastew

    My shop is currently on 10g R1 (9.0.4.3). We will be upgrading to 10g R2 (10.1.2) in a few months, but this is not the 10.1.4 version your document link points to. Is CMEF included actually usable in 10.1.2?
    Also, publish and subscribe solves a particular set of design issues and allows for a certain degree of flexibility of usage, however, I don't see any built-in support for the User Groups that Portal provides for assigning basic page permissions. It's the group support that I'm interested in...and I don't want to have to create duplications of groups outside of what I already have. I don't want to have to write an entire application infrastructure to support outside group membership maintenance just for supporting subscription notifications. This should have already been built-in to interface with the existing Portal page permissions group framework. At our shop, a lot of effort has already been put into setting up and maintaining these built-in groups and we should be able to re-use them for something as brain dead simple as subscription notification.
    I've already given up and opened an enhancement request "TAR" for this.
    shastew

  • Displaying User groups in ACS 4.2

    Is there an easy way to display User groups similar to NDG's?

    Is there an easy way to display User groups similar to NDG's?
    Hi,
    Unfortunately there is no view like viewing NDG in ACS 4.2, Yes you can see different gropus configured in ACS when you go into Group setup and by drag down option you can view the number of groups configured in ACS.
    Hope to Help !!
    Ganesh.H
    Remember to rate the helpful post

  • User group policy turns "display last user" to "ON"

    Hello to all,
    I distribute a simple local user group policy to turn off the "Action Center" at the System tray.
    Every time I do this, the "last...

    Search policy includes groups.
    User is only in one group.
    Still the same problem.
    The tree is very simple, one O and one OU. All policies and users are in
    the OU.
    Ian
    "Ian Russell" <[email protected]> wrote in message
    news:hn_Tc.3065$[email protected]..
    > Hi Craig,
    >
    > I will check that out. It may be the multiple group membership that is
    > causing the problem....
    >
    > "Craig Wilson" <[email protected]> wrote in message
    > news:[email protected]..
    > > 1) Check to make sure you have a search policy defined and that search
    > policy
    > > includes groups.
    > >
    > > 2) Make sure that ONE and only ONE group a user is assigned to has a
    > policy
    > > assigned. Multiple Group Memberships that contain policies will result
    in
    > > seemingly random results. Due to the complex nature of events when
    users
    > belong
    > > to multiple groups that contain policies, Novell actually recommends
    > against the
    > > use of policies for groups. It can be done, but just be sure the limit
    is
    > > maintained.
    > >
    > > Ian Russell wrote:
    > >
    > > > Hi,
    > > > I have ZfD3.2 (SP3) on a NW 6.0 (SP5) server. The user group policy
    does
    > not
    > > > get applied to members of a NetWare group. If I apply it to a user
    > object it
    > > > works.
    > > > Any ideas?
    > > > Ian
    > >
    > > --
    > > Craig Wilson
    > > CNE3, 4, 5 - MCSE - CCNA
    > > NSC Sysop (http://support.novell.com/forums/)
    > >
    > > Tech Writer - http://www.ithowto.com
    > > (I Peter 4:10)
    > >
    > >
    >
    >

  • In Infopath - From User Group webservice First & Last Name are not displaying

    Hi, I am working on Internet faced Infopath Sharepoint 2010 web application.In Infopath form we used a User Group web service to retrieve the first and last names when opening the form. In Development environment its working fine (Ex:- http://sharepoint2010dev:45/)
    then we extend the webapplication with domain name in url.(Ex:http://Domainsp:80/) then the first and last names from User Groups is not working.
    Please give your suggestions to resolve this isssue.
    Any help is appreciated..!

    Hi,
    According to your post, my understanding is that the User Group web service not worked when extend the web application with a domain name in URL.
    Did you change the URL to the UserGroup web service in the Data Connection Wizard?
    As you had changed the URL, I think you should change the URL(http://<site>/_vti_bin/UserGroup.asmx), then check whether it works.
    http://blog.ianchivers.com/2011/01/using-sharepoint-usergroup-web-service.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • WLS 8.1.5  console doesn't show ActiveDirectory (or custom) Users/Groups

    We currently have numerous apps running on a weblogic 8.1.4 portal domain. I am attempting to replicate this domain on 8.1.5. There are four authenticators on our old domain: a DefaultAuthenticator, an ActiveDirectoryAuthenticator, and two Custom Authenticators (based on the sample database authenticator), with JAAS flags set to OPTIONAL for all. Everything was working properly under sp4, including user/group/membership listings in console and authentication. Under sp5, while simple authentication seems to work with all providers, the user/group/membership listings in weblogic console have bad HTML (empty rows under any default authenticator users/groups). The active directory settings were migrated wholesale and I verified that authentication works against this provider. Just no usernames or groupnames. I tested with just ActiveDirectory and DefaultAuthenticator, DefaultIdentityAsserter.
    <p>
    I was able to debug a bit more using our custom authenticators. I have verified that the user and group lists are being requested and returned properly when you click on Manage Users or Manage Groups in weblogic 8.1.5 console. It just seems like somewhere in the console there is a problem and the HTML output is garbled. Here is a sample of my debug text, the method names and classes should be immediately familiar from the sample authenticator:
    <p>
    getUserLoginNamesMatching(*,50)<br>
    loginNames=[BF, DAD, NA, OTN, P1Adm1, P1User1, P2Adm1, P2User1, S, ab, admtest, gw, jb, joeschmo, kw, mf, mh, pa, rn, rt, super, test1, wf]<br>
    Success: listUsers(userNameWildcard = *, maximumToReturn = 2147483647) = Cursor0<br>
    Success: haveCurrent(Cursor = Cursor0) = true<br>
    Success: getCurrentName(Cursor = Cursor0) = BF<br>
    Success: advance(Cursor = Cursor0)<br>
    Success: haveCurrent(Cursor = Cursor0) = true<br>
    Success: getCurrentName(Cursor = Cursor0) = DAD<br>
    Success: advance(Cursor = Cursor0)<br>
    Success: close(Cursor = Cursor0)<br>
    getExistingUser(BF)<br>
    user=new UserEntry( BF, BF , BF, [PDA, ADM], com.otn.mobilelynx2.security.providers.authentication.UserGroupDatabase@7f5e61 )<br>
    Success: getUserDescription(user = BF) = BF<br>
    getExistingUser(DAD)<br>
    Success: haveCurrent(Cursor = Cursor0) = false<br>
    Success: close(Cursor = Cursor0)<br>
    getExistingUser(BF)<br>
    user=new UserEntry( BF, BF , BF, [PDA, ADM], com.otn.mobilelynx2.security.providers.authentication.UserGroupDatabase@7f5e61 )<br>
    Success: getUserDescription(user = BF) = BF<br>
    getExistingUser(DAD)<br>
    user=new UserEntry( DAD, Dummy Alcanto Demoer, LYNX, [PDA], com.otn.mobilelynx2.security.providers.authentication.UserGroupDatabase@7f5e61 )<br>
    Success: getUserDescription(user = DAD) = Dummy Alcanto Demoer<br>
    getExistingUser(NA)<br>
    user=new UserEntry( NA, Nancy Aarons, 1234, [PDA, ADM], com.otn.mobilelynx2.security.providers.authentication.UserGroupDatabase@7f5e61 )<br>
    Success: getUserDescription(user = NA) = Nancy Aarons<br>
    ---- weblogic console output sp4, Manage Users ----
    User Description Provider <br>
    portaladmin Admin for portal domain DefaultAuthenticator <br>
    weblogic This user is the default administrator. DefaultAuthenticator <br>
    yahooadmin Admin for yahoo content DefaultAuthenticator <br>
    john John Smith DefaultAuthenticator <br>
    qamean ActiveDirectoryAuthenticator <br>
    qamin ActiveDirectoryAuthenticator <br>
    ---- weblogic console output sp5, Manage Users ----
    User Description Provider <br>
    portaladmin Admin for portal domain DefaultAuthenticator
    weblogic This user is the default administrator. DefaultAuthenticator <br>
    yahooadmin Admin for yahoo content DefaultAuthenticator <br>
    --- html for above (with weird empty rows) ---
    <FORM NAME=FilterUsers METHOD=POST ACTION=><P>Filter By: <INPUT TYPE=text NAME=filter SIZE=10> <INPUT CLASS='buttons' TYPE=submit VALUE=Filter></FORM><b>Displayed 68 of 357 Total, use filter to narrow your search results.<b><table border='1' cellpadding='4' cellspacing='0' height='20'><tr bgcolor='#b8cece'><th>User</th><th>Description</th><th>Provider</th><th> </th></tr><tr bgcolor='#FFFFFF'><td>portaladmin</td><td>Admin for portal domain</td><td>DefaultAuthenticator</td><td><img border='0' src='http://localhost:7001/console/images/delete.gif' title='Delete'/></td></tr><tr bgcolor='#FFFFFF'><td>weblogic</td><td>This user is the default administrator.</td><td>DefaultAuthenticator</td><td><img border='0' src='http://localhost:7001/console/images/delete.gif' title='Delete'/></td></tr><tr bgcolor='#FFFFFF'><td>yahooadmin</td><td>Admin for yahoo content</td><td>DefaultAuthenticator</td><td><img border='0' src='http://localhost:7001/console/images/delete.gif' title='Delete'/></td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr><tr bgcolor='#FFFFFF'><td><td><td></tr></table>
    Message was edited by:
    srhutch444

    i have reinstalled solaris and the problem continues.
    Under Solaris Management Console groups and users doesn't run ok. Editing an user i can't see groups and editing groups i can't see its users...very very extrange.
    A bug?
    I don't know what is happening :(

  • Style by user/group

    I have 1 corporate portal page group, but we have 3 divisions. Each division has their own style settings. How can I set all pages in the page group to display with style of user's division
    ex: div 1 style = div1mstrstyle (mostly green)
    div 2 style = div2mstrstyle (mostly brown)
    if a div 1 user signs on all their headers footers ect should be green, but if a div 2 user signs on they would be brown

    hi,
    it is not possible to have styles/templates based on users/groups.
    however, here is an idea of how you could achieve this.
    1. create 3 differnt page groups for each department. if you do not want to duplicate the content (items) you could have 1 page group to hold the content. in the division home pages you just reference the items from there and use the layout of the division home page to render it. 2 ways to do this:
    - use the auto-query search portlet and query content from there
    - use page portlets
    2. creat 1 page group with 3 sub-pages. 1 for each division. you can apply a different layout for each folder (and sub-folders).
    regards,
    christian

  • Users & Groups crashes System Prefs

    Every time I try to access my users & groups it crashes my system prefs. I can't get to them at all to change anything. Similarly, trying to adjust parental controls for one of my kids crashes system prefs - it seems they are related...
    10.7 Intel iMac.
    I've got the crash log here.
    Can anyone help?
    Process:         System Preferences [32876]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214003000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [171]
    Date/Time:       2012-03-19 16:43:33.351 -0700
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          168258 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  330 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      E5060AA8-7897-4DF2-AC74-A24E79A43ACD
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010482e000-0000000104851000 [  140K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preferences.users v.12.0 (Users & Groups)
    objc[32876]: garbage collection is ON
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff8dcb1626 CFGetTypeID + 166
    1   com.apple.framework.Admin               0x00007fff8cfd9cc9 +[NSDictionary(cXMLDataConvertor) dictionaryFromXMLString:] + 151
    2   com.apple.framework.Admin               0x00007fff8cfd15d9 -[User familySettings] + 54
    3   com.apple.preferences.users             0x000000010d135359 0x10d132000 + 13145
    4   com.apple.preferences.users             0x000000010d1350bc 0x10d132000 + 12476
    5   com.apple.preferences.users             0x000000010d134727 0x10d132000 + 10023
    6   com.apple.preferences.users             0x000000010d1342c7 0x10d132000 + 8903
    7   com.apple.AppKit                        0x00007fff89944766 -[NSCustomObject nibInstantiate] + 418
    8   com.apple.AppKit                        0x00007fff89944551 -[NSIBObjectData instantiateObject:] + 303
    9   com.apple.AppKit                        0x00007fff899437ad -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 347
    10  com.apple.AppKit                        0x00007fff8993a09f loadNib + 322
    11  com.apple.AppKit                        0x00007fff8993959c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  com.apple.AppKit                        0x00007fff899394b7 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  com.apple.frameworks.preferencepanes          0x00007fff880c8cd0 -[NSPreferencePane loadMainView] + 154
    14  com.apple.frameworks.preferencepanes          0x00007fff880c9c20 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    15  com.apple.systempreferences             0x0000000104836968 0x10482e000 + 35176
    16  com.apple.systempreferences             0x0000000104835f9e 0x10482e000 + 32670
    17  com.apple.Foundation                    0x00007fff8e7ba1aa __NSFireDelayedPerform + 392
    18  com.apple.CoreFoundation                0x00007fff8dcf7c24 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    19  com.apple.CoreFoundation                0x00007fff8dcf7776 __CFRunLoopDoTimer + 534
    20  com.apple.CoreFoundation                0x00007fff8dcd8001 __CFRunLoopRun + 1617
    21  com.apple.CoreFoundation                0x00007fff8dcd7676 CFRunLoopRunSpecific + 230
    22  com.apple.HIToolbox                     0x00007fff8a81d31f RunCurrentEventLoopInMode + 277
    23  com.apple.HIToolbox                     0x00007fff8a82451b ReceiveNextEventCommon + 181
    24  com.apple.HIToolbox                     0x00007fff8a824456 BlockUntilNextEventMatchingListInMode + 62
    25  com.apple.AppKit                        0x00007fff89931f5d _DPSNextEvent + 659
    26  com.apple.AppKit                        0x00007fff89931861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    27  com.apple.AppKit                        0x00007fff8992e19d -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff89bacb88 NSApplicationMain + 867
    29  com.apple.systempreferences             0x000000010482fd9c 0x10482e000 + 7580
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff8cf96192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db6a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8db6bb85 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8cf967e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8c1695be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8c16814e _dispatch_mgr_thread + 54
    Thread 3:: Dispatch queue: Garbage Collection Work Queue
    0   libsystem_kernel.dylib                  0x00007fff8cf95bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8db6c274 _pthread_cond_wait + 840
    2   com.apple.Foundation                    0x00007fff8e80a4e4 -[NSCondition wait] + 261
    3   com.apple.Foundation                    0x00007fff8e7fd878 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975
    4   com.apple.Foundation                    0x00007fff8e82876e -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 84
    5   com.apple.CoreFoundation                0x00007fff8dd2fff4 ___forwarding___ + 756
    6   com.apple.CoreFoundation                0x00007fff8dd2fc88 _CF_forwarding_prep_0 + 232
    7   com.apple.imageKit                      0x00007fff8d24e8d9 -[IKGLSharedContextRegistry removeOwner:] + 217
    8   com.apple.imageKit                      0x00007fff8d17c57c -[IKImageWrapper finalize] + 66
    9   libobjc.A.dylib                         0x00007fff896b957c finalizeOneObject + 53
    10  libauto.dylib                           0x00007fff8c8e207e Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 94
    11  libobjc.A.dylib                         0x00007fff896b94ac batchFinalize + 53
    12  libobjc.A.dylib                         0x00007fff896b95fb batchFinalizeOnTwoThreads + 91
    13  libauto.dylib                           0x00007fff8c8e2019 Auto::Zone::invalidate_garbage(unsigned long, void**) + 73
    14  libauto.dylib                           0x00007fff8c8cf7db auto_collect_internal(Auto::Zone*, unsigned int) + 459
    15  libauto.dylib                           0x00007fff8c8cb21a __auto_zone_collect_block_invoke_0 + 74
    16  libdispatch.dylib                       0x00007fff8c1678ba _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff8c16910a _dispatch_queue_drain + 264
    18  libdispatch.dylib                       0x00007fff8c168f66 _dispatch_queue_invoke + 54
    19  libdispatch.dylib                       0x00007fff8c168760 _dispatch_worker_thread2 + 198
    20  libsystem_c.dylib                       0x00007fff8db6a3da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff8db6bb85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8cf96192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db6a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8db6bb85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8cf96192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8db6a594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8db6bb85 start_wqthread + 13
    Thread 6:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8cf95df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8dd20cdb __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff8db688bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff8db6bb75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8cf95e42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8db1edea nanosleep + 164
    2   com.apple.Foundation                    0x00007fff8e837f05 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit                      0x00007fff8d1b4327 -[IKImageCropView preloadThread] + 121
    4   com.apple.Foundation                    0x00007fff8e80874e -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff8e8086c6 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff8db688bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff8db6bb75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000087  rdx: 0x000000000000006a
      rdi: 0x0000000000000000  rsi: 0x0000000400d7d180  rbp: 0x00007fff6442c020  rsp: 0x00007fff6442c010
       r8: 0x0000000400d00000   r9: 0x00000000000039af  r10: 0x00000000000000c1  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x00007fff78424ef8  r14: 0x0000000400d7d180  r15: 0x0000000000000000
      rip: 0x00007fff8dcb1626  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 1
    Binary Images:
           0x10482e000 -        0x104850fff  com.apple.systempreferences (11.0 - 11.0) <EB72385A-B2EF-3AC2-BC6F-0995EB584A38> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x1064a1000 -        0x1064a1ffd +cl_kernels (??? - ???) <67270219-EE82-4675-9E96-3294C7DAE7B2> cl_kernels
           0x1064a3000 -        0x106534ff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <2683BD70-B7EE-3A60-A39C-2360B3C2A301> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x106555000 -        0x106555ff1 +cl_kernels (??? - ???) <23284886-FAC3-4F9A-BAF9-E43676F41101> cl_kernels
           0x106557000 -        0x10656cfff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x106efa000 -        0x106efaff5 +cl_kernels (??? - ???) <B538844A-4DA2-40E6-A8B9-74FDED8B8B56> cl_kernels
           0x106f06000 -        0x106f09ff7  libCoreFSCache.dylib (??? - ???) <0E2C3D54-7D05-35E8-BA10-2142B7C03946> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x106f14000 -        0x106f1afef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <C0C4CC37-F2FD-301C-A830-EC54D86612D5> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x106f37000 -        0x106f37ffd +cl_kernels (??? - ???) <174EA1E5-0E8D-442E-953F-BDC35D6DFFCF> cl_kernels
           0x1073ff000 -        0x107492ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x107534000 -        0x107535ff3 +cl_kernels (??? - ???) <69FBDF64-F69E-4A13-9392-B2DE187855F1> cl_kernels
           0x107e0c000 -        0x107e0dffc +cl_kernels (??? - ???) <E789E5E9-45F9-4DA4-923B-B2A3EA23E402> cl_kernels
           0x108f04000 -        0x108f08fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x108f0d000 -        0x108f13fff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x108f18000 -        0x108f75ff7  com.apple.preferences.parentalcontrols (3.1 - 310) <8D24D691-981F-34D3-B49F-13C6A17F3F0C> /System/Library/PreferencePanes/ParentalControls.prefPane/Contents/MacOS/Parent alControls
           0x10a735000 -        0x10a737fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <0926799B-A5FA-3CC7-B4EA-88C644EA139C> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10a749000 -        0x10a74cfff  com.apple.DirectoryServicesSource (1.2 - 1083) <7EDBCB22-3D01-3E95-8173-0313E6292B8B> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10a753000 -        0x10a7b4fff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <AB709DA1-29BE-35B3-A271-6D0C5C008B1F> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10d132000 -        0x10d18bff7  com.apple.preferences.users (12.0 - 12.0) <C1217472-5DFF-349A-84D7-A793B71A2BDB> /System/Library/PreferencePanes/Accounts.prefPane/Contents/MacOS/Accounts
           0x10d1b9000 -        0x10d1c7fff  com.apple.frameworks.opendirectoryconfigui (10.7 - 10.7) <97DE7A6F-2A0C-3F56-BA7F-783C1253B322> /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions/A/Op enDirectoryConfigUI
           0x10d1d7000 -        0x10d1ebff7  com.apple.OpenDirectoryConfig (10.7 - 55) <CDB13934-7125-3FFC-9454-1AE371C89C5D> /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework/Versions/A/Open DirectoryConfig
           0x10d1fb000 -        0x10d27bfff  com.apple.frameworks.server.kit (10.7.2 - 171.5) <222990C6-9CC0-3C5B-9B89-E7D55EF67B4C> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
           0x10d2d5000 -        0x10d35bff7  com.apple.frameworks.server.foundation (10.7.3 - 185.5) <4A7581AB-D6D4-3CEA-8707-0E7FEB4076B5> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x10d3bc000 -        0x10d3ceff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <B55C63E6-0117-324B-B88A-18C5003D61FC> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x10d3db000 -        0x10d415ff7  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <A131985C-8F2E-3706-957E-89BA1FA6A14E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x10d443000 -        0x10d44dfff  com.apple.iokit.IOUSBLib (4.4.5 - 4.4.5) <1E866AAC-3A96-329E-8495-17D074E26358> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
        0x7fff6442e000 -     0x7fff64462baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff876fe000 -     0x7fff87857fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87858000 -     0x7fff8786cff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8786d000 -     0x7fff8796fff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff8797e000 -     0x7fff879a5fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff879a6000 -     0x7fff879b0fff  libcsfde.dylib (??? - ???) <64ABF5C0-6F81-36E7-92F3-AD5A4FFF2F3D> /usr/lib/libcsfde.dylib
        0x7fff879b5000 -     0x7fff879b9fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff879ba000 -     0x7fff879bbff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff879ea000 -     0x7fff87a17ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff87a18000 -     0x7fff87a8dff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff87de9000 -     0x7fff87decfff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87e9f000 -     0x7fff87f85fff  com.apple.Bluetooth (4.0 - 4.0.3f12) <276AE4B8-1783-3375-895A-189700FE1BC0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff87f86000 -     0x7fff87f91ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9807F306-4081-34DA-9970-83A136E1E53F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88014000 -     0x7fff88015fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff88016000 -     0x7fff8806bfff  libCoreStorage.dylib (??? - ???) <329407B8-6700-331E-859E-62AB2242DBDE> /usr/lib/libCoreStorage.dylib
        0x7fff8806c000 -     0x7fff8807cff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff880bb000 -     0x7fff880bbfff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff880bc000 -     0x7fff880bdff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff880c1000 -     0x7fff880c4fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff880c5000 -     0x7fff880e1ff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <C1DF4A08-3CBA-3EEA-BA6E-3557F09052FE> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8858a000 -     0x7fff88595fff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <5BACAC71-D10E-39D4-B7DC-AFEAFB9CF150> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
        0x7fff88596000 -     0x7fff885b3fff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
        0x7fff885b4000 -     0x7fff885cafff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff885cb000 -     0x7fff88641fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88642000 -     0x7fff88696ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff88697000 -     0x7fff88a35fef  com.apple.MediaToolbox (1.0 - 705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff88a36000 -     0x7fff88a3dfff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff88a3e000 -     0x7fff88a58fff  com.apple.CoreMediaAuthoring (2.0 - 890) <7BE57576-8EF5-3473-95E6-6191E239E3F0> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff88a59000 -     0x7fff8903dfff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8903e000 -     0x7fff8903efff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8903f000 -     0x7fff8903ffff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff89040000 -     0x7fff8906bfff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8906c000 -     0x7fff89078fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff89079000 -     0x7fff890a6fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff890a7000 -     0x7fff89109ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8910a000 -     0x7fff89166ff7  com.apple.QuickLookFramework (3.1 - 500.10) <35BF320E-26F5-310C-9FA9-D60919B218EC> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff89167000 -     0x7fff8925cfff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff89263000 -     0x7fff89690fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89691000 -     0x7fff896a3ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff896a4000 -     0x7fff89788e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff89789000 -     0x7fff89928fff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff89929000 -     0x7fff8a52dfff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8a52e000 -     0x7fff8a59efff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8a59f000 -     0x7fff8a5aaff7  com.apple.aps.framework (2.1 - 2.1) <C8EB8D68-5E33-325F-B64D-CEAFE2EBB60C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8a5ab000 -     0x7fff8a5e5fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8a625000 -     0x7fff8a62fff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff8a692000 -     0x7fff8a6eafff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a776000 -     0x7fff8a776fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff8a777000 -     0x7fff8a80dff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8a80e000 -     0x7fff8a81afff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff8a81b000 -     0x7fff8ab45ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8ab46000 -     0x7fff8ac46fff  com.apple.QuickLookUIFramework (3.1 - 500.10) <ABD3BF58-DD33-31CA-AAE3-E0EE274C8B9C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8ac47000 -     0x7fff8ac93fff  com.apple.GraphKit (1.0.5 - 30) <7AEE3D33-94F5-373E-A038-5D37599DD159> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff8acd3000 -     0x7fff8acfeff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff8acff000 -     0x7fff8ad40fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8ad41000 -     0x7fff8ad43fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
        0x7fff8ad4a000 -     0x7fff8ade4ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8ade5000 -     0x7fff8adeafff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8af2e000 -     0x7fff8af61ff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8b69b000 -     0x7fff8b69bfff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8b69c000 -     0x7fff8b712fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8b713000 -     0x7fff8b7a5ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8b7a6000 -     0x7fff8b7a8ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b7a9000 -     0x7fff8b8b0fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8ba1e000 -     0x7fff8ba42fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8ba50000 -     0x7fff8bb5dfff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8bb5e000 -     0x7fff8bb6cfff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8bb79000 -     0x7fff8bb7efff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8bb7f000 -     0x7fff8bb80fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <0F55CD76-DB24-309B-BD12-62B00C1AAB9F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff8bbc8000 -     0x7fff8bbcafff  com.apple.EFILogin (1.0 - 1) <71D23C08-890D-34B7-B85D-B7F967090FA6> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8bbcb000 -     0x7fff8bbe2fff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8bbe3000 -     0x7fff8bcc5fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8bcc6000 -     0x7fff8bcccfff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8bce0000 -     0x7fff8bce0fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8bce1000 -     0x7fff8bce6fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff8bce7000 -     0x7fff8bd4cff7  com.apple.coredav (1.0.1 - 115.20) <9FC6D2B1-2F99-3B38-9F54-3694726B2082> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8bd55000 -     0x7fff8bedfff7  com.apple.QTKit (7.7.1 - 2315) <BFC33B70-34F2-3940-A14A-3C51036589F0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8bee0000 -     0x7fff8bf82ff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8bf83000 -     0x7fff8bf84fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff8bf85000 -     0x7fff8bfa4fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8bfa5000 -     0x7fff8bfacff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8c021000 -     0x7fff8c067ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
        0x7fff8c068000 -     0x7fff8c165fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c166000 -     0x7fff8c174fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff8c175000 -     0x7fff8c39dfe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8c39e000 -     0x7fff8c3eefff  com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8c3ef000 -     0x7fff8c428fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c429000 -     0x7fff8c590ff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8c591000 -     0x7fff8c5a8fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8c5a9000 -     0x7fff8c5aafff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c5ab000 -     0x7fff8c6c4fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8c6c5000 -     0x7fff8c6e2ff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8c719000 -     0x7fff8c727ff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8c728000 -     0x7fff8c72bff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8c72c000 -     0x7fff8c737ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8c738000 -     0x7fff8c745ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff8c758000 -     0x7fff8c797ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8c798000 -     0x7fff8c7d3fff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8c7d4000 -     0x7fff8c826ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8c837000 -     0x7fff8c8c9fff  com.apple.PDFKit (2.6.2 - 2.6.2) <4C8D80F6-09BB-3BD5-983B-A24FBEB5BCF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8c8ca000 -     0x7fff8c918fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8c98c000 -     0x7fff8ca53ff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8ca54000 -     0x7fff8cb59fff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8cb83000 -     0x7fff8cb83fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8cbb4000 -     0x7fff8cc14fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8cc15000 -     0x7fff8cc68fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8cc88000 -     0x7fff8ccccff7  com.apple.MediaKit (12 - 589) <7CFF29BF-D907-3593-B338-0BB48643B2A8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8cccd000 -     0x7fff8cce9ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8ccea000 -     0x7fff8cd2dff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <85D00F5C-43ED-33A9-80B4-72EB0EAE3E25> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8cd2e000 -     0x7fff8cd34fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8cd4a000 -     0x7fff8cd4bfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8cd68000 -     0x7fff8cd6dff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff8cd6e000 -     0x7fff8cdc9ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8cf7f000 -     0x7fff8cf9ffff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cfa0000 -     0x7fff8cfa3fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8cfa4000 -     0x7fff8cfcaff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8cfcb000 -     0x7fff8cffbfff  com.apple.framework.Admin (11.0 - 11.0) <D7C96057-01E2-3D78-B0FF-23976D585408> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8cffc000 -     0x7fff8d001fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff8d094000 -     0x7fff8d134fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d135000 -     0x7fff8d159fff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8d15a000 -     0x7fff8d160ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8d16a000 -     0x7fff8d170ff7  com.apple.phonenumbers (1.0 - 47) <8CE13253-C65B-392F-B87F-D85A15D500D3> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8d171000 -     0x7fff8d3e7ff7  com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8d3e8000 -     0x7fff8d3ecfff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8daf2000 -     0x7fff8db19fff  com.apple.framework.internetaccounts (1.2 - 3) <A3FFB4BD-77BE-388F-ADB1-9CA80A68B1F2> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8db1a000 -     0x7fff8dbf7fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff8dc22000 -     0x7fff8dc34ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff8dc4a000 -     0x7fff8dc9eff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8dc9f000 -     0x7fff8de73fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8de74000 -     0x7fff8de7bfff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <848F5267-C6B3-3591-AB27-B0176B04CCC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8e007000 -     0x7fff8e27afff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8e27b000 -     0x7fff8e288fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <CBA71562-050B-3515-92B7-8BC1E2EEEF2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8e289000 -     0x7fff8e294ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8e295000 -     0x7fff8e339fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8e33a000 -     0x7fff8e33eff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8e33f000 -     0x7fff8e3c3ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8e3dd000 -     0x7fff8e3e5fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8e739000 -     0x7fff8e759fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8e7ae000 -     0x7fff8eac7ff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8eac8000 -     0x7fff8eb30ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8eb31000 -     0x7fff8ef93ff7  com.apple.RawCamera.bundle (3.9.1 - 586) <1AA853F4-E429-33E3-B4A9-6B019CCCC5E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8ef94000 -     0x7fff8efa6ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8efa7000 -     0x7fff8efe2fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff8f026000 -     0x7fff8f04eff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f04f000 -     0x7fff8f055fff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8f056000 -     0x7fff8f141fff  com.apple.backup.framework (1.3.1 - 1.3.1) <C933E52C-5BA6-386D-9B6A-8F98D8142A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8f142000 -     0x7fff8f1f5fff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8f1f6000 -     0x7fff8f32cfff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8f32d000 -     0x7fff8f332fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f333000 -     0x7fff8f535fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8f536000 -     0x7fff8f545fff  com.apple.Collaboration (63 - 63) <AA2E926B-68AE-3B61-A484-B9DAE64EE03E> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8f587000 -     0x7fff8f681ff7  com.apple.DiskImagesFramework (10.7.3 - 331.3) <57A7E46A-5AA4-37FF-B19C-5337CCBCA0CA> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8f6ac000 -     0x7fff8f6b0fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <37517279-C92E-3217-B49A-838198B48787> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8f789000 -     0x7fff8f867fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8f868000 -     0x7fff8f974fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8f9c4000 -     0x7fff8f9cfff7  com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8f9df000 -     0x7fff8fa08fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8fa09000 -     0x7fff8fa12fff  com.apple.AOSNotification (1.4.0 - 504.1) <0CD79695-6625-3BF4-A420-2612190EC2E0> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8fa13000 -     0x7fff8fa26ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8fa27000 -     0x7fff8fa57ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8fad1000 -     0x7fff8fadcfff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8fadd000 -     0x7fff8fb1cfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8fb1d000 -     0x7fff8fb1ffff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8fb20000 -     0x7fff8fb8aff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8fbc6000 -     0x7fff8fbcafff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff8fbcb000 -     0x7fff8fc46ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8fc47000 -     0x7fff8fc47fff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8fc48000 -     0x7fff8fc57ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff8fc59000 -     0x7fff8fcccfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8fccd000 -     0x7fff8fccefff  com.apple.ServerInformation (1.0 - 1) <EE6BFCB2-C727-3CE6-B8C9-834230B2646B> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff8fccf000 -     0x7fff8fcd0fff  libodfde.dylib (??? - ???) <87836EDD-1474-3926-916A-A7AE8CA65079> /usr/lib/libodfde.dylib
        0x7fff8fcd1000 -     0x7fff8fd56ff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8fd9b000 -     0x7fff8fd9dfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8fd9e000 -     0x7fff8fdd3fff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8fdd4000 -     0x7fff907647a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff907cc000 -     0x7fff90aefff7  com.apple.AddressBook.framework (6.1 - 1083) <9C23C164-B9E1-3F80-83F4-C027AF282DE6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff90b29000 -     0x7fff90db4fff  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff90db5000 -     0x7fff90dd1fff  com.apple.ScriptingBridge (1.2.1 - ???) <7DCC43F7-9F5A-388D-A00D-70E2618731BA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff90dd2000 -     0x7fff90e19ff7  com.apple.CoreMedia (1.0 - 705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff91046000 -     0x7fff912b4ff7  com.apple.QuartzComposer (5.0 - 236.3) <F8B96724-2550-32FE-9DE4-22AC7A6C0942> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff91310000 -     0x7fff91393fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff91394000 -     0x7fff9139dff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff9139e000 -     0x7fff9147cfff  com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff9147d000 -     0x7fff9147eff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff9147f000 -     0x7fff91486fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff91487000 -     0x7fff914d0ff7  com.apple.framework.CoreWLAN (2.1.2 - 212.1) <B254CC2C-F1A4-3A87-96DE-B6A4113D2811> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff916a8000 -     0x7fff916bdfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff916be000 -     0x7fff916c1fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff916c2000 -     0x7fff91af4fef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff91af5000 -     0x7fff91afbfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff91afe000 -     0x7fff91b0bfff  com.apple.KerberosHelper (3.0 - 1.0) <5223379A-8854-36CF-B15C-44E0107EEE4C> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff91b0c000 -     0x7fff91b0dfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff91b0e000 -     0x7fff91b62ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff91b63000 -     0x7fff91bc9ff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff91bca000 -     0x7fff9235efef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff9235f000 -     0x7fff9239fff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
        0x7fff923a0000 -     0x7fff923ecff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff923ed000 -     0x7fff9241afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff92721000 -     0x7fff92a03fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92a04000 -     0x7fff92a2fff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff937ee000 -     0x7fff937eefff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff937ef000 -     0x7fff93831ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff93843000 -     0x7fff93843fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff9390c000 -     0x7fff93c28ff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff93c29000 -     0x7fff93c2afff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff93c34000 -     0x7fff940fbfff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff940fc000 -     0x7fff94519ff7  com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff9451a000 -     0x7fff94530ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 10
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state

    Does anyone have any possible solutions for this? It's driving me crazy! I can't access my Users and Groups! Please help!
    Latest crash report.
    Process:         System Preferences [274]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         11.0 (11.0)
    Build Info:      SystemPrefsApp-214009000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [179]
    Date/Time:       2012-06-02 15:52:53.875 -0700
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          1348 sec
    Crashes Since Last Report:           8
    Per-App Interval Since Last Report:  331 sec
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      14C8669B-3C9E-4862-AF92-062EADF5A2BF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 000000010d4da000-000000010d4fd000 [  140K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preferences.users v.12.1 (Users & Groups)
    objc[274]: garbage collection is ON
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff98402436 CFGetTypeID + 166
    1   com.apple.framework.Admin               0x00007fff8f1f6bcb +[NSDictionary(cXMLDataConvertor) dictionaryFromXMLString:] + 151
    2   com.apple.framework.Admin               0x00007fff8f1ee4db -[User familySettings] + 54
    3   com.apple.preferences.users             0x0000000111cdf2c9 0x111cdc000 + 13001
    4   com.apple.preferences.users             0x0000000111cdf02c 0x111cdc000 + 12332
    5   com.apple.preferences.users             0x0000000111cde697 0x111cdc000 + 9879
    6   com.apple.preferences.users             0x0000000111cde237 0x111cdc000 + 8759
    7   com.apple.AppKit                        0x00007fff94538635 -[NSCustomObject nibInstantiate] + 418
    8   com.apple.AppKit                        0x00007fff94538420 -[NSIBObjectData instantiateObject:] + 303
    9   com.apple.AppKit                        0x00007fff9453767d -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 347
    10  com.apple.AppKit                        0x00007fff9452df73 loadNib + 322
    11  com.apple.AppKit                        0x00007fff9452d470 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 217
    12  com.apple.AppKit                        0x00007fff9452d38b +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 141
    13  com.apple.frameworks.preferencepanes          0x00007fff9a768a04 -[NSPreferencePane loadMainView] + 154
    14  com.apple.frameworks.preferencepanes          0x00007fff9a769954 -[NSPrefPaneBundle instantiatePrefPaneObject] + 438
    15  com.apple.systempreferences             0x000000010d4e26fc 0x10d4da000 + 34556
    16  com.apple.systempreferences             0x000000010d4e1d32 0x10d4da000 + 32050
    17  com.apple.Foundation                    0x00007fff92c83186 __NSFireDelayedPerform + 392
    18  com.apple.CoreFoundation                0x00007fff98448934 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    19  com.apple.CoreFoundation                0x00007fff98448486 __CFRunLoopDoTimer + 534
    20  com.apple.CoreFoundation                0x00007fff98428e11 __CFRunLoopRun + 1617
    21  com.apple.CoreFoundation                0x00007fff98428486 CFRunLoopRunSpecific + 230
    22  com.apple.HIToolbox                     0x00007fff8faa44d3 RunCurrentEventLoopInMode + 277
    23  com.apple.HIToolbox                     0x00007fff8faab6d3 ReceiveNextEventCommon + 181
    24  com.apple.HIToolbox                     0x00007fff8faab60e BlockUntilNextEventMatchingListInMode + 62
    25  com.apple.AppKit                        0x00007fff94525e31 _DPSNextEvent + 659
    26  com.apple.AppKit                        0x00007fff94525735 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    27  com.apple.AppKit                        0x00007fff94522071 -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff9479e244 NSApplicationMain + 867
    29  com.apple.systempreferences             0x000000010d4dbb30 0x10d4da000 + 6960
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff91b9d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95e98594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff95e99b85 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff91b9d7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff9075d78a _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff9075c31a _dispatch_mgr_thread + 54
    Thread 3:: Dispatch queue: Garbage Collection Work Queue
    0   libsystem_kernel.dylib                  0x00007fff91b9cbca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff95e9a274 _pthread_cond_wait + 840
    2   com.apple.Foundation                    0x00007fff92cd34c0 -[NSCondition wait] + 261
    3   com.apple.Foundation                    0x00007fff92cc6854 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 975
    4   com.apple.Foundation                    0x00007fff92cf174a -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 84
    5   com.apple.CoreFoundation                0x00007fff98480fa4 ___forwarding___ + 756
    6   com.apple.CoreFoundation                0x00007fff98480c38 _CF_forwarding_prep_0 + 232
    7   com.apple.imageKit                      0x00007fff97d2ca99 -[IKGLSharedContextRegistry removeOwner:] + 217
    8   com.apple.imageKit                      0x00007fff97c5a3f8 -[IKImageWrapper finalize] + 66
    9   libobjc.A.dylib                         0x00007fff96b1757c finalizeOneObject + 53
    10  libauto.dylib                           0x00007fff9a72e07e Auto::foreach_block_do(auto_zone_cursor*, void (*)(void*, void*), void*) + 94
    11  libobjc.A.dylib                         0x00007fff96b174ac batchFinalize + 53
    12  libobjc.A.dylib                         0x00007fff96b175fb batchFinalizeOnTwoThreads + 91
    13  libauto.dylib                           0x00007fff9a72e019 Auto::Zone::invalidate_garbage(unsigned long, void**) + 73
    14  libauto.dylib                           0x00007fff9a71b7db auto_collect_internal(Auto::Zone*, unsigned int) + 459
    15  libauto.dylib                           0x00007fff9a71721a __auto_zone_collect_block_invoke_0 + 74
    16  libdispatch.dylib                       0x00007fff9075ba86 _dispatch_call_block_and_release + 18
    17  libdispatch.dylib                       0x00007fff9075d2d6 _dispatch_queue_drain + 264
    18  libdispatch.dylib                       0x00007fff9075d132 _dispatch_queue_invoke + 54
    19  libdispatch.dylib                       0x00007fff9075c92c _dispatch_worker_thread2 + 198
    20  libsystem_c.dylib                       0x00007fff95e983da _pthread_wqthread + 316
    21  libsystem_c.dylib                       0x00007fff95e99b85 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff91b9d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95e98594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff95e99b85 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff91b9d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95e98594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff95e99b85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff91b9d192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff95e98594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff95e99b85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff91b9ce42 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff95e4cdea nanosleep + 164
    2   com.apple.Foundation                    0x00007fff92d00ee1 +[NSThread sleepUntilDate:] + 181
    3   com.apple.imageKit                      0x00007fff97c91fa4 -[IKImageCropView preloadThread] + 121
    4   com.apple.Foundation                    0x00007fff92cd172a -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff92cd16a2 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff95e968bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff95e99b75 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000087  rdx: 0x0000000000000052
      rdi: 0x0000000000000000  rsi: 0x0000000401658760  rbp: 0x00007fff6d0d7fc0  rsp: 0x00007fff6d0d7fb0
       r8: 0x0000000401600000   r9: 0x000000000000275e  r10: 0x00000000000000c1  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x00007fff7eb10ef8  r14: 0x0000000401658760  r15: 0x0000000000000000
      rip: 0x00007fff98402436  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 0
    Binary Images:
           0x10d4da000 -        0x10d4fcfff  com.apple.systempreferences (11.0 - 11.0) <586F487B-3019-32FC-9BCD-44A604A7178C> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x10f1f7000 -        0x10f1fdfef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10f204000 -        0x10f207ff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10f20f000 -        0x10f20fffd +cl_kernels (??? - ???) <1DB4D4AF-431D-49C7-B8F4-64AA339A30FC> cl_kernels
           0x10fc50000 -        0x10fc51ff3 +cl_kernels (??? - ???) <FCDA9868-4097-4AFD-84F3-A74217930998> cl_kernels
           0x110a69000 -        0x110a69ffd +cl_kernels (??? - ???) <23DEFEA7-E467-4DFC-871D-DA7CEC6AF43D> cl_kernels
           0x110a7e000 -        0x110b11ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x111bf7000 -        0x111bfbfff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <F94D690D-3196-3B01-B798-09708367D28D> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x111c00000 -        0x111c05fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <4EC4981B-68AE-357E-960F-3D4603A61E9F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x111c1a000 -        0x111cabff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <2683BD70-B7EE-3A60-A39C-2360B3C2A301> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x111cda000 -        0x111cdaff1 +cl_kernels (??? - ???) <73C667E4-8A83-4989-828F-5EDEABA57A02> cl_kernels
           0x111cdc000 -        0x111d35ff7  com.apple.preferences.users (12.1 - 12.1) <0A42EE88-67B5-3F38-919A-24B3B550CC3E> /System/Library/PreferencePanes/Accounts.prefPane/Contents/MacOS/Accounts
           0x111d63000 -        0x111d71fff  com.apple.frameworks.opendirectoryconfigui (10.7 - 10.7) <1383F700-AB33-3C69-926C-79367B81E925> /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions/A/Op enDirectoryConfigUI
           0x111d81000 -        0x111d96fff  com.apple.frameworks.preferencepanessupport (1.0 - 1.0) <B7E1A6D7-5C75-3626-ACD9-682B6CBC3EBF> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x111daa000 -        0x111dbefff  com.apple.OpenDirectoryConfig (10.7 - 55) <307BDAB4-3839-3D84-AEA9-92CD2D65ED3A> /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework/Versions/A/Open DirectoryConfig
           0x111dce000 -        0x111e4efff  com.apple.frameworks.server.kit (10.7.2 - 171.8) <3A19AAD4-7B70-31A8-8449-1ABFF3A0BBA5> /System/Library/PrivateFrameworks/ServerKit.framework/Versions/A/ServerKit
           0x111ea8000 -        0x111f2eff7  com.apple.frameworks.server.foundation (10.7.3 - 185.6) <4719FA2C-6BAB-31F9-B68A-6DBC80FAC996> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x111f8f000 -        0x111fa1ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <6A3F8700-B42B-3E07-8827-72A15B8A9A95> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x111fae000 -        0x111fe8ff7  com.apple.frameworks.CoreDaemon (1.0 - 1.0) <A131985C-8F2E-3706-957E-89BA1FA6A14E> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x112038000 -        0x112042fff  com.apple.iokit.IOUSBLib (4.4.5 - 4.4.5) <090436F9-82AE-3747-93A3-DAC266AD3A78> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
        0x7fff6d0da000 -     0x7fff6d10ebaf  dyld (195.6 - ???) <C58DAD8A-4B00-3676-8637-93D6FDE73147> /usr/lib/dyld
        0x7fff8e007000 -     0x7fff8e012fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8e056000 -     0x7fff8e073ff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8e074000 -     0x7fff8e079fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8e088000 -     0x7fff8e167ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8e168000 -     0x7fff8e1d0ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <C6703B2E-62F2-37C4-A4DE-28AF9C81CB44> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8e1d1000 -     0x7fff8e1e5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8e549000 -     0x7fff8e58afff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8e58b000 -     0x7fff8e58ffff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8e590000 -     0x7fff8e62aff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8e63d000 -     0x7fff8e681ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8e682000 -     0x7fff8e78efff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8e78f000 -     0x7fff8e8f6fff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8e96f000 -     0x7fff8e974fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
        0x7fff8e975000 -     0x7fff8e9ebfff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8e9ec000 -     0x7fff8ea26fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8ea27000 -     0x7fff8ea29fff  com.apple.EFILogin (1.0 - 1) <D3613C4B-D3AD-3499-9969-AA0F1E581407> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8ea2a000 -     0x7fff8ea2afff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8ea2b000 -     0x7fff8ec99ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8ec9a000 -     0x7fff8eccaff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8eccb000 -     0x7fff8ed41fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ed42000 -     0x7fff8f1e7fff  com.apple.RawCamera.bundle (3.12.0 - 615) <10CCCC87-4A1E-3343-BF09-1C6640B56F45> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8f1e8000 -     0x7fff8f218fff  com.apple.framework.Admin (11.0 - 11.0) <74BF28C9-6D4F-3E57-929C-2B6768E733DE> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8f219000 -     0x7fff8f26bff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8f26c000 -     0x7fff8f270fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff8f271000 -     0x7fff8f338ff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8f339000 -     0x7fff8f3cfff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8f3d0000 -     0x7fff8f3dbff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8f549000 -     0x7fff8f62dfff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8f62e000 -     0x7fff8fa61ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8fa8c000 -     0x7fff8faa1fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8faa2000 -     0x7fff8fdceff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8fdd5000 -     0x7fff90569fef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff9056a000 -     0x7fff90570ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff90571000 -     0x7fff90577fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff905dd000 -     0x7fff9066fff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff90670000 -     0x7fff90682ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff90683000 -     0x7fff906abfff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff906ac000 -     0x7fff906c8fff  com.apple.ScriptingBridge (1.2.1 - ???) <A4162BA5-2432-3BF3-8EBC-47AEF2BDD8DA> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
        0x7fff906c9000 -     0x7fff906dbff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff9073b000 -     0x7fff90742fff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <B3F07872-63B1-3AAF-A313-9B2886822C58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff90743000 -     0x7fff90759fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9075a000 -     0x7fff90768fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff90769000 -     0x7fff90866ff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff90f43000 -     0x7fff90f55ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff90f5e000 -     0x7fff90f7aff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff90f7b000 -     0x7fff90f7cff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff90f7d000 -     0x7fff91326fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff91327000 -     0x7fff91352fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff91353000 -     0x7fff9135eff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff9135f000 -     0x7fff9136cff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
        0x7fff91500000 -     0x7fff91506fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff91507000 -     0x7fff919cefff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff919cf000 -     0x7fff919effff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff919f0000 -     0x7fff91af0fff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff91aff000 -     0x7fff91b2cfff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff91b2d000 -     0x7fff91b30fff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff91b31000 -     0x7fff91b85fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff91b86000 -     0x7fff91ba6fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff91ba7000 -     0x7fff91be9ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff91c14000 -     0x7fff91c20fff  com.apple.CoreBluetooth (100.7 - 1) <988DB0FD-7759-3BA0-AE5F-B6DA2BDB3FF5> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff91c21000 -     0x7fff91d3afff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff91d3b000 -     0x7fff91deeff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff91fa8000 -     0x7fff920affe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff920b0000 -     0x7fff920b0fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff920b1000 -     0x7fff920b9fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff920d6000 -     0x7fff92a73c9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff92a74000 -     0x7fff92a77fff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff92a78000 -     0x7fff92ae3ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff92ae4000 -     0x7fff92ae5fff  com.apple.ServerInformation (1.0 - 1) <D95BC225-E33B-32BC-9FEE-77423F8D7EBC> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff92ae6000 -     0x7fff92ae7fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff92ae8000 -     0x7fff92b27ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff92c19000 -     0x7fff92c19fff  com.apple.Carbon (153 - 153) <16EA5662-5C2C-3267-B419-66669AE536D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff92c77000 -     0x7fff92f90fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff92fde000 -     0x7fff92ff8fff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff92ff9000 -     0x7fff93024ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff9303b000 -     0x7fff93140fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff93141000 -     0x7fff93142fff  libffi.dylib (??? - ???) <DB96CC4B-0D38-3102-80AA-91DDE9AF3886> /usr/lib/libffi.dylib
        0x7fff93143000 -     0x7fff9316eff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff931b8000 -     0x7fff9323bfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff9323c000 -     0x7fff93372fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff93373000 -     0x7fff933eeff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff93405000 -     0x7fff9341bff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff9341c000 -     0x7fff9341dfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
        0x7fff9341e000 -     0x7fff9346aff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff9346b000 -     0x7fff9346bfff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff93478000 -     0x7fff93483ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff93499000 -     0x7fff934eaff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff934eb000 -     0x7fff93918fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff9399c000 -     0x7fff939a1fff  com.apple.OpenDirectory (10.7 - 146) <7960A302-F9AC-3F72-838E-3A382032DCA6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff939a2000 -     0x7fff93cc4fe7  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff93cc5000 -     0x7fff942a9fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff942aa000 -     0x7fff942b1ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff942b2000 -     0x7fff942dffe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <DA79E5BA-BBA3-3768-AAD8-B34BA877EF03> /usr/lib/libSystem.B.dylib
        0x7fff942f9000 -     0x7fff94351fff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff94352000 -     0x7fff9439bff7  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <5E421E2D-50EA-340E-A5EE-C848DD6FC34F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9439c000 -     0x7fff9440cfff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff9440d000 -     0x7fff94410fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff94411000 -     0x7fff94506fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff94507000 -     0x7fff94507fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff9451d000 -     0x7fff95123ff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff95124000 -     0x7fff95128ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff95129000 -     0x7fff9515cff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff9515d000 -     0x7fff952e7fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff95311000 -     0x7fff95311fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff95312000 -     0x7fff95320fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff95321000 -     0x7fff95338fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff9533c000 -     0x7fff953affff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff953b0000 -     0x7fff953b4fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
        0x7fff953b5000 -     0x7fff953bafff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff954c1000 -     0x7fff954c1fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff954c2000 -     0x7fff954c3fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff954c4000 -     0x7fff954e1fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff954f1000 -     0x7fff954f3ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff954f4000 -     0x7fff95504ff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff95505000 -     0x7fff957eeff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff95a61000 -     0x7fff95a78fff  com.apple.CFOpenDirectory (10.7 - 146) <BBB7C97E-7B46-3286-9128-32B5D16B5CBE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff95a79000 -     0x7fff95b73ff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff95b74000 -     0x7fff95b75ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff95b76000 -     0x7fff95bccfff  libCoreStorage.dylib (??? - ???) <11380FDC-3550-379A-A1D3-7D7BDF8A3B0D> /usr/lib/libCoreStorage.dylib
        0x7fff95bcd000 -     0x7fff95be0ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
        0x7fff95be1000 -     0x7fff95c1cfff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff95c1d000 -     0x7fff95e47fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff95e48000 -     0x7fff95f25fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff95f26000 -     0x7fff960c5ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff960c6000 -     0x7fff961b0fff  com.apple.backup.framework (1.3.3 - 1.3.3) <6C49FBCF-D6AF-3351-BBBF-A98A622CA517> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff961b1000 -     0x7fff96253fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff9628f000 -     0x7fff96294fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff96295000 -     0x7fff9629eff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff96394000 -     0x7fff96418ff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff96419000 -     0x7fff96426fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff964f4000 -     0x7fff964f7fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff96528000 -     0x7fff96532ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff96533000 -     0x7fff9661bfff  com.apple.Bluetooth (4.0.5 - 4.0.5f11) <4DF38224-CA01-3E76-BE84-0A510C1983A0> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff9661c000 -     0x7fff9665bfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff9667b000 -     0x7fff96682fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff96683000 -     0x7fff966caff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff966cb000 -     0x7fff9671fff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff967bb000 -     0x7fff9684eff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9684f000 -     0x7fff96855ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff96856000 -     0x7fff96862fff  com.apple.DirectoryService.Framework (10.7 - 146) <38778B01-2CF6-3A33-8A7A-FE016774B24C> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff96863000 -     0x7fff96941fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff96946000 -     0x7fff969a6fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff969a7000 -     0x7fff969f3fff  com.apple.GraphKit (1.0.5 - 30) <ADC7963A-FC30-3886-984D-BC3CD4C5A4B7> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff969f4000 -     0x7fff96b01fff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff96b02000 -     0x7fff96be6e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff96be7000 -     0x7fff96c14ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff96c15000 -     0x7fff96c4efe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff96c59000 -     0x7fff96c63fff  libcsfde.dylib (??? - ???) <4E8CF39C-606E-3EF6-B2B0-A09CD104126B> /usr/lib/libcsfde.dylib
        0x7fff96c77000 -     0x7fff96c77fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff96c78000 -     0x7fff96c83ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <F260D4A7-C727-3FB6-8525-50E279BF9BAF> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff9744b000 -     0x7fff97459ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff97468000 -     0x7fff97784fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff97785000 -     0x7fff977c5ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff977c6000 -     0x7fff977edfff  com.apple.framework.internetaccounts (1.2 - 3) <483427CA-8140-355D-B668-78F5A5F1A1D6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff977ee000 -     0x7fff97817fff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff97818000 -     0x7fff978b9ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff978e2000 -     0x7fff97928fff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff97929000 -     0x7fff97c4dfff  com.apple.AddressBook.framework (6.1.2 - 1090) <65FE6A36-F3F8-37FE-8B88-50F20F278779> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff97c4e000 -     0x7fff97c4ffff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
        0x7fff97c50000 -     0x7fff97ec5ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff97ec6000 -     0x7fff97ec7ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff97ed4000 -     0x7fff97f27fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff97f28000 -     0x7fff97f6cff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff97f6d000 -     0x7fff97f72ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff97f73000 -     0x7fff97f74fff  libodfde.dylib (??? - ???) <9725455E-BA0B-3371-8570-CFE50D3BDA84> /usr/lib/libodfde.dylib
        0x7fff97f75000 -     0x7fff97f79fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
        0x7fff97f7a000 -     0x7fff9801ffff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff98020000 -     0x7fff9807dff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff9807e000 -     0x7fff9807ffff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff980e9000 -     0x7fff980e9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff980ea000 -     0x7fff98125fff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff982c4000 -     0x7fff9831eff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff9831f000 -     0x7fff98381ff7  com.apple.Symbolication (1.3 - 91) <0945ACAF-AA0A-3D01-9960-72B51722EC1F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff983c3000 -     0x7fff983e7fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff983e8000 -     0x7fff983effff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
        0x7fff983f0000 -     0x7fff985c4ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff985c5000 -     0x7fff986c7fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff98c38000 -     0x7fff98c3bff7  com.apple.securityhi (4.0 - 1) <D0ABB03B-CEF9-39E0-A139-AA9484DBBC07> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff98cb1000 -     0x7fff98cb7fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
        0x7fff98cc6000 -     0x7fff98ec8fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff98fcc000 -     0x7fff99028ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff99029000 -     0x7fff990aeff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff9913e000 -     0x7fff9914dff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff9914e000 -     0x7fff991c4fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff991c5000 -     0x7fff991cbfff  IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff99218000 -     0x7fff9921afff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff9921b000 -     0x7fff9923afff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff99f73000 -     0x7fff99f75fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff99f76000 -     0x7fff9a393ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff9a597000 -     0x7fff9a5bbfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9a5bc000 -     0x7fff9a715fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff9a716000 -     0x7fff9a764fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff9a765000 -     0x7fff9a781fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A1ABA9DB-2C8A-3C96-976A-21E63194F7B2> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff9a78e000 -     0x7fff9aa01fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff9aa02000 -     0x7fff9aa2bfff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff9aebd000 -     0x7fff9aebffff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9aec0000 -     0x7fff9aee6fff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff9aee7000 -     0x7fff9aef5fff  com.apple.Collaboration (63.2 - 63.2) <0AABDD01-6A44-3445-A834-545E47CBEA96> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff9af3e000 -     0x7fff9af3efff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff9af3f000 -     0x7fff9afa8fff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9afa9000 -     0x7fff9afdefff  com.apple.securityinterface (5.0 - 55022.4) <09EC371E-0B6E-3849-A6C9-F8E9DB17BBCD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 226
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=195.2M resident=124.7M(64%) swapped_out_or_unallocated=70.5M(36%)
    Writable regions: Total=16.1G written=68.0M(0%) resident=123.7M(1%) swapped_out=0K(0%) unallocated=16.0G(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2540K
    CG image                             16K
    CG raster data                     6208K
    CG shared images                   3384K
    CoreImage                            88K
    CoreServices                        976K
    MALLOC                            434.9M
    MALLOC (reserved)                  15.6G        reserved VM address space (unallocated)
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    OpenCL                               36K
    STACK GUARD                        56.0M
    Stack                              11.6M
    VM_ALLOCATE                        16.2M
    __CI_BITMAP                          80K
    __DATA                             18.6M
    __IMAGE                             528K
    __LINKEDIT                         48.8M
    __RC_CAMERAS                        244K
    __TEXT                            146.4M
    __UNICODE                           544K
    mapped file                        40.6M
    shared memory                       312K
    ===========                      =======
    TOTAL                              16.4G
    TOTAL, minus reserved VM space    787.7M
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.37f3
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334448312D4346382020
    Mem

  • Can we achieve a functionality to display content according to customizable

    Hi,
    I am new to UCM and have following queries . I tried searching on net but didnt get specific answers. Please guide me if possible?
    1. Does UCM support streaming content. i.e. multimedia combination of video, sound and accompanying slides. And i need to know if it supports SMIL format files (Synchronized Multimedia Integration Language ). Do we need to buy any component for that or it is supported by default.
    2. Can we achieve a functionality to display content according to customizable rules. For example to display a
    list of pages in the "ABC" branch modified within the last 12 days?
    3.Can we provide search/replace property in the WYSWYG editor, I didnt find the same there? Is there any ootb for that?
    4.Can we have Distributed content authoring, in order to have multiple content owners working on the same set of pages?
    5.Can UCM automatically generate a site map. Optionally certain pages should be able to be excluded from the map manually?
    6. Can we create and manage micro sites (or country versions of specific branches) ?
    Ideally content can be in the form of symbolic links - meaning unless the microsite "overwrites" content it takes content maintained in a global site.
    7. Does UCM have capability to do page assembly (reusable components)? ie. Could it be possible to create components that can be selected by users and inserted into content for standard functionalities, e.g., video players, registration forms, zoom tools?
    8. Does UCM have ability to upload multiple attachments/images at once?
    9. Can we hide an existing content without deleting it and later showing it again?
    10. Can we publish content directly to intranet, mobile format, e-Mail or need we to write any custom component for that?
    11. Can we publish multiple content types at once?
    12. Can web images (PNG, GIF, JPG) be easily managed by users with an interface that allows browsing by thumbnail, not just file name?
    Thanks a lot in advance.

    1. The Weblayout editor applet can be used to create virtual folders (not related to the Folders component) which are simply queries based on any metadata you like. So users can click on Browse Content/library folders to get to that section of the GUI then they will be presented with a base Page (think of it as a little UCM contained website) with links to reports, queries, and other pages even outside links like to Google. The number of pages you can create is not limited so you could create a large hierarchy of pages for reports and lists and search results. You can also secure sections of this internal website by security groups to keep some people from seeing those links on the pages (they simply do not show for you unless you have access to the group).
    So all out of the box, and all based on metadata including security. This is the very oldest version of Folders and unlike the folders_g component is not limited in number of folders or items per folder and does not change system performance like Folders_g.
    They are not truly folders and do not exist for external WebDav or DIS.
    Custom code may be needed if you want to generate reports of more complex kind than are provided as default.
    2. I am not a WCM expert but I think all of what you specify is possible as you ask. But again I am not WCM expert. As I remember it from 6 and 7.x Site Studio you can create multiple websites and link them into each other dynamically and even display the same content in the different look and feel context of a different site. Site studio is simply pulling fragments and content dynamically from the CS behind it. And different sites can call the same content in different ways. Your code in the webpages should be able to determine if and when you display things in your micro sites. That is not a standard Term in WCM as I understand it (microsite) but the concept works.
    3. I may not understand the question, but my assumption of what you want is:
    Site studio websites can use many types of content (text, html, worddocs, openoffice docs,code fragments, multi media) all checked in individually, to build up one page for display.

  • I can not access User/Group System Preferences

    Since a recent security update I can no longer acces the sytem preferences to my accounts. this means that I can not change passwords, edit or create accounts.
    When ever I click on the icon it crashes the sytem preferences widow and I get a load of error data that is sent to Apple.
    I have tried to get into these from all the accounts on the computer with the same effect (although I have the only administrator password).
    Is this an issue with the security update or an issue with how it effects my computer, or just coincidence.
    Any ideas?
    Rob

    Sorry, a bit of a duffer when it comes to this type of stuff.
    I have followed step 1 and I get a list of stuff one being the system prefences bit that says a crash report has been saved. Is it a copy of this report you want me post (ie the firts part) or just a copy of the line that says it has crashed?
    Step 1
    30/08/2013 09:43:08.594 mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    30/08/2013 09:43:09.142 com.apple.launchd.peruser.503[156]: ([0x0-0x1f01f].com.apple.systempreferences[261]) Job appears to have crashed: Segmentation fault: 11
    30/08/2013 09:43:09.739 ReportCrash[266]: Saved crash report for System Preferences[261] version 12.0 (12.0) to /Users/rob/Library/Logs/DiagnosticReports/System Preferences_2013-08-30-094309_name of cumputer.crash
    30/08/2013 09:43:11.079 system_profiler[268]: ERR GetChild: 268435459
    Hope that is what you wanted.
    Step 2 - again I hope I have posted what you need. It looks a lot of data to me.
    rocess:         System Preferences [932]
    Path:            /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Identifier:      com.apple.systempreferences
    Version:         12.0 (12.0)
    Build Info:      SystemPrefsApp-232001000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [427]
    User ID:         503
    Date/Time:       2013-08-29 18:24:17.569 +0100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          3341 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  52 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      05CBABB2-F370-F486-AF84-4D95741027DF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
    VM Regions Near 0x8:
    -->
        __TEXT                 0000000104d1b000-0000000104d3f000 [  144K] r-x/rwx SM=COW  /Applications/System Preferences.app/Contents/MacOS/System Preferences
    Application Specific Information:
    com.apple.preferences.users v.13.0 (Users & Groups)
    objc[932]: GC: forcing GC OFF because OBJC_DISABLE_GC is set
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x00007fff89c8da95 CFGetTypeID + 197
    1   com.apple.framework.Admin               0x00007fff8f90bb1b +[NSDictionary(cXMLDataConvertor) dictionaryFromXMLString:] + 146
    2   com.apple.preferences.users             0x000000010a5dae92 0x10a5d8000 + 11922
    3   com.apple.preferences.users             0x000000010a5dac1f 0x10a5d8000 + 11295
    4   com.apple.preferences.users             0x000000010a5da2bd 0x10a5d8000 + 8893
    5   com.apple.preferences.users             0x000000010a5d9e8a 0x10a5d8000 + 7818
    6   com.apple.AppKit                        0x00007fff92292dea -[NSCustomObject nibInstantiate] + 382
    7   com.apple.AppKit                        0x00007fff92272652 -[NSIBObjectData instantiateObject:] + 311
    8   com.apple.AppKit                        0x00007fff92271df7 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 337
    9   com.apple.AppKit                        0x00007fff9225111d loadNib + 317
    10  com.apple.AppKit                        0x00007fff92250649 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 219
    11  com.apple.AppKit                        0x00007fff923a358c +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 140
    12  com.apple.frameworks.preferencepanes          0x00007fff8f78e9bf -[NSPreferencePane loadMainView] + 148
    13  com.apple.frameworks.preferencepanes          0x00007fff8f78e4d1 -[NSPrefPaneBundle instantiatePrefPaneObject] + 414
    14  com.apple.systempreferences             0x0000000104d233cf 0x104d1b000 + 33743
    15  com.apple.systempreferences             0x0000000104d22bf4 0x104d1b000 + 31732
    16  com.apple.Foundation                    0x00007fff91275d05 __NSFireDelayedPerform + 358
    17  com.apple.CoreFoundation                0x00007fff89ccb804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    18  com.apple.CoreFoundation                0x00007fff89ccb31d __CFRunLoopDoTimer + 557
    19  com.apple.CoreFoundation                0x00007fff89cb0ad9 __CFRunLoopRun + 1529
    20  com.apple.CoreFoundation                0x00007fff89cb00e2 CFRunLoopRunSpecific + 290
    21  com.apple.HIToolbox                     0x00007fff8a35aeb4 RunCurrentEventLoopInMode + 209
    22  com.apple.HIToolbox                     0x00007fff8a35ab94 ReceiveNextEventCommon + 166
    23  com.apple.HIToolbox                     0x00007fff8a35aae3 BlockUntilNextEventMatchingListInMode + 62
    24  com.apple.AppKit                        0x00007fff922b1533 _DPSNextEvent + 685
    25  com.apple.AppKit                        0x00007fff922b0df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    26  com.apple.AppKit                        0x00007fff922a81a3 -[NSApplication run] + 517
    27  com.apple.AppKit                        0x00007fff9224cbd6 NSApplicationMain + 869
    28  libdyld.dylib                           0x00007fff8b12c7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff89f76d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8fc17dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8fc179ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff89f766d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8a122f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8a122d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8a10d1d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7780f268  rbx: 0x0000000000000000  rcx: 0x00000000003f0200  rdx: 0x0000000000157130
      rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff5aee2db0  rsp: 0x00007fff5aee2da0
       r8: 0x00007fbf0d9a4bc0   r9: 0x00000000064b8614  r10: 0x0000000000000000  r11: 0x00000000064b8614
      r12: 0x0000000000000000  r13: 0x00007fff93a0d240  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff89c8da95  rfl: 0x0000000000010246  cr2: 0x0000000000000008
    Logical CPU: 0
    Binary Images:
           0x104d1b000 -        0x104d3efff  com.apple.systempreferences (12.0 - 12.0) <0249AAAE-AA18-3A55-BBCE-D870C940E8C7> /Applications/System Preferences.app/Contents/MacOS/System Preferences
           0x106d48000 -        0x106d48ff9 +cl_kernels (???) <A179BB99-6ACE-4621-8859-53B24606E19E> cl_kernels
           0x106d51000 -        0x106d5afe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x106d74000 -        0x106d75ffb +cl_kernels (???) <40A6846E-41F9-4664-A815-43E73E2C179C> cl_kernels
           0x108c78000 -        0x108d12ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10a4de000 -        0x10a4deff9 +cl_kernels (???) <EEA4655A-C1CF-4BF8-AE77-DFDDC025FF19> cl_kernels
           0x10a4e2000 -        0x10a4e2ff3 +cl_kernels (???) <BBD9624E-B0FE-4EE5-9CCE-728FB9756AAB> cl_kernels
           0x10a509000 -        0x10a50efff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 - 2.3.7fc4) <586F677E-D0F8-33B2-B6ED-41ED81C9EED9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10a523000 -        0x10a5b9ff7  unorm8_rgba.dylib (2.2.16) <853BEBC4-AED9-3CE2-B91D-3D666E7C7C8F> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x10a5d8000 -        0x10a62bff7  com.apple.preferences.users (13.0 - 13.0) <E837008C-3E63-3B69-A283-B437D5ABBD81> /System/Library/PreferencePanes/Accounts.prefPane/Contents/MacOS/Accounts
           0x10a658000 -        0x10a668fff  com.apple.frameworks.opendirectoryconfigui (10.8 - 10.8) <32A6D6F0-D92F-3BA1-AC9F-721B292C26DA> /System/Library/PrivateFrameworks/OpenDirectoryConfigUI.framework/Versions/A/Op enDirectoryConfigUI
           0x10a67b000 -        0x10a690fff  com.apple.frameworks.preferencepanessupport (12.0 - 12.0) <B2DDBD97-CE08-3632-BFED-43325BCDDD7A> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10a6a5000 -        0x10a6bffff  com.apple.OpenDirectoryConfig (10.8 - 57.7) <457BFAA8-009A-39C0-B9E9-8A7818DE2ECD> /System/Library/PrivateFrameworks/OpenDirectoryConfig.framework/Versions/A/Open DirectoryConfig
           0x10a6d4000 -        0x10a754fff  com.apple.frameworks.server.foundation (10.8 - 204) <2896B86E-FD09-3869-9E43-2448D45C938E> /System/Library/PrivateFrameworks/ServerFoundation.framework/Versions/A/ServerF oundation
           0x10a7b9000 -        0x10a7bdfff  com.apple.ServerInformation (1.2 - 1) <31EDF873-3B73-3899-9989-2B57BD45D65A> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x10a7c4000 -        0x10a7d6ff7  com.apple.PlatformHardwareManagement (2.0.1 - 2.0.1) <9B001A7A-53C8-3C0D-954B-17867142B8F8> /System/Library/PrivateFrameworks/PlatformHardwareManagement.framework/Versions /A/PlatformHardwareManagement
           0x10a7e3000 -        0x10a819fff  com.apple.frameworks.CoreDaemon (1.1 - 1.1) <FA51F181-C2A4-3817-B6FC-93EF0CDEF6F6> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
           0x10a829000 -        0x10a833ff7  com.apple.AppleSRP (5.0 - 1) <16B1431A-295A-386B-9159-A396877D6FE3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff6491b000 -     0x7fff6494f93f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff872b4000 -     0x7fff872d6ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff872e3000 -     0x7fff873e1fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff873fe000 -     0x7fff8748bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8748c000 -     0x7fff874cdff7  com.apple.framework.corewlankit (2.0.2 - 202.10) <532A7801-A7D8-3FB1-A469-91EB18CB4F05> /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/CoreWLANKit
        0x7fff87539000 -     0x7fff87739fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8773a000 -     0x7fff8774efff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8774f000 -     0x7fff87759fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8775a000 -     0x7fff879f5ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff879f6000 -     0x7fff87ac8ff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff87ac9000 -     0x7fff87b13ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff87b18000 -     0x7fff87b86ff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff87bb0000 -     0x7fff87bb4fff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff87bb5000 -     0x7fff87bd5fff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87bd6000 -     0x7fff87c21ff7  com.apple.GraphKit (1.0.5 - 30) <3041F39B-5372-334E-9757-3EBFE0CDA293> /System/Library/PrivateFrameworks/GraphKit.framework/Versions/A/GraphKit
        0x7fff87c22000 -     0x7fff8805efef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff89024000 -     0x7fff89024fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff89025000 -     0x7fff89027fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff89028000 -     0x7fff89090ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff890c7000 -     0x7fff89184ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff891ea000 -     0x7fff89237fff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff89296000 -     0x7fff892e5ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff894d3000 -     0x7fff895a1fff  com.apple.Bluetooth (4.1.4 - 4.1.4f2) <B08B37AD-88BB-3048-A4AF-8A7B3F9A598C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff895a2000 -     0x7fff895fcfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff89654000 -     0x7fff89693ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8969c000 -     0x7fff89940ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff89941000 -     0x7fff89b9cff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff89b9d000 -     0x7fff89c31ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff89c32000 -     0x7fff89c7afff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff89c7b000 -     0x7fff89e65ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff89e66000 -     0x7fff89f63fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff89f64000 -     0x7fff89f7fff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a10c000 -     0x7fff8a1d8ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8a1d9000 -     0x7fff8a238fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8a2e1000 -     0x7fff8a2ecfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8a2ed000 -     0x7fff8a2f0fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff8a2f1000 -     0x7fff8a2faff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8a2fb000 -     0x7fff8a62bfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8a653000 -     0x7fff8a660fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8a8aa000 -     0x7fff8a8affff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8a8b0000 -     0x7fff8aca7fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8aca8000 -     0x7fff8acc7ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8acc8000 -     0x7fff8acd3fff  com.apple.CoreBluetooth (100.6 - 1) <8166B68C-3AA7-30F9-8454-CA2AA03F50E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
        0x7fff8acd4000 -     0x7fff8ad3cfff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8adcb000 -     0x7fff8b000ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b001000 -     0x7fff8b00ffff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8b010000 -     0x7fff8b129fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8b12a000 -     0x7fff8b12dff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8b12e000 -     0x7fff8b24efff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8b24f000 -     0x7fff8b253fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8b254000 -     0x7fff8b256fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8b257000 -     0x7fff8b266ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8b267000 -     0x7fff8b33aff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8b33b000 -     0x7fff8b33efff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8b3c2000 -     0x7fff8b3d5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b3d6000 -     0x7fff8b547ff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8bd3b000 -     0x7fff8bd51fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8bd52000 -     0x7fff8bdb5ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8bdb6000 -     0x7fff8c7464af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8c747000 -     0x7fff8c7a0ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8c7a1000 -     0x7fff8c7a5ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8c7a6000 -     0x7fff8c825ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8c84e000 -     0x7fff8c913ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8c914000 -     0x7fff8c91bfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c91c000 -     0x7fff8c91cfff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8c91d000 -     0x7fff8c925fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8c926000 -     0x7fff8c928fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c933000 -     0x7fff8c9c2fff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
        0x7fff8c9c3000 -     0x7fff8c9c8fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8ca8d000 -     0x7fff8ca90ff7  com.apple.LoginUICore (2.1 - 2.1) <98A808A9-F27D-37A9-84D6-77B61C444F97> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8ca91000 -     0x7fff8cd0cff7  com.apple.RawCamera.bundle (4.08 - 707) <1DC4305D-C8FE-3680-BE23-937A58F4BD71> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8cd4d000 -     0x7fff8cde8fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8cde9000 -     0x7fff8cdf1ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8ce93000 -     0x7fff8ce94fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8cea3000 -     0x7fff8cee6ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8cee7000 -     0x7fff8ceebfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8ceec000 -     0x7fff8cf29fef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8cf2a000 -     0x7fff8d01ffff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8d045000 -     0x7fff8d2fcff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8d2fd000 -     0x7fff8d303fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff8d304000 -     0x7fff8d39efff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d3dc000 -     0x7fff8d3e7ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8d3e8000 -     0x7fff8d3ecff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8d437000 -     0x7fff8d465fff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d466000 -     0x7fff8d46bff7  com.apple.CaptiveNetworkSupport (12.0 - 1) <D917B57A-CDE3-3F01-B676-C068DBAAB7E4> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNe twork
        0x7fff8d46e000 -     0x7fff8d484fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8d485000 -     0x7fff8d4b0fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8ddc4000 -     0x7fff8ddc8fff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8ddc9000 -     0x7fff8ddd7fff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8de04000 -     0x7fff8de3eff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8de57000 -     0x7fff8de88ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8de89000 -     0x7fff8df3afff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8df3b000 -     0x7fff8df8aff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8df8b000 -     0x7fff8e0e9fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8e29c000 -     0x7fff8e29dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8e7a6000 -     0x7fff8e7a6ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8e7a7000 -     0x7fff8e7d3ff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8e7d4000 -     0x7fff8e7e2ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8e7e3000 -     0x7fff8ea64fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8eac0000 -     0x7fff8eac0fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8eac1000 -     0x7fff8eac2ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8eac3000 -     0x7fff8ebb4ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8ebb5000 -     0x7fff8ebc2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8ebc3000 -     0x7fff8ee87fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8eed9000 -     0x7fff8eedaff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8eedb000 -     0x7fff8eee7fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8eee8000 -     0x7fff8eee9ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff8eeea000 -     0x7fff8ef6cff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8ef6d000 -     0x7fff8ef77ff7  com.apple.xpcobjects (103 - 103) <9496FA67-F53E-37B8-845A-462B924AA5BE> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff8ef78000 -     0x7fff8ef8ffff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8ef90000 -     0x7fff8efe1ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8efe5000 -     0x7fff8f193fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8f194000 -     0x7fff8f1bbfff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8f1bc000 -     0x7fff8f2b9ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff8f2ba000 -     0x7fff8f3bcfff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f3c7000 -     0x7fff8f698ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8f699000 -     0x7fff8f6a7ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
        0x7fff8f6a8000 -     0x7fff8f6bdfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8f6be000 -     0x7fff8f6f2fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8f732000 -     0x7fff8f789ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8f78a000 -     0x7fff8f7a5ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8f7a6000 -     0x7fff8f8f8fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8f8f9000 -     0x7fff8f92bfff  com.apple.framework.Admin (12.1 - 12.1) <2DA7835C-D3AB-3512-BDC1-03F437270772> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8fa46000 -     0x7fff8fa68ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8fa69000 -     0x7fff8fa69fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8fa6a000 -     0x7fff8fa6afff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8fa6b000 -     0x7fff8fa6dfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8fab3000 -     0x7fff8fabafff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8fabb000 -     0x7fff8fac6fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8fac7000 -     0x7fff8fafdfff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8fb46000 -     0x7fff8fb67ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8fb68000 -     0x7fff8fb69fff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff8fb6a000 -     0x7fff8fb6ffff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8fb70000 -     0x7fff8fbabfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8fbc4000 -     0x7fff8fbd3fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8fbd4000 -     0x7fff8fbe2fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8fbe3000 -     0x7fff8fc11ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8fc12000 -     0x7fff8fc12fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8fc13000 -     0x7fff8fc28ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff8fc29000 -     0x7fff8fc3bff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8fc3c000 -     0x7fff8fc53fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8fc54000 -     0x7fff8fcaeff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8fcaf000 -     0x7fff8fcb2fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8fcb3000 -     0x7fff8fd20ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8fd21000 -     0x7fff8febcfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8ff5d000 -     0x7fff8ffcdfff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff8ffce000 -     0x7fff90019fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9001b000 -     0x7fff9001bfff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff9001c000 -     0x7fff90439fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff9043f000 -     0x7fff90440fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff90441000 -     0x7fff90be8fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90be9000 -     0x7fff90c52fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff90cc3000 -     0x7fff90d69ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff90d6a000 -     0x7fff90dc6ff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff90dc7000 -     0x7fff90de8fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff90de9000 -     0x7fff90decfff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff90ded000 -     0x7fff90dedfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff90dee000 -     0x7fff90dfaff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff90dfb000 -     0x7fff90f70ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff90f71000 -     0x7fff90f88fff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9107b000 -     0x7fff91201fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff91202000 -     0x7fff91561fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff9156b000 -     0x7fff9156dfff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff9156f000 -     0x7fff915befff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff915bf000 -     0x7fff915c1ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff915c2000 -     0x7fff915cdff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff915db000 -     0x7fff91603fff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff91633000 -     0x7fff91658ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff91659000 -     0x7fff9166cff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff9166d000 -     0x7fff91673ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff91674000 -     0x7fff916d0fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff916d1000 -     0x7fff916fdfff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff916fe000 -     0x7fff91740ff7  com.apple.LoginUIKit (2.1 - 2.1) <3198733A-0FF1-3D7C-87FC-0268097D0BAF> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/LoginUIKit
        0x7fff91741000 -     0x7fff91743ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff91744000 -     0x7fff9174fff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff91750000 -     0x7fff91794fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
        0x7fff91795000 -     0x7fff917affff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff917b0000 -     0x7fff917bafff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
        0x7fff91930000 -     0x7fff91987ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff91988000 -     0x7fff919cbff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff919cc000 -     0x7fff919ebff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff919fe000 -     0x7fff91a25ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff91a26000 -     0x7fff91aa7fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff91e34000 -     0x7fff9214bff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff9214c000 -     0x7fff9214cfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff9214d000 -     0x7fff9214dfff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff9214e000 -     0x7fff9215bff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff9215c000 -     0x7fff92d89fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff92d8a000 -     0x7fff92e95fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff92f4f000 -     0x7fff92f86ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
        0x7fff92fa3000 -     0x7fff92feefff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff92fef000 -     0x7fff930f1fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff930f2000 -     0x7fff93190ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff93243000 -     0x7fff93245ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff93246000 -     0x7fff9324dfff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff934c4000 -     0x7fff935defff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff93618000 -     0x7fff93624fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff93625000 -     0x7fff9367bfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff9367c000 -     0x7fff93699ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff9369a000 -     0x7fff9374dff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff9374e000 -     0x7fff9374ffff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff93750000 -     0x7fff937d0ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff93815000 -     0x7fff9381bfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff9381c000 -     0x7fff938f6fff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff938f7000 -     0x7fff938fefff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff9393c000 -     0x7fff9394dff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff939da000 -     0x7fff93a06fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff93a07000 -     0x7fff93b1f92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff93b20000 -     0x7fff93b75ff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff93b76000 -     0x7fff93b9eff7  com.apple.SystemConfiguration.EAP8021X (12.0.0 - 12.0) <0C5790F7-BAC0-3EFE-BFF8-C611C77369D9> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
        0x7fff93b9f000 -     0x7fff93ba5fff  libCGXCoreImage.A.dylib (332) <F6300A73-D4C4-3DE6-A1B7-806E627CCF76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff93ba6000 -     0x7fff93bd0ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff93c2c000 -     0x7fff93c6cff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff93c6d000 -     0x7fff93ca7fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff93ca8000 -     0x7fff93cf4ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff93cf5000 -     0x7fff93e1fff7  com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff93eab000 -     0x7fff93eaffff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff93eb0000 -     0x7fff93ee6fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff93ee7000 -     0x7fff93ee7fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff93ee8000 -     0x7fff94197fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 729
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.5M resident=172.7M(89%) swapped_out_or_unallocated=21.8M(11%)
    Writable regions: Total=149.1M written=75.2M(50%) resident=85.4M(57%) swapped_out=0K(0%) unallocated=63.7M(43%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  2112K
    CG image                             44K
    CG raster data                       76K
    CG shared images                   1184K
    CoreImage                            72K
    CoreServices                       2080K
    MALLOC                            117.3M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       24K
    OpenCL                               36K
    STACK GUARD                        56.0M
    Stack                              11.6M
    VM_ALLOCATE                        16.1M
    __DATA                             18.1M
    __IMAGE                             528K
    __LINKEDIT                         52.9M
    __TEXT                            141.6M
    __UNICODE                           544K
    mapped file                        63.1M
    shared memory                       308K
    ===========                      =======
    TOTAL                             483.5M
    System Profile:
    Model: iMac11,2, BootROM IM112.0057.B01, 2 processors, Intel Core i3, 3.2 GHz, 12 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364B54463531323634485A2D3147344D31
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x802C, 0x31364B54463531323634485A2D3147344D31
    Memo

  • OIM 9.1.0.2 - User group permission conflict issue

    Hi Gurus,
    IHAC who have faced a strange behavior about permission conflict.
    User has been assigned to a user group (ANALISTA DRSI) who have permission to disable resource of the users he administrates. The user group has been assigned to resource's administrator.
    The same use has been assigned to other user group (ANALISTA ADM DRSI) who have other permission. The user group has been not assigned to resource's administrator.
    If the user has been only assigned to ANALISTA DRSI user group the user is able to see records on Rogue Account report. If the customer has been assigned to both ANALISTA DRSI and ANALISTA ADM the user is not able to see the record on Rogue Account report. He got a display error message (You do not have permission). Both user groups have the Report menu item assigned.
    My question: if the customer is assigned to a user group who have permission to see the reports, should not the user is able to see the report even though he is also into the other group who do not have permission?
    Is there conflit in the OIM???
    Any tip will be very appreciated.

    Orgnaization > Manage > Select Org in which users are getting created > Administrative Group (Drop Down) > Select Group for which users are not coming.

  • Pulling user/group field data from SharePoint list using REST, jQuery, Knockout.js Sharepoint 2013

    I'm trying to make an interactive task board based on the task list app in SharePoint 2013. The task lisk includes fields like "Title","Description","Status","% Complete","Due Date","Assigned To",
    etc. I used knockout.js to bind "Title","Description", and "Status" to my HTML controls. Here is some of the code:
    var ViewModal = function(items, listname){
    var self = this;
    self.sortBy = ko.observableArray(sortBy);
    self.tasks = ko.observableArray(items);
    self.listname = ko.observable(listname);
    self.auto = ko.observable(false);
    self.getTasks = function() {
    clearTimeout(self.getTasks);
    // server relative url to REST service endpoint
    var ajaxurl = _spPageContextInfo.webServerRelativeUrl + "/_vti_bin/listdata.svc/" + self.listname() + "?$orderby=PriorityValue";
    $.ajax({
    type: "GET",
    url: ajaxurl,
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    cache: false,
    processData: true,
    success: function (data, status, xhr) {
    if (status == "success" && data) {
    ko.mapping.fromJS(data.d.results, mapping, self.tasks)
    $(".task-item").draggable();
    error: alert
    if (self.auto()) {
    setTimeout(self.getTasks, 10000);
    <div class="tasks-column">
    <div class="column-header">Not Started</div>
    <!-- ko foreach: tasksNotStarted -->
    <div class="task-item">
    <div class="view" data-bind="visible: !IsEditing()">
    <button class="edit" data-bind="click: $root.editTask">edit</button>
    <h2><span data-bind="text: Title"></span></h2>
    <div data-bind="html: Description"></div>
    <span data-bind="text: PriorityValue"></span>
    </div>
    <div class="edit" data-bind="visible: IsEditing">
    <button class="save" data-bind="click: $root.saveTask">save</button>
    <input type="text" data-bind="value: Title"></input>
    </div>
    </div>
    I'm having trouble displaying the data from the "Assigned To" user/group field. I tried:
    <span data-bind="text: AssignedTo"></span>
    But it displays the field as [object Object]
    I tried using $select/$expand
    ?$select=Title,AssignedTo/Id,Assignedto/Title&$expand=AssignedTo/Id,AssignedTo/T‌​itle";
    But it still returns the [object Object]

    Hi,
    Please use the REST URI below:
    /_api/lists/getbytitle('ListName')/items?$select=Title,AssignedTo/ID,AssignedTo/Title&$expand=AssignedTo/ID,AssignedTo/Title
    More information for your reference:
    How to get User Details and User Group Details in SharePoint 2013 REST API with Knockout for SharePoint Js (KoSpJs)
    http://www.ashokraja.me/post/How-to-get-User-Details-and-User-Group-Details-in-SharePoint-2013-REST-API-with-Knockout-for-SharePoint-Js-(KoSpJs).aspx
    How to Get Login Name and Display Name using SharePoint 2013 REST API
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/how-to-get-login-name-and-display-name-using-sharepoint-2013-rest-api.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Welcome to the new Oracle User Group Community

    Welcome to the new Oracle User Group Community. Whether you landed here via the redirect from the previous community site - IOUC.org - or navigated here directly, welcome. This new platform brings new community features to enhance the way you connect with user group peers and with Oracle, as well as make it easier for you to find information through a more intuitive interface. We invite you to provide your feedback on the new site. Log in using your OTN Forum credentials and join the discussion here. If you do not yet have OTN Forum log in credentials, navigate to http://community.oracle.com/community, click on the "Register" link in the upper right corner of the page and create your account.
    We look forward to hearing from you.

    Hi Kashif,
    Glad you like the new Community. Communication among user group leaders works a little differently on this site than on the previous site. Rather than having communication focus around e-mail distribution lists, communication now is focused within the site itself. The intent is that this will provide users the one place to come for information, rather than having to sort through lots of e-mail threads. That doesn't mean that e-mail is completely out of the picture though. Users can opt-in to receive e-mail notifications when an individual piece of content is changed, or when content is posted to a space. Look for the "Receive email notifications" link under "Actions" to start receiving notices. To stop receiving notices, go back to the same content/space and click "Stop email notifications".
    Your Relationship Manager will be talking with you and the other leaders in your region over the next few days and weeks regarding how you and your group of leaders want to communicate.
    Best regards,
    Oracle User Group Team

  • What is the Advantage of creation of user group through SUGR?

    Hello Masters,
    As per audit requirement I have maintained user groups for different sets of users through SUGR, but I am not getting except differenciating users (based on group), is there any other advantage? Can we assign role to a user group instead of assigning to list of users  or can we do any mass changes to an user group by giving only user group name.
    Regards,
    Nilutpal.

    Dear Neels,
    Apart from maintaining user group for Differnciation purpose you can also take the advantage on the following sectors:
    1. Follow the http://help.sap.com/saphelp_nw04/helpdata/en/ce/17533e5ff4d064e10000000a114084/content.htm link . From this you will come to know the use of user group in the authorisation area.
    2. User Groups also allow segregation of user maintenance, this is especially useful in a large organisation as you can control who your user admin team can maintain - an example would be giving a team leader the authority to change passwords for users in their team. 
    3. The authorization user group is used in conjunction with S_USER_GROUP authorization object. It allows to create security management authorization by user group. e.g. you can have a local security administrator only able to manage users in his groups, Help-Desk to reset password for all users except users in group SUPER, etc... 
    In case any issue, please feel free to reply.
    Regards,
    Nilutpal.

Maybe you are looking for