HR Reports SALARY SURVEY SUBMISSION

Hi,
i new to ABAP HR i need to write a program for the
SALARY SURVEY SUBMISSION , can any one explain how to start my program and if possible can any one send me the related code for it ,
Please it is bit urgent.
Thanks
A LAxmi

Hi ,
Check this prog. if it helps u its an exp. program for HR ......
REPORT zp_postcode.
type-pools: slis. "ALV Declarations
NODES: pernr.
INFOTYPES: 0000, 0001, 0002, 0006, 0008, 0014, 0105, 0121.
SELECTION-SCREEN BEGIN OF BLOCK pcode WITH FRAME TITLE text-s01.
SELECT-OPTIONS: so_pcode FOR p0006-pstlz.
SELECTION-SCREEN END OF BLOCK pcode.
TYPES: BEGIN OF t_output,
pernr TYPE p0001-pernr, "personnel name
anredtxt TYPE t522t-atext, "title (based on p0002-anred)
fname TYPE p0002-vorna, "first name
lname TYPE p0002-nachn, "last name
orgtx TYPE t527x-orgtx, "dept
fte TYPE p0008-bsgrd, "fte
parking(20) TYPE c,
payslip TYPE t526-sachn, "payslip address
telno TYPE p0105-usrid_long, "tel number(p0105-usrty = 0020)
email TYPE p0105-usrid_long, "email (p0105-usrty = MAIL)
postcode type p0006-pstlz,
END OF t_output.
DATA: it_output TYPE STANDARD TABLE OF t_output INITIAL SIZE 0,
wa_output TYPE t_output.
*ALV data declarations
data: fieldcatalog type slis_t_fieldcat_alv with header line,
gd_tab_group type slis_t_sp_group_alv,
gd_layout type slis_layout_alv,
gd_repid like sy-repid,
gt_events type slis_t_event,
gd_prntparams type slis_print_alv,
gd_count(6) type n,
gd_outtext(70) type c,
gd_lines type i.
*START-OF-SELECTION.
START-OF-SELECTION.
clear: gd_count.
GET pernr.
Infotype 0121 is used to store multiple contracts for personnel.
Field p0121-hpern contains the personnel number for the main contract.
PROVIDE * from p0121 between pn-begda and pn-endda.
Check if main contract
if p0121-pernr ne p0121-hpern.
reject.
endif.
ENDPROVIDE.
add 1 to gd_count.
concatenate 'Processing personnel data'(m10) gd_count into gd_outtext
separated by ' '.
Display indicator for employee count
perform progress_indicator using gd_outtext.
Retrieve datd from infotypes
rp_provide_from_last p0000 space pn-begda pn-endda.
rp_provide_from_last p0001 space pn-begda pn-endda.
rp_provide_from_last p0002 space pn-begda pn-endda.
rp_provide_from_last p0006 space pn-begda pn-endda.
rp_provide_from_last p0008 space pn-begda pn-endda.
rp_provide_from_last p0014 space pn-begda pn-endda.
Check post code
CHECK p0006-pstlz IN so_pcode. "cp
Post code
wa_output-postcode = p0006-pstlz.
Personnel number
wa_output-pernr = pernr-pernr.
Personnel title
SELECT SINGLE atext
FROM t522t
INTO wa_output-anredtxt
WHERE sprsl EQ sy-langu AND
anred EQ p0002-anred.
First name
wa_output-fname = p0002-vorna.
Last name
wa_output-lname = p0002-nachn.
Organizational Unit text (dept)
SELECT SINGLE orgtx
FROM t527x
INTO wa_output-orgtx
WHERE sprsl EQ sy-langu AND
orgeh EQ p0001-orgeh AND
endda GE sy-datum.
FTE
wa_output-fte = p0008-bsgrd.
Parking / travel deducted?
CASE p0014-lgart.
WHEN '7180' OR '7181' OR '7182'.
wa_output-parking = text-002.
WHEN '7183'.
wa_output-parking = text-001.
WHEN '7171' OR '7172' or '7173' or '7174' or
'7175' or '7176' or '7177' or '7178'.
wa_output-parking = text-003.
ENDCASE.
Payslip Address
SELECT SINGLE sachn
FROM t526
INTO wa_output-payslip
WHERE werks EQ p0001-werks AND
sachx EQ p0001-sacha.
PROVIDE * from p0105 between pn-begda and pn-endda.
Telephone numbers
if p0105-usrty = '0020'.
wa_output-telno = p0105-usrid_long.
endif.
Email address
if p0105-usrty = 'MAIL'.
wa_output-email = p0105-usrid_long.
endif.
ENDPROVIDE.
append wa_output to it_output.
clear: wa_output.
*END-OF-SELECTION.
END-OF-SELECTION.
describe table it_output lines gd_lines.
if gd_lines gt 0.
perform build_fieldcatalog.
perform build_layout.
perform display_alv_report.
else.
message i003(zp) with 'No records found'.
endif.
*& Form PROGRESS_INDICATOR
Displays progress indicator on SAP screen
form progress_indicator using p_text.
call function 'SAPGUI_PROGRESS_INDICATOR'
exporting
PERCENTAGE = 0
text = p_text.
endform. " PROGRESS_INDICATOR
*& Form BUILD_FIELDCATALOG
Build Fieldcatalog for ALV Report
form build_fieldcatalog.
fieldcatalog-fieldname = 'PERNR'.
fieldcatalog-seltext_m = 'Personnel No.'.
fieldcatalog-col_pos = 0.
fieldcatalog-outputlen = 10.
fieldcatalog-emphasize = 'X'.
fieldcatalog-key = 'X'.
fieldcatalog-do_sum = 'X'.
fieldcatalog-no_zero = 'X'.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'ANREDTXT'.
fieldcatalog-seltext_m = 'Title'.
fieldcatalog-col_pos = 1.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'FNAME'.
fieldcatalog-seltext_m = 'First Name'.
fieldcatalog-col_pos = 2.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'LNAME'.
fieldcatalog-seltext_m = 'Last Name'.
fieldcatalog-col_pos = 3.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'ORGTX'.
fieldcatalog-seltext_m = 'Department'.
fieldcatalog-col_pos = 4.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'FTE'.
fieldcatalog-seltext_m = 'FTE'.
fieldcatalog-col_pos = 5.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'PARKING'.
fieldcatalog-seltext_m = 'Parking/Metrocard'.
fieldcatalog-col_pos = 6.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'PAYSLIP'.
fieldcatalog-seltext_m = 'Payslip Add.'.
fieldcatalog-col_pos = 7.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'TELNO'.
fieldcatalog-seltext_m = 'Telephone'.
fieldcatalog-col_pos = 8.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'EMAIL'.
fieldcatalog-seltext_m = 'E-mail'.
fieldcatalog-col_pos = 9.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
fieldcatalog-fieldname = 'POSTCODE'.
fieldcatalog-seltext_m = 'Post code'.
fieldcatalog-col_pos = 10.
append fieldcatalog to fieldcatalog.
clear fieldcatalog.
endform. " BUILD_FIELDCATALOG
*& Form BUILD_LAYOUT
Build layout for ALV grid report
form build_layout.
gd_layout-no_input = 'X'.
gd_layout-colwidth_optimize = 'X'.
gd_layout-totals_text = 'Totals'(201).
gd_layout-zebra = 'X'.
endform. " BUILD_LAYOUT
*& Form DISPLAY_ALV_REPORT
Display report using ALV grid
form display_alv_report.
gd_repid = sy-repid.
call function 'REUSE_ALV_GRID_DISPLAY'
exporting
i_callback_program = gd_repid
is_layout = gd_layout
it_fieldcat = fieldcatalog[]
i_save = 'X'
tables
t_outtab = it_output
exceptions
program_error = 1
others = 2.
if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
endif.
endform. " DISPLAY_ALV_REPORT
Regards,
vind.

Similar Messages

  • Results Of The Oracle Certification 2009 Salary Survey

    !http://blogs.oracle.com/certification/0116.jpg!
    *<p>The results of the Oracle Certification Program's 2009 Salary Survey, which was administered via the Internet earlier this year have been released.</p>*<p align="justify">Responses from Oracle Certification E-Magazine subscribers, Oracle Certified individuals, and visitors to the Oracle Certification Blog are included in the survey results - with participants from every demographic region worldwide.</p>
    <p align="justify"> Of the 2,337 individuals who responded to the survey, 95% are employed either full- or part-time and reported that those who are Oracle certified typically earn an average salary that is $10K higher than candidates who are not certified.</p>
    <p align="justify"> For full details, visit Oracle Certification 2009 Salary Survey Results.</p>

    Am I the only one who doesn't see any figures (tried in FF & IE). Selecting from the LOV makes the page load but selecting an option e.g. regional salary / experience doesn't show anything.
    Edit: Europe doesn't show actually.
    Mike
    Edited by: Dird on Nov 17, 2009 1:13 PM
    Edited by: Dird on Nov 17, 2009 1:15 PM

  • How to create a report with survey data

    Hi All,
    I need to create a report with survey data in below format. Can anyone help me how to display the summary in this format.
    Swapna

    Hi Swapna,
    According to your description, you want to create a report with survey data and display the summary.
    Reporting Services is used for rendering the report with data retrieved from datasource. In Reporting Services, we can retrieve data from the datasource then design a report, after the report processed, data is fixed on the report. So it’s not supported
    to have the end users selection and do summary. For your requirement, it’s can’t be achieved currently.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Salary Survey

    Has anybody out there conducted a salary survey on Forte developers?
    If so, would you be willing to share the results with me? If not, any
    ideas????
    I have asked our HR departement to research what the average salary is
    for skilled Forte developers. However, they are not having any luck
    collecting information.
    Any "credible" information would be greatly appreciated. Please respond
    directly to my email address. I do not subscribe to the Sage
    forte-users service.
    James Krzeszowski
    Director, Software Development
    Advanta Business Services
    [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    If you have 4 years solid Java experience and 2 years
    extensive J2EE experience with teaching background,
    how much do you think would this person be worth in
    today's current market?Can I do with it what I want? Then I'll take it off your hands for 100 euro. (I'm not totally up to speed with the current slave market. but back in the days, this would have been a very expensive slave.)

  • Your Input Needed: Oracle Certification 2012 Salary Survey Continues

    Just a quick reminder that the Oracle Certification Salary Survey is still available. In this short (5 min) survey, we want to learn about how your certification impacts you, your career, and your earning potential.
    21 simple questions - Take Now: http://blogs.oracle.com/certification/entry/0678a

    Hi,
    Thank you very much to sharing with us. I also agreed Oracle Certification have important role in the salary.
    Awaiting for Oracle Blog & Survey result.
    Regards,
    Taj
    Oracle Database Administrator
    Oracle 9i Certified Professional

  • Take Certification Magazine's 2009 IT Salary Survey

    !http://blogs.oracle.com/certification/0130B.jpg!
    Take Certification Magazine's 2009 IT Salary Survey (plus be automatically entered into a drawing for a $100 AMEX gift certificate).
    Details on the *Oracle Certification Blog.*

    Hi Harold
    We will get the results of the survey published or will it only be used internally at Oracle?
    Thanks.
    Regards,
    Hub

  • Reminder: 2009 Oracle Certification 2009 Salary Survey

    !http://blogs.oracle.com/certification/2009-0219-1244.gif!
    A reminder that the Oracle Certification 2009 Salary Survey is still online and we look forward to your input. The survey is being conducted to help us understand the salaries that certified people earn, how they compare globally, and how holding one or more Oracle certifications has benefited your earnings. The survey is open to all Oracle Certified Associates (OCA), Professionals (OCPs), Masters (OCMs) and Experts (OCEs) worldwide as well as those not currently certified.
    The survey is open now, and remains available through Tuesday May 12, 2009. This survey is completely anonymous and does not ask for any personal information. We've kept it brief with only 17 questions and takes less than 20 minutes to complete.
    *[Take the survey now!|http://bit.ly/Ooim]*
    QUICK LINKS:
    <ul><li>Take Survey: [Oracle Certification Salary Survey|http://bit.ly/Ooim]</li>
    </ul>

    Thank you for information!
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Preview: Oracle Certification 2009 Salary Survey Results

    !http://blogs.oracle.com/certification/0116.jpg!
    Thanks to everyone who participated in our salary survey. We are busy working to compile, summarize and publish the results. The information will be available through the Oracle certification website and I&rsquo;ll let you know through the Oracle Certification Blog when it is ready.</p>
    <p>In the meantime however, I'd like to share some pre-release details that are interesting:</p>
    <ol>
    <li>Certified professionals earn over 13% more than non-certified counterparts.</li>
    <li>Years of experience in a role makes a big difference in overall compensation.</li>
    <li>Pay between various job roles (architect, developer, administrator) can be markedly different.</li>
    <li>Professionals who have earned more than one Oracle certification earn more than those hold one, and typically - the more certifications that you hold, the more likely you are to earn more.</li>
    </ol>
    <p>I&rsquo;ll discuss specific results in more detail when the salary survey results become available, and give my perspective on what it means to certification-holders and those considering certification. </p>
    <p>I look forward to your comments and thoughts!
    !http://blogs.oracle.com/certification/Paul-Sig-2.gif!
    <p>Paul Sorensen,
    Director, Oracle Certification</p>

    Hi,
    Thank you very much to sharing with us. I also agreed Oracle Certification have important role in the salary.
    Awaiting for Oracle Blog & Survey result.
    Regards,
    Taj
    Oracle Database Administrator
    Oracle 9i Certified Professional

  • Take the Oracle Certification Salary Survey

    !http://blogs.oracle.com/certification/2009-0208.gif!<p>Oracle University has just released a new brief online salary survey, which is being conducted to help us understand the salaries that certified people earn, how they compare globally, and how holding one or more Oracle certifications has benefited your earnings. The survey is open to all Oracle Certified Associates (OCA), Professionals (OCPs), Masters (OCMs) and Experts (OCEs) worldwide as well as those not currently certified.</p>
    <p>The survey is open now, and remains available through Tuesday May 12, 2009. This survey is completely anonymous and does not ask for any personal information. We’ve kept it brief with only 17 questions and takes less than 20 minutes to complete.</p>
    <p> Take the survey now!</p>
    <p><strong>QUICK LINKS:</strong></p>
    <ul>
    *<li>Take Survey: Oracle Certification Salary Survey</li>*
    </ul>

    Hi Harold
    We will get the results of the survey published or will it only be used internally at Oracle?
    Thanks.
    Regards,
    Hub

  • Job Pricing/Salary Survey Flow in  ECM

    Can someone describe in a technical manner the way in which salary survey information is exchanged between SAP and the provider?  How is job pricing activities completed via the portal?  How does it update the tables?  And what is the configuration either in the backend or in portals that needs to be done?
    Thanks in advance!

    Please refer to helpline provided in help.sap.com and refer to transaction PECM_START_JPR_BSP for documentation on how to do job pricing via portal. There is not much documentation available though on the same, but you may get back to me if you need help in completing cycle.
    Thanks,
    Prashant

  • Composite Salary Survey/Survey Results

    I'm looking for details information on how to configure Composite Salary Survey and Survey Results infotypes in HR ECM. 
    Please let me know where can I find detail information.
    Thank you in advance.
    H

    Hi Hetal,
    In ECM, you need only the Composite Survey Results (1271) infotype.  The Survey Results (1051) infotype is for CM.
    Coming to IT1271, this infotype will be automatically maintained for jobs if you are using the Job Pricing BSP. It is too elaborate to write everything down here. Please go through this link:
    http://help.sap.com/erp2005_ehp_04/helpdata/en/01/6e083f56e4d861e10000000a114084/frameset.htm
    Look under the Job Pricing section for the detailed process.
    Cheers,
    Donnie

  • Any opinions on loading Salary Survey/Market data to Oracle HR?

    Our choice is to look up each job individually on Salary.com and enter it manually or pull the data from The National Compensation Survey<http://www.bls.gov/ncs/data.htm> and loading it through the API.
    Any thoughts? If I don't want to buy any of the fancy analytics from salary.com and I have Oracle HR and OBI to produce my own reports, can I rely on the Government data?

    As my understanding there is not seeded solution exist for this.
    Ya you can create Custom interface and reports for this requirement .
    Recommended Two Approach.
    ===================
    1.
    you can check with National Compensation Survey<http://www.bls.gov/ncs/data.htm> or salary.com whether they provide any input data for outside application.
    If Yes you can design interface to read these files and then make custom reports/pages on them.
    2. If no , you have to manually create these flat file/Excel to provide data to interface.
    Thanks

  • HR report-salary

    Requirement:
    The salary should be payed off in May, but actually it payed off 3 months later,
    How to actualize this in HR report?

    Hi,
    If I understood it. You need to display two dates/month in report against every transaction (Salary paid) which will be expected and Actual month.
    You may compare both as well if required. If it doesn't fit as per your need please elaborate a bot regarding your trequirement.
    I hope it will help.
    Thanks,
    S

  • How do I attaching a confirmation page to a survey submission?

    The link below goes to my survey. I want to prompt participants to a confirmation page on submission. Where and how to I link to that confirmation page?
    http://www.diojeffcity.org/Home%20Page/Parishioner%20Survey/survey.html

    Hi
    At the end of your-
    sendresults.php
    page, you would have to redirect them to the confirmation page, using something similar to the following -
      $confirmGoTo = "confirm.php";
      header(sprintf("Location: %s", $confirmGoTo));
    PZ

  • Cupertino, we have a problem - Report to Apple - submission fails after crash

    Cupertino, I would love to send you a report but my computer can't get through.
    Ok, this has been going on for a week now. Earlier when my computer crashed it tried to send a report but "submission failed."
    Yesterday when my computer crashed it didn't even try to send a report.
    AlleyCat

    Yes, but that's not the problem. The crash log works, it just won't "send report to Apple."
    Process:         Safari [3742]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [98]
    Date/Time:       2012-02-09 15:43:40.695 -0500
    OS Version:      Mac OS X 10.5.8 (9L30)
    Report Version:  6
    Anonymous UUID:  F5ED974E-9936-4360-AC70-42323736DE53
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000170e
    Crashed Thread:  0
    Thread 0 Crashed:
    0   ...lashPlayer-10.4-10.5.plugin          0x2d307255 NP_Initialize + 1564949
    1   ...lashPlayer-10.4-10.5.plugin          0x2d30ab08 NP_Initialize + 1579464
    2   ...lashPlayer-10.4-10.5.plugin          0x2d2fb0d0 NP_Initialize + 1515408
    3   ...lashPlayer-10.4-10.5.plugin          0x2d2fc31f NP_Initialize + 1520095
    4   ...lashPlayer-10.4-10.5.plugin          0x2d2eb550 NP_Initialize + 1451024
    5   ...lashPlayer-10.4-10.5.plugin          0x2d2ce22e NP_Initialize + 1331438
    6   ...lashPlayer-10.4-10.5.plugin          0x2d2ce29a NP_Initialize + 1331546
    7   ...lashPlayer-10.4-10.5.plugin          0x2d2ee2db NP_Initialize + 1462683
    8   ...lashPlayer-10.4-10.5.plugin          0x2d2f11e9 NP_Initialize + 1474729
    9   ...lashPlayer-10.4-10.5.plugin          0x2d2f125e NP_Initialize + 1474846
    10  ???                                     0x3b54b7b4 0 + 995407796
    11  ...lashPlayer-10.4-10.5.plugin          0x2d2eedf6 NP_Initialize + 1465526
    12  ...lashPlayer-10.4-10.5.plugin          0x2d2f0d17 NP_Initialize + 1473495
    13  ...lashPlayer-10.4-10.5.plugin          0x2d2f0610 NP_Initialize + 1471696
    14  ...lashPlayer-10.4-10.5.plugin          0x2d22dc5c NP_Initialize + 674588
    15  ...lashPlayer-10.4-10.5.plugin          0x2d1f6c26 NP_Initialize + 449254
    16  ???                                     0x3b54e2c4 0 + 995418820
    17  ???                                     0x3b54b844 0 + 995407940
    18  ...lashPlayer-10.4-10.5.plugin          0x2cda9b11 0x2cce1000 + 822033
    19  ...lashPlayer-10.4-10.5.plugin          0x2cda3016 0x2cce1000 + 794646
    20  ...lashPlayer-10.4-10.5.plugin          0x2cdac2cc 0x2cce1000 + 832204
    21  ...lashPlayer-10.4-10.5.plugin          0x2ceb7bd1 0x2cce1000 + 1928145
    22  ???                                     0x3bef66d4 0 + 1005545172
    23  ???                                     0x3bee99c9 0 + 1005492681
    24  ???                                     0x3bee935c 0 + 1005491036
    25  ...lashPlayer-10.4-10.5.plugin          0x2cda9b11 0x2cce1000 + 822033
    26  ...lashPlayer-10.4-10.5.plugin          0x2cda3016 0x2cce1000 + 794646
    27  ...lashPlayer-10.4-10.5.plugin          0x2cda3dd0 0x2cce1000 + 798160
    28  ...lashPlayer-10.4-10.5.plugin          0x2cdaca91 0x2cce1000 + 834193
    29  ...lashPlayer-10.4-10.5.plugin          0x2d0f326b 0x2cce1000 + 4268651
    30  ...lashPlayer-10.4-10.5.plugin          0x2d0f4dcc 0x2cce1000 + 4275660
    31  ...lashPlayer-10.4-10.5.plugin          0x2d1128b0 FlashPlayer_10_3_183_11_FlashPlayer + 15216
    32  com.apple.WebKit                        0x90931639 WebNetscapePluginStream::destroyStream() + 713
    33  com.apple.WebKit                        0x909317e8 WebNetscapePluginStream::destroyStreamWithReason(short) + 72
    34  com.apple.WebCore                       0x917c737c WebCore::NetscapePlugInStreamLoader::didFinishLoading(double) + 60
    35  com.apple.WebCore                       0x910e06e7 -[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:] + 87
    36  com.apple.Foundation                    0x94377497 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    37  com.apple.Foundation                    0x94377403 _NSURLConnectionDidFinishLoading + 147
    38  com.apple.CFNetwork                     0x949fbba4 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    39  com.apple.CFNetwork                     0x949fc8fa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    40  com.apple.CFNetwork                     0x949fb370 URLConnectionClient::processEvents() + 104
    41  com.apple.CFNetwork                     0x949a8c2b MultiplexerSource::perform() + 189
    42  com.apple.CoreFoundation                0x91dae3c5 CFRunLoopRunSpecific + 3141
    43  com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    44  com.apple.HIToolbox                     0x97c4f2ac RunCurrentEventLoopInMode + 283
    45  com.apple.HIToolbox                     0x97c4f0c5 ReceiveNextEventCommon + 374
    46  com.apple.HIToolbox                     0x97c4ef39 BlockUntilNextEventMatchingListInMode + 106
    47  com.apple.AppKit                        0x922626d5 _DPSNextEvent + 657
    48  com.apple.AppKit                        0x92261f88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    49  com.apple.Safari                        0x000166ad 0x1000 + 87725
    50  com.apple.AppKit                        0x9225af9f -[NSApplication run] + 795
    51  com.apple.AppKit                        0x922281d8 NSApplicationMain + 574
    52  com.apple.Safari                        0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937ddd81 sleep$UNIX2003 + 63
    2   com.apple.JavaScriptCore                0x93a9eab1 ***::TCMalloc_PageHeap::scavengerThread() + 145
    3   com.apple.JavaScriptCore                0x93a9ed8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                       0x90fd4587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                       0x90fd1e19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x93781166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9378895c mach_msg + 72
    2   com.apple.CoreFoundation                0x91dade7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork                     0x9497c18c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    6   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x93781166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9378895c mach_msg + 72
    2   com.apple.CoreFoundation                0x91dade7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    8   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x938f36b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x90fed77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x93781166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9378895c mach_msg + 72
    2   com.apple.CoreFoundation                0x91dade7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation                    0x94375520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation                    0x94311dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x943119a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    8   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x93781166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9378895c mach_msg + 72
    2   com.apple.CoreFoundation                0x91dade7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                        0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                        0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                        0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    8   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x938f36b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                        0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                        0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                        0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    7   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.QuartzCore                    0x95a0ea09 fe_fragment_thread + 54
    3   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    4   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x938f36b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x916cb338 WebCore::DatabaseThread::databaseThread() + 280
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore                0x938f36b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                       0x90fed77c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x937d060a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    2   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   com.zang.RegexKit                       0x01cd950b RKFastConditionLock + 896
    4   com.zang.RegexKit                       0x01cea4bc -[RKThreadPool workerThreadStart:] + 708
    5   com.apple.Foundation                    0x94311dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x943119a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    8   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   com.zang.RegexKit                       0x01cd950b RKFastConditionLock + 896
    4   com.zang.RegexKit                       0x01cea4bc -[RKThreadPool workerThreadStart:] + 708
    5   com.apple.Foundation                    0x94311dfd -[NSThread main] + 45
    6   com.apple.Foundation                    0x943119a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    8   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x93781166 mach_msg_trap + 10
    1   libSystem.B.dylib                       0x9378895c mach_msg + 72
    2   com.apple.CoreFoundation                0x91dade7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation                0x91daeaa8 CFRunLoopRunInMode + 88
    4   com.apple.audio.CoreAudio               0x95e945f8 HALRunLoop::OwnThread(void*) + 160
    5   com.apple.audio.CoreAudio               0x95e94480 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    7   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.ColorSync                     0x948623c8 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3   com.apple.ColorSync                     0x94874d4e CMMConvTask(void*) + 54
    4   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    5   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                       0x937811c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x937b4a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x94357dbc -[NSCondition waitUntilDate:] + 236
    4   com.apple.Foundation                    0x94357bd0 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5   com.apple.Foundation                    0x94357b35 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.AppKit                        0x922c86e8 -[NSUIHeartBeat _heartBeatThread:] + 753
    7   com.apple.Foundation                    0x94311dfd -[NSThread main] + 45
    8   com.apple.Foundation                    0x943119a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    10  libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                       0x9378834e __semwait_signal + 10
    1   libSystem.B.dylib                       0x937b2ccd pthread_cond_wait$UNIX2003 + 73
    2   ...ple.CoreServices.CarbonCore          0x904bede3 TSWaitOnCondition + 126
    3   ...ple.CoreServices.CarbonCore          0x9049dc36 TSWaitOnConditionTimedRelative + 202
    4   ...ple.CoreServices.CarbonCore          0x904bea60 MPWaitOnQueue + 208
    5   AdobeACE                                0x7fb26759 ACEMPThread::Task() + 133
    6   AdobeACE                                0x7fb26285 TaskGlue + 17
    7   ...ple.CoreServices.CarbonCore          0x904bcfbb PrivateMPEntryPoint + 56
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   AdobeAGM                                0x7e466bc4 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                                0x7e466b1d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                                0x7e858b94 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                                0x7e859e1f boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                                0x7e4669fd thread_proxy + 45
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                       0x937b18c6 kevent + 10
    1   com.adobe.Acrobat.framework             0x803d34eb AcroSecurityBailOutImpl + 4425095
    2   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    3   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                       0x937811c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x937b4a33 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x9049dc62 TSWaitOnConditionTimedRelative + 246
    4   ...ple.CoreServices.CarbonCore          0x904bea60 MPWaitOnQueue + 208
    5   ...adobe.AcrobatPlugin.Updater          0x73e41e30 AcroPluginMain + 126384
    6   ...adobe.AcrobatPlugin.Updater          0x73e237f5 AcroPluginMain + 1909
    7   ...ple.CoreServices.CarbonCore          0x904bcfbb PrivateMPEntryPoint + 56
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                       0x937ea1a2 __workq_ops + 10
    1   libSystem.B.dylib                       0x937ea1d2 start_wqthread + 30
    Thread 23:
    0   ???                                     0000000000 0 + 0
    Thread 24:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2d12230f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x2ccfaf9f 0x2cce1000 + 106399
    5   ...lashPlayer-10.4-10.5.plugin          0x2d1223fc unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x2d122440 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x2d122566 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2d12230f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x2ccfaf9f 0x2cce1000 + 106399
    5   ...lashPlayer-10.4-10.5.plugin          0x2d1223fc unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x2d122440 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x2d122566 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                       0x937811c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x937b4a33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x2d1222d7 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x2cec280e 0x2cce1000 + 1972238
    5   ...lashPlayer-10.4-10.5.plugin          0x2d1223fc unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x2d122440 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x2d122566 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                       0x937811c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x937b4a33 pthread_cond_timedwait_relative_np + 47
    3   ...lashPlayer-10.4-10.5.plugin          0x2d1222d7 unregister_ShockwaveFlash + 47447
    4   ...lashPlayer-10.4-10.5.plugin          0x2d0084b5 0x2cce1000 + 3306677
    5   ...lashPlayer-10.4-10.5.plugin          0x2d1223fc unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x2d122440 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x2d122566 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 28:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2d12230f unregister_ShockwaveFlash + 47503
    4   ...lashPlayer-10.4-10.5.plugin          0x2cdd21d3 0x2cce1000 + 987603
    5   ...lashPlayer-10.4-10.5.plugin          0x2d1223fc unregister_ShockwaveFlash + 47740
    6   ...lashPlayer-10.4-10.5.plugin          0x2d122440 unregister_ShockwaveFlash + 47808
    7   ...lashPlayer-10.4-10.5.plugin          0x2d122566 unregister_ShockwaveFlash + 48102
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 29:
    0   libSystem.B.dylib                       0x937811c6 semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31af _pthread_cond_wait + 1244
    2   libSystem.B.dylib                       0x937b4a33 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x95ea3bdf CAGuard::WaitFor(unsigned long long) + 213
    4   com.apple.audio.CoreAudio               0x95ea579a CAGuard::WaitUntil(unsigned long long) + 70
    5   com.apple.audio.CoreAudio               0x95ea3f3f HP_IOThread::WorkLoop() + 759
    6   com.apple.audio.CoreAudio               0x95ea3c43 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x95e94480 CAPThread::Entry(CAPThread*) + 96
    8   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    9   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 30:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2d3ca40f NP_Initialize + 2364111
    4   ...lashPlayer-10.4-10.5.plugin          0x2d32ea3b NP_Initialize + 1726715
    5   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    6   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                       0x937811ae semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x937b31c6 _pthread_cond_wait + 1267
    2   libSystem.B.dylib                       0x937f8449 pthread_cond_wait + 48
    3   ...lashPlayer-10.4-10.5.plugin          0x2d3ca40f NP_Initialize + 2364111
    4   ...lashPlayer-10.4-10.5.plugin          0x2d32ea3b NP_Initialize + 1726715
    5   libSystem.B.dylib                       0x937b2055 _pthread_start + 321
    6   libSystem.B.dylib                       0x937b1f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x000016fe  ebx: 0x2d2ce28b  ecx: 0x00000000  edx: 0x2d774960
      edi: 0x3beaabb8  esi: 0x3beaabb8  ebp: 0xbfffdb88  esp: 0xbfffdb7c
       ss: 0x0000001f  efl: 0x00010293  eip: 0x2d307255   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x0000170e
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x64ffff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x657000 -   0x681fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x692000 -   0x6a1ffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
      0x6c4000 -   0x6cafff  com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2) <a0a4389b5ac52ab84397d2b25c9d3b9c> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1ade000 -  0x1ae0fff +net.culater.SIMBL 0.8.2 (8) /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
    0x1b23000 -  0x1b23ff7 +net.sourceforge.SafariAdBlockLoader 0.4.0 RC3 (0.4.0 RC3) <8e9a66419ce75416dc84883db8bafdda> /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/MacOS/Safari AdBlock Loader
    0x1ca8000 -  0x1cb2ff7 +net.sourceforge.SafariAdBlock 0.4.0 RC3 (0.4.0 RC3) <81c3f805f6e854fd865cf97a20910fe9> /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/PlugIns/Safari AdBlock.bundle/Contents/MacOS/Safari AdBlock
    0x1cbb000 -  0x1d1bfe3 +com.zang.RegexKit 0.6.0 (0.6.0) <71374a4a3b244759e994ab9e135345cb> /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/PlugIns/Safari AdBlock.bundle/Contents/Frameworks/RegexKit.framework/Versions/A/RegexKit
    0x21fac000 - 0x222a5ff3  com.apple.RawCamera.bundle 2.3.0 (505) <1c7cea30ffe2b4de98ced6518df1e54b> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x2278e000 - 0x227a1fff +org.andymatuschak.Sparkle 1.5 Beta (bzr) (1.5) <c66c9ed46816c5c0ab324499619c1873> /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/PlugIns/Safari AdBlock.bundle/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
    0x25fc6000 - 0x25fc6ffd  liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0x265fe000 - 0x26601fff  com.apple.audio.AudioIPCPlugIn 1.0.6 (1.0.6) <51c811377017028f8904ad779e6a1344> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x26607000 - 0x26608ffe  com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn 2.1.10 (2.1.10f2) <f850cabf60ea10caf614d9420d513c67> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0x268e9000 - 0x268eeff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x27acc000 - 0x27acdff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x27c8c000 - 0x27c8ffef  com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x27c94000 - 0x27cf9fde  com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x27d19000 - 0x27d8bfff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x27e06000 - 0x27e5601f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x28100000 - 0x28101fff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x2831f000 - 0x28323ffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x28e6c000 - 0x28e6efff  com.apple.BezelServicesFW 1.4.9215 (1.4.9215) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x29410000 - 0x29413ff2 +com.macromedia.Flash Player.plugin 10.3.183.11 (10.3.183.11) <b16bc6e0fdeae1525129039546e2a402> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x2962c000 - 0x2962dfff +com.adobe.eulaframework ??? (1.0) <9ce05872e1c24afb82a8efdef4b7095f> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/EULA.framework/Versions/A/EULA
    0x2a508000 - 0x2a509fe1  com.apple.textencoding.unicode 2.2 (2.2) <542f2b8930d6bdf16c318ffea541acab> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x2c13c000 - 0x2c15effe +com.adobe.acrobat.pdfviewer 9.5.0 (9.5.0) <2f4683e5fe7841ceb71a80a3c3fa91f7> /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0x2cce1000 - 0x2d72ffe3 +com.macromedia.FlashPlayer-10.4-10.5.plugin 10.3.183.11 (10.3.183.11) <b6003283e6137751b96b7f9a893219b9> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.4-10.5.plugin/Contents/MacOS/Flas hPlayer-10.4-10.5
    0x2d9c4000 - 0x2da39ff7  com.apple.Bluetooth 2.1.10 (2.1.10f2) <7ebe6cc9e1927f7bc87efbb092c56f10> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x34c8a000 - 0x34cabff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeBIBUtils.framework/AdobeBIBUtils
    0x34cf5000 - 0x34d4bfeb +com.adobe.AcroSQLite AcroSQLite (1.0.0) <f4d57897276f4e598313ed14db2e9b70> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AcroSQLite.framework/AcroSQLite
    0x34d73000 - 0x34d85fff  libTraditionalChineseConverter.dylib ??? (???) <6108541a452ff07d2f67db4a488b9d22> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x34da5000 - 0x34db3feb  libSimplifiedChineseConverter.dylib ??? (???) <68f130a585c3f580d166ef7cbbf47e69> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x3bfbc000 - 0x3bfd8fe7  libPDFRIP.A.dylib ??? (???) <13247fe0bc24a36f1e5f46c9d830838e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x43758000 - 0x43883ff7  libmecab.1.0.0.dylib ??? (???) <bef4c5c9918bc623b9137e9bf59b1e5e> /usr/lib/libmecab.1.0.0.dylib
    0x70000000 - 0x700e6ff2  com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x73e1e000 - 0x73e63fd8 +com.adobe.AcrobatPlugin.Updater 9.5.0 (9.5.0) <8779109fff634701857e1c640422ada5> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x798a6000 - 0x79a4ffeb +com.adobe.AcrobatPlugin.EScript 9.5.0 (9.5.0) <7aec647dbba640e3af10c4ca26f0aa10> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x7aa30000 - 0x7ae70253 +com.adobe.AcrobatPlugin.Comments 9.5.0 (9.5.0) <d30555a41964420f9d2ac8461e314848> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x7d734000 - 0x7d9beff7 +AdobeCoolType ??? (???) <c3a3ba1b87664b918913cd033837bc6d> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x7e3ac000 - 0x7e3c6fff +AdobeBIB ??? (???) <a7e233b8b9c34d04a4b3b8b76f2b394f> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x7e45f000 - 0x7e975fef +AdobeAGM ??? (???) <b376712625164c649f0312e5328c2cd4> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x7fb24000 - 0x7fc31fe7 +AdobeACE ??? (???) <3e179f32c0b44f67b18df17c837785de> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x7fdc0000 - 0x80caefc8 +com.adobe.Acrobat.framework 9.5.0 (9.5.0) <c710da3f898e4c9ab4d06d4b33677a1a> /Applications/Adobe Reader 9/Adobe Reader.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90003ff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90004000 - 0x9006affb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9006b000 - 0x900c8ffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90118000 - 0x901a5ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90215000 - 0x902b9ff7  com.apple.QuickTimeImporters.component 7.7 (1680.28) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x902ba000 - 0x90381ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90382000 - 0x9046aff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9046b000 - 0x90473fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90474000 - 0x9074eff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9074f000 - 0x90751ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90752000 - 0x90754ff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x907c9000 - 0x90809fef  com.apple.CoreMedia 0.484.2 (484.2) <a3f49c4ac23e1e4ff60061ef279e367c> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9080a000 - 0x9089dff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9089e000 - 0x909bbff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x909bc000 - 0x909bcffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x909bd000 - 0x90a0eff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x90a0f000 - 0x90a38fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x90a39000 - 0x90a40fff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90a41000 - 0x90ad4fff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90aff000 - 0x90b23feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x90b76000 - 0x90b79fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90b7a000 - 0x90cc4feb  com.apple.QTKit 7.7 (1680.28) <c03868cba11c22743a5d68e1b0184399> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90cc5000 - 0x90d21ff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90d22000 - 0x90d29fe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x90f93000 - 0x90f93ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90f94000 - 0x90fcbfff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90fcc000 - 0x91d3afe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91d3b000 - 0x91e6efe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91e6f000 - 0x91e76ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91eb7000 - 0x91f41ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91f42000 - 0x91f4dfe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91f4e000 - 0x91fd5ff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x91fd6000 - 0x92165fe7  com.apple.CoreAUC 3.08.0 (3.08.0) <ce8da72493f7ad2bcb13130e6d0eca54> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92166000 - 0x921b5fff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x921b6000 - 0x921cefff  com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x921cf000 - 0x9220dfff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x92222000 - 0x92a20fef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92a21000 - 0x92a26fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92a27000 - 0x92a44ff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92a45000 - 0x92a45fff  com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92a46000 - 0x92a8ffef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92a90000 - 0x92ab4fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x92ab5000 - 0x92abbfff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92abc000 - 0x92b6dfff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92b6e000 - 0x92d3ffef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92d40000 - 0x92d4cfff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x92d8a000 - 0x92e09ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x92eed000 - 0x9358dfff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9358e000 - 0x935acfff  libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x935ad000 - 0x935d5ff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x935d6000 - 0x93648fff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x93649000 - 0x9368bfef  com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9368c000 - 0x936befff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x936bf000 - 0x93771ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x93772000 - 0x9377ffe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93780000 - 0x938e7ff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x938e8000 - 0x93affff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93b00000 - 0x93b2bfe7  libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x93b2c000 - 0x93b38ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93b39000 - 0x93b4ffff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x93b50000 - 0x93b6fffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93bde000 - 0x93bf9ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93bfa000 - 0x93c09fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x93c0a000 - 0x93c13fff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93c14000 - 0x93d08ff4  libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib
    0x93d09000 - 0x93d27ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93d28000 - 0x93d2afff  com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93d2b000 - 0x93d2bffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x93d2c000 - 0x93e64fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93fc9000 - 0x94014ff7  com.apple.CoreMediaIOServices 140.0 (1492) <3fd3879b31be7659c1008e8991e9f69b> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94015000 - 0x940d0fe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x940d1000 - 0x940d1ffe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x940d2000 - 0x94108fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x94109000 - 0x942c5ff3  com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x942c6000 - 0x942cbfff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x942cc000 - 0x94306fe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94307000 - 0x94583fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x94584000 - 0x94584ffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94585000 - 0x9458cffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9458d000 - 0x94591fff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x945c5000 - 0x945c9fff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x945ca000 - 0x945daffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x945e7000 - 0x94626fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9462c000 - 0x9477eff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9477f000 - 0x947b0ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x947b1000 - 0x947f2fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x947f3000 - 0x947f3ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x947f4000 - 0x9482effe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9482f000 - 0x948fafef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x948fb000 - 0x94978fef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x94979000 - 0x94a20fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94a21000 - 0x94a50fe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94a51000 - 0x94b3ffef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x94b40000 - 0x94efcff4  com.apple.VideoToolbox 0.484.2 (484.2) <f8e0dbf848f7441bc31428305a2f65bf> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x94f02000 - 0x94f02ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94f20000 - 0x9524bff6  com.apple.QuickTime 7.7 (1680.28) <df75ea1435dadaf44ffde0924bc67ec4> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9524c000 - 0x9532dff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x9532e000 - 0x9573efef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9573f000 - 0x95798ff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95799000 - 0x95919fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressB

Maybe you are looking for

  • Why can't I use my email lists (to send to a group) on iPad?

    Tried both Yahoo and Gmail emails.  Have to use my mac to send group emails unless I want to add one email at a time.  Kind of defeats the purpose of creating a list.

  • Ipad background audio from video when multitasking

    Hello. This is a request if people can either feedback On their present experience or try this out themselves first and feedback. I have an ipad 1. When ever i try to get background audio to play from video when multitasking in another app, eg safari

  • Slide size different

    I am working with a slide 800x600 in Captivate 6.0.1.240 on a Windows 7 machine. The working slide is the layout I want.  But the filmstrip shows the slide size that is displayed and it crops off the working slide evenly on all sides. How do I change

  • Subroutine called from a Dynamic Action.

    Calling a subroutine in a program via a dynamic action, works in foreground, but not in background? Any ideas why?

  • How to stop BPEL engine from performing recovery of messages

    Hi all, I have a strange,interesting and complex problem in my BPEL 10.1.3.3 instance. For some reasons my dehydration store became out of sync. That means my cube_instance and cube_scope tables have no data but other tables have data. This was happe