One Parameter, multiple Conditions - Old version of Disco?

Hi,
I have a report where I want to base a number of conditions on a single parameter. The version of Disco I am using doesn't seem to allow me to do this. There is no 'select parameter' option.
Disco Desktop version is: 4.1.47.09.00 - old!!!
Seems like a very simple bit of functionality. Is this possible? If so how do I go about it.
Cheers,
Jon.

Hi,
Try to create the parameter without basing it on an item (chose the <None>).
I think that you don't have the option since you based your parameter on a specific item so that it cannot relate to other items in the conditions.

Similar Messages

  • One parameter - multiple data types?

    I posted a question similar to this in my attempts to use a lexical parameter to make my ORDER BY clause dynamic, but here's a more basic version of my question.
    Is there a way to order by a column from the SELECT list, and make that column capable of having more than one different data type?
    I'm trying to make my ORDER BY dynamic, but the data element the user chooses to order by may be a character, a number, or a date; however, I'm trying to use a parameter to do this, and Reports requires that a paremeter be designated as only one data type.
    Anyone ever found a way to make their ORDER BY dynamic enough to accommodate for the possibility of ordering by just one column that may not always have a value of the same data type?

    I think i have a solution for you at last.
    Do...
    Delare 2 user parameters.
    MYPARAMETER1;
    MYPARAMETER2;
    In myparameter1. add values of your order by clause.
    like.
    COMMENT_DATE ASC
    COMMENT_DATE DESC
    AMOUNT ASC
    AMOUNT DESC
    etc
    Let your myparameter2 empty & also do not diplay that on your parameter form.
    Now open After Parameter Form Trigger under Report Triggers.
    Code it as.
    :MYPARAMETER2 := ' ORDER BY ' || ' ' || :MYPARAMETER1 ;
    RETURN TRUE;
    Then in your query in the end type
    &myparameter2;
    Hope this will work for u brice...
    Capri...

  • Multiple where conditions in one parameter

    Hi,
    Is it possible to have more than one where condition in one parameter?
    For example, my WHERE_CLAUSE parameter holds the value "where id='12345' and name='john smith'"
    when i run the report, I get a [052008_033528064][][EXCEPTION] java.lang.NullPointerException at oracle.apps.xdo.dataengine.DataTemplateParser.getObjectVlaue(Unknown
    Source) Thus the sql statement did not execute.
    But if I change the WHERE_CLAUSE to "where id='12345'" or "where name='john smith'" it works fine.
    My observation is that if there are two where conditions, BI publisher wont allow it. Am I correct?
    But the report has to be open to the possibility of having more than one where clause condition. Is there a work around for this?
    Thanks,
    Shanak

    nope your mistaken. bip will handle multiple joins.
    1. make sure the where_clause parameter is defined in your package.
    2. make sure use & syntax
    3. make sure your sql is not malformed. This is probably the issue.
    4. also, read my article on bind variables. the practice of coding the actual value in a where clause should be avoided at all costs. Causes the query execution plan to be reparsed each time that particular query is executed.
    http://bipublisher.blogspot.com/2007/10/bi-publisher-what-lexical-understanding.html
    Ike Wiggins
    http://bipublisher.blogspot.com/

  • Multiple choose for one parameter

    Hi, does Oracle Report support the multiple choose for one parameter? i used a IN statement inside my WHERE conditions as following
    Select ....
    where ....
    content.style IN (:p_style)
    (content.style is a column in table "content", and "p_style" is a bind variable)
    i want user can have multiple choises on p_style value. but in the parameter form i only can make one choise. Does any one know how to do the multi choise from parameter form? if you do, please help me. Thank you very much.
    Li

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by whl:
    Hi, does Oracle Report support the multiple choose for one parameter? i used a IN statement inside my WHERE conditions as following
    Select ....
    where ....
    content.style IN (:p_style)
    (content.style is a column in table "content", and "p_style" is a bind variable)
    i want user can have multiple choises on p_style value. but in the parameter form i only can make one choise. Does any one know how to do the multi choise from parameter form? if you do, please help me. Thank you very much.
    Li<HR></BLOCKQUOTE>
    you can do that by flowing the stap
    at first you will write a select statement
    select ...
    From ...
    where Style (colomn name) = &style1
    then you create a user parameter soupose wich name is P_style and which valus is x, y, and z you should enter another value soupose that name is 'All' (All means x + y + Z)
    then you write in after parameter form trigger...
    IF :P_style = 'All' then
    :style1 := null;
    Else :style1 := 'and style (style means your column name) = :P_style;
    end if;
    null

  • I recently brought a new HP laptop and I downloaded the newly updated iTunes on it; however I have an old Aver laptop with iTunes version 10.7 on it or the one before iTunes 11 came out. How can I transfer my movies from the old version to the new one?

    I recently brought a new HP laptop and downloaded iTunes 11 on it. My old laptop which is a Acer has iTunes version 10.7, I believe. I wanted to know, How can I transfer 18 movies from the old iTunes onto my new Itunes? It only shows the most recent two movies when I look at the purchases in my account. I had a lot of moves downloaded last year from the old version and would like some assistance on how to get all those movies into my iTunes 11 library. Thank you.

    you should starting with copying the iTunes folder from your old laptop to the new one.
    the iTunes folder is in your user profile Music folder.
    it should go to the same location on the new laptop.
    Provided that you have your media, music and movies in the default location, and you sign in to your apple ID and authorize your new computer (all in iTunes)
    you should have all intact.
    Post if any problems.

  • One parameter for multiple Crystal reports in Publication

    Does anyone know if it is possible to enter one identical parameter for multiple Crystal reports in publication when scheduling? BOE 3.1 SP3 Windows, Java.
    To elaborate I am creating publication with multiple reports, each report has one parameter and this parameter is identical in every report in publication. So instead of entering this parameter many times I would like to enter once. 
    If yes point me in the right direction to get the how to or post the steps.

    Daniel,
    Thank you so much for your answer. It was very helpful. In the end, it didn't work but it helped me figure out what was happening. I use a different form for the reports and I had it coded in the form which report to use. I created a second form for the second crystal and then I used an if statement to choose the form and it worked like a charm.
    Thanks so much again!

  • Passing one parameter to multiple views

    Is this possible?  I would like to pass one parameter, a date field, to multiple views.  I cannot use it in the record selection, because my views do a mathematical computation which returns a single value, but I only want to select the data for a single day. 
    The problem is that there are several views and I do not want to have to enter the date parameter a dozen times.

    Try to use add command and write the query like this
    select * from view where datefield={?date}
    also create another add command for the other view
    select * from view2 where datefield2={?date}
    for all the queries create the same parameter with the name {?date}
    Regards,
    Raghavendra

  • Windows Phone 8.1 app keep showing the old version update after the latest one

    Recently I just update my app named "TimeKit" (v1.2.2.0), then I start notices that some of the phone will get the old version(v1.2.1.8) update detail on the store, even I try to check from the windows phone website, but it will switch between
    the latest version(v1.2.2.0) and old version sometimes, but some of the phone will be fine after a few times(not sure). My own phone always get this problem, not only my own app, also for others app, one of the app was the "Lumia Camera", so
    I decided to reset my phone, after reset all the problems are gone, but the same problem appeared to my app again. Also I update another update for my app(v1.2.2.3), still the same. Is it a problem for the store in US region currently, because I try for
    others country and works fine.

    I can take a couple of days for the update to replicate across all the servers.  

  • I have an old version of itunes (not sure which one)and if I download the new version 11.1.4, will I be able to keep my original library with playlists from old version of itunes?

    I have an old verison of itunes(not sure which one) and if I download the new version 11.1.4, will I retain my original library and playlists from the old version or loose it?

    you can just make  a backup and download the new verion

  • Hi. My iMac hard drive is running Mavericks.  I have an old version of Quark Xpress (3.32) which won't run in Mavericks.  Can I partition my hard drive and run an older system on one partition, so I can access my Quark?  Is that possible?

    Hi. My iMac hard drive is running Mavericks.  I have an old version of Quark Xpress (3.32) which won't run in Mavericks.  Can I partition my hard drive and run an older system on one partition, so I can access my Quark?  Is that possible?

    Hi ancelau,
    QuarkXPress 3 is a Classic Mac OS application, so you need a version of OS X that still supports Classic. I believe 10.4 was the last one.
    So if you have an iMac that boots with 10.4, then yes that is possible. I doubt though that newer Macs boot with OS X 10.4.
    So why don't you upgrade QuarkXPress 3 to a newer version? I am not just asking that because I want you to spend money with us.
    Typically using software that was released almost 20 years ago is just feasible when you keep an environment that was current at the time of release or a few years after, so an older Mac with a operating system present at that time. 20 years in IT is a lot.
    So my opinion is that on a new Mac with a brand new operating system you need to use something a bit more current.
    How about QuarkXPress 9 (released 3 years ago) or QuarkXPress 10? You are better off with v9, as QuarkXPress 10 only opens v7 and higher (whereas QuarkXPress 9 opens v3.1 and higher).
    Or - I am even happy to make an exception - upgrade to 9 and we give you 10 for free? Let me know please.
    Thanks
    Matthias

  • I have just bought a Macbook Pro and sync data from my old version onto the new one...However when I tried opening the mail client...Message window does not appear.

    I have just bought a Macbook Pro and sync data from my old version onto the new one...However when I tried opening the mail client...Message window does not appear. The old Macbook Pro I was using used Snow Leopard. Now with the new it is a Lion. Toruble now when I click onto new message window I have the spinning icon which show it is trying to load. However it fails and Im left with having to Force Quit it. How can I resolve this problem

    Tunes: How to move [or copy] your music to a new computer [or another drive] - http://support.apple.com/kb/HT4527
    Quick answer if you use iTunes default preferences settings:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Start iTunes with the option (shift on Windows) key held down and guide it to the new location of the library.
    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.

  • I install at the new update cc2014 but for some reason in my computer appear double app the old one and the new  but the new dose not gave the setup that I have in my old version! What happen ?

    I install at the new update cc2014 but for some reason in my computer appear double app the old one and the new  but the new dose not gave the setup that I have in my old version! What happen ?

    Seriously, I doubt that your answer helped Erik.  He has two issues.
    He installed the new program and has a double icon folders with software. One for the new &  one for the old.  (I have this same problem.)
    He must have attempted to open one of the products and no longer see his personal settings transferred over.  (The install will ask to have those settings migrating, but you have to accept it. eh, I could be wrong; but, that what i remembered doing.
    I concur with his first. 
    However, i can not get any of my products to work.  Ie. have to constantly click on icon to open; once open i get a unexpected error and have to close. I'm on a mac pro w/ latest os system.
    In addition, I have tried to uninstall the older by clicking on the application's manager icon.; Unfortunately, it shuts down at each attempt.  Therefore, I am unable to un-install the old product or the new. 
    Possibly, we were hoping that the new product would be simply updated if an old recent was already installed. 
    Instead, the installation simply created a new icon and the new folder with product.

  • Whats the best way to transfer all my music and i tunes library from an old xp pc to new one when the old one wont take the latest version of itunes

    whats the best way to transfer all my music and i tunes library from an old xp pc to a new one when the old one wont take the latest version of iTunes.

    iTunes- How to move the library to an EHD

  • My itunes on Mac is down. want to install an old version one.  Where can I find one?

    my itunes on Mac is down. want to install an old version one.  Where can I find one?

    Process:         iTunes [2294]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         10.5.3 (10.5.3)
    Build Info:      iTunes-10530301~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [469]
    Date/Time:       2012-02-25 23:20:15.966 +0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          359614 sec
    Crashes Since Last Report:           9
    Per-App Interval Since Last Report:  97 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID:                      D773B1B8-774E-42E7-A35C-601DF7CA9F5F
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000016b1d000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.iTunes                        0x003b52a9 0x1000 + 3883689
    1   com.apple.iTunes                        0x000b4544 0x1000 + 734532
    2   com.apple.iTunes                        0x000b43a8 0x1000 + 734120
    3   com.apple.iTunes                        0x000b4264 0x1000 + 733796
    4   com.apple.iTunes                        0x000b4021 0x1000 + 733217
    5   com.apple.iTunes                        0x0004648d 0x1000 + 283789
    6   com.apple.iTunes                        0x00044c1e 0x1000 + 277534
    7   com.apple.iTunes                        0x00009dac 0x1000 + 36268
    8   com.apple.iTunes                        0x00009975 0x1000 + 35189
    9   com.apple.iTunes                        0x000098e5 0x1000 + 35045
    10  com.apple.Foundation                    0x903ccdb3 _nsnote_callback + 176
    11  com.apple.CoreFoundation                0x9711a763 __CFXNotificationPost + 947
    12  com.apple.CoreFoundation                0x9711a16a _CFXNotificationPostNotification + 186
    13  com.apple.Foundation                    0x903c1c50 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    14  com.apple.Foundation                    0x903cf05d -[NSNotificationCenter postNotificationName:object:] + 56
    15  com.apple.AppKit                        0x939db511 -[NSApplication finishLaunching] + 493
    16  com.apple.AppKit                        0x939daf0d -[NSApplication run] + 79
    17  com.apple.iTunes                        0x00004b5e 0x1000 + 15198
    18  com.apple.iTunes                        0x000049c9 0x1000 + 14793
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x91f3e382 kevent + 10
    1   libSystem.B.dylib                       0x91f3ea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x91f3df59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x91f3dcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x91f3d781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x91f3d5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x91f3d412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x91f3d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x91f3d5c6 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib                       0x91f17afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91f18267 mach_msg + 68
    2   com.apple.CoreFoundation                0x970fc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x970fb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x97101304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0000b2fe 0x1000 + 41726
    6   com.apple.iTunes                        0x008489f9 0x1000 + 8681977
    7   libSystem.B.dylib                       0x91f45259 _pthread_start + 345
    8   libSystem.B.dylib                       0x91f450de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x91f45aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x91f4575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x91f473f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iTunes                        0x0000b4d9 0x1000 + 42201
    4   com.apple.iTunes                        0x00021a49 0x1000 + 133705
    5   com.apple.iTunes                        0x008489f9 0x1000 + 8681977
    6   libSystem.B.dylib                       0x91f45259 _pthread_start + 345
    7   libSystem.B.dylib                       0x91f450de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x91f17afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x91f18267 mach_msg + 68
    2   com.apple.CoreFoundation                0x970fc2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x970fb3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x97101304 CFRunLoopRun + 84
    5   com.apple.iTunes                        0x0003fbfc 0x1000 + 257020
    6   com.apple.iTunes                        0x008489f9 0x1000 + 8681977
    7   libSystem.B.dylib                       0x91f45259 _pthread_start + 345
    8   libSystem.B.dylib                       0x91f450de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x91f3d412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x91f3d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x91f3d5c6 start_wqthread + 30
    Thread 7:
    0   ...nsdk_sdkmanager.1.9.5.dylib          0x01656930 gnsdk_sdkmanager_initialize + 0
    1   com.apple.iTunes                        0x000ba7ec 0x1000 + 759788
    2   com.apple.iTunes                        0x000b42b2 0x1000 + 733874
    3   com.apple.iTunes                        0x008489f9 0x1000 + 8681977
    4   libSystem.B.dylib                       0x91f45259 _pthread_start + 345
    5   libSystem.B.dylib                       0x91f450de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x0002fffc  ebx: 0x00004000  ecx: 0x1915f4e0  edx: 0x00000000
      edi: 0xbfffd544  esi: 0x16aed000  ebp: 0xbfffd4f8  esp: 0xbfffd450
       ss: 0x0000001f  efl: 0x00010213  eip: 0x003b52a9   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x16b1d000
    Binary Images:
        0x1000 -   0xfb6fe3  com.apple.iTunes 10.5.3 (10.5.3) <482035DE-840C-702A-598E-D43A8868D4D8> /Applications/iTunes.app/Contents/MacOS/iTunes
    0x11ff000 -  0x127afef  com.apple.iTunes.iPodUpdater 10.4 (10.4) <27D5D8A6-3AF1-0B70-D292-D5423E99CA9F> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x12bf000 -  0x12e4ff7  com.apple.avfoundationcf 2.0 (60.1) <2D4DFC71-1195-4549-658B-7295F37AAEC3> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
    0x130c000 -  0x1311ff7  com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x1317000 -  0x15f3fe7 +libgnsdk_dsp.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <E468D2B0-295A-D520-C02A-5383413B5DDE> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
    0x1615000 -  0x1648fe7 +libgnsdk_musicid.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <F6487E48-3B93-7C89-7734-85600749661D> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
    0x1655000 -  0x171ffe7 +libgnsdk_sdkmanager.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <70001144-C144-B6D7-3CA9-836ACD97CE9F> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
    0x1736000 -  0x1778fe7 +libgnsdk_submit.1.9.5.dylib 1.9.5 (compatibility 1.9.5) <AB1597CE-FBAC-6C05-330E-879EDD036C94> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
    0x177d000 -  0x17c2ff7  com.apple.CoreMedia.AVCFSupport 1.0 (705.24.4) <FAEC8CE1-BF17-B566-38E3-98E97C2403CE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/CoreMedia.fr amework/Versions/A/CoreMedia
    0x17e1000 -  0x1b4cff3  com.apple.MediaToolbox.AVCFSupport 1.0 (705.24.4) <B801EFCB-07D9-2A94-9E7A-530AD7E892AA> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/MediaToolbox .framework/Versions/A/MediaToolbox
    0x1bb1000 -  0x1ef1feb  com.apple.VideoToolbox.AVCFSupport 1.0 (705.24.4) <A4DBF709-3753-2F20-B20D-1D5DB80F3997> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Support/VideoToolbox .framework/Versions/A/VideoToolbox
    0x26f1000 -  0x26f2ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x2723000 -  0x2727ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x272c000 -  0x2732ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x275a000 -  0x27b2fff +com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x27d6000 -  0x27d9ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1455b000 - 0x14862ff7  com.apple.CoreFP 2.0.37 (2.0.37) <4C3E5DC4-5ABC-AF49-C59E-67D5CF6D79CF> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x149bf000 - 0x156fffe7  com.apple.CoreFP1 1.13.35 (1.13.35) <CDB58308-9549-CABD-19E6-8AEBEA32A98B> /System/Library/PrivateFrameworks/CoreFP1.framework/CoreFP1
    0x16600000 - 0x16626fff  libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x16661000 - 0x16666ff7  com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x16900000 - 0x1698aff7  com.apple.mobiledevice 503.2 (503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x169d2000 - 0x16a87fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x16d48000 - 0x16f2efef  com.apple.audio.codecs.Components 2.0.4 (2.0.4) <5D32DF8D-C577-EB6B-72FA-1ABDF1CED762> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x70000000 - 0x700cbfff  com.apple.audio.units.Components 1.6.5 (1.6.5) <412DBD1B-E9B5-E67C-99E4-820BF38239AC> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90051000 - 0x90101fe3  com.apple.QuickTimeImporters.component 7.6.6 (1789) <80F62753-9E0B-F479-FEAC-2433B67EC2CE> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90144000 - 0x90224fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x902f7000 - 0x902f7ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x902f8000 - 0x9033eff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9033f000 - 0x903b6ff3  com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x903b7000 - 0x90628fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90629000 - 0x90632ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90633000 - 0x90636fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90860000 - 0x90962fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x90963000 - 0x9099effb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9099f000 - 0x909a0ff7  libScreenReader.dylib ??? (???) <E559E38F-FB36-C1C4-B915-D3A4E4354921> /usr/lib/libScreenReader.dylib
    0x909a1000 - 0x90adefe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90adf000 - 0x912ce557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x912dc000 - 0x912e6ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x912e7000 - 0x915e1fef  com.apple.QuickTime 7.6.6 (1789) <38255AA2-8087-5AE0-CA4B-1DDE611540B1> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9163c000 - 0x9165bff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9165c000 - 0x91cd7ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91cd8000 - 0x91e06fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91e76000 - 0x91eb0fe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x91ef2000 - 0x91f16ff7  libJPEG.dylib ??? (???) <7EBC924F-B2EE-68B0-4EA0-F99EF54F0306> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91f17000 - 0x920beff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x920f8000 - 0x9213fffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x92140000 - 0x92150ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x922b4000 - 0x922b4ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x922b5000 - 0x92308ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92389000 - 0x92389ff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9238a000 - 0x92845ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92846000 - 0x92a90fef  com.apple.JavaScriptCore 6534.52 (6534.52.7) <AF71FCC7-B8BF-2DA6-C538-6B7C47F95B2D> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92a91000 - 0x92ab1fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x92ab2000 - 0x92dd6fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92e10000 - 0x93130ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93131000 - 0x9323dfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9323e000 - 0x93283ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x93284000 - 0x93298fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x93299000 - 0x9329ffff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932a0000 - 0x932a7ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x932c1000 - 0x9335cfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9335d000 - 0x933d7fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x933d8000 - 0x933e5fe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <CC90193E-BDF7-2F0F-6C68-D9567EDDA4B3> /usr/lib/libbz2.1.0.dylib
    0x933e6000 - 0x93429ff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9342a000 - 0x9342aff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9346c000 - 0x9347cff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9347d000 - 0x934ebff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x934ec000 - 0x934f3ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9353a000 - 0x935f6fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93607000 - 0x9363aff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9363b000 - 0x93673ff7  com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93674000 - 0x9369bff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9369c000 - 0x936b8fe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x936b9000 - 0x936cbff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x936cc000 - 0x9370fff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93710000 - 0x93790feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x93791000 - 0x938d4fef  com.apple.QTKit 7.7 (1789) <4D3AA05F-D4D3-0D43-99D7-F26E4640BEE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x939d1000 - 0x942b4ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94606000 - 0x946b3fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x946b4000 - 0x946b7ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x946b8000 - 0x94aedff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94aee000 - 0x94af2ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x94b3b000 - 0x94d66ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x94dea000 - 0x94ea2feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94ea3000 - 0x94f1cff7  com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94f1d000 - 0x94f4eff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94f4f000 - 0x94f9fff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94fa0000 - 0x94fe9fe7  libTIFF.dylib ??? (???) <4A3EF156-D4FE-95E2-FA05-7BD76FF27CEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95003000 - 0x9503cfe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x95048000 - 0x9504cff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9504d000 - 0x9504dff7  com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9504e000 - 0x950c9fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x950ca000 - 0x9551bfef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95555000 - 0x95556ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x95557000 - 0x9557dffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x955cf000 - 0x955e7ff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x955e8000 - 0x95603ff7  libPng.dylib ??? (???) <05445692-8AF7-CAB6-EBF5-1F7B3A906CCB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95604000 - 0x95605ff7  com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9560e000 - 0x95641fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x95642000 - 0x95649ff7  com.apple.aps.framework 1.2 (1.2) <16A7DB74-F951-D8DB-35D0-5E5673529AB0> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x95656000 - 0x95656ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95657000 - 0x95691ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
    0x95692000 - 0x95693ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9569e000 - 0x956abff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x956ac000 - 0x9588efff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x959d5000 - 0x959ddff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x959de000 - 0x95a70fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95a71000 - 0x95b3cfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95b3d000 - 0x95c1afe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95e1c000 - 0x95e76fe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x95e77000 - 0x95e88ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95e89000 - 0x95ec6ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95ecf000 - 0x95ef7ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x95ef8000 - 0x95fd2fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x95fd3000 - 0x9608cfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x9608d000 - 0x960eaff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96268000 - 0x96268ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x962bb000 - 0x9631cfe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9631d000 - 0x96373ff7  com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96374000 - 0x96374ff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9637a000 - 0x9647bfe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x9647c000 - 0x96892ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96893000 - 0x96896ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x96897000 - 0x9692ffe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96930000 - 0x96af2feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <051752C3-8C25-CF4A-9BFB-C7B6D20E58E8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96af3000 - 0x96b57ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96b58000 - 0x96b5dff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x96b5e000 - 0x96b72ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96b86000 - 0x96b90fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96b91000 - 0x96d98feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96d99000 - 0x96e36fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96e37000 - 0x96e42ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96e43000 - 0x96e45ff7  libRadiance.dylib ??? (???) <41E5C5F4-A4C6-0416-08D0-422C88088558> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96e46000 - 0x96ef2fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96ef3000 - 0x96fa1ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96ff7000 - 0x97039ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9703a000 - 0x97087feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9708f000 - 0x97093ff7  libGIF.dylib ??? (???) <3B4E6D0B-89EB-251F-3693-5187254D5BE2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x97094000 - 0x9709fff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x970bf000 - 0x9723afe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9723b000 - 0x9725dfef  com.apple.DirectoryService.Framework 3.6 (621.11) <CA979EAC-9537-43B6-CD69-C144ACB75E09> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x97261000 - 0x975ccff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x975d3000 - 0x975e1fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9768c000 - 0x9768fff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x97690000 - 0x9769bff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9769c000 - 0x9770bff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9770c000 - 0x97764fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97765000 - 0x979cbff7  com.apple.security 6.1.2 (55002) <A476227B-409D-A457-7D4D-A631A0B4AFDB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x979dd000 - 0x97a47fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x97a48000 - 0x97a85ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97ae7000 - 0x97be9fef  com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x97bea000 - 0x97becff7  com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97ce9000 - 0x97e0ffe7  com.apple.WebKit 6534.52 (6534.52.7) <A2FC4307-01BE-DC9E-82FE-68B13F3839A9> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x97e10000 - 0x97e4eff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x97e4f000 - 0x97e8fff3  com.apple.securityinterface 4.0.1 (40418) <26D84A83-F5B9-93CF-71BB-0712698181EE> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x97e90000 - 0x97f38ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97f39000 - 0x97f39ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97f3a000 - 0x97f46ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x97f47000 - 0x980c9fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x980ca000 - 0x980ebfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x981f3000 - 0x98237fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x988cd000 - 0x988d3fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x988d4000 - 0x98918ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98919000 - 0x9899bffb  SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x989b0000 - 0x99903ffb  com.apple.QuickTimeComponents.component 7.6.6 (1789) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99ae1000 - 0x99c0effb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x99d6a000 - 0x99d77ff7  com.apple.AppleFSCompression 24.4 (1.0) <6D696284-020B-7F5C-226D-B820F0E981D2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x99d78000 - 0x9aae0fe7  com.apple.WebCore 6534.52 (6534.52.11) <28DB69F5-ACE5-2A67-4DC1-39EED479B56B> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9aae1000 - 0x9ab11ff7  com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x9ab12000 - 0x9ab20ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9ab21000 - 0x9ab36fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBook5,1, BootROM MB51.007D.B03, 2 processors, Intel Core 2 Duo, 2.4 GHz, 6 GB, SMC 1.32f8
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHZ2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N
    USB Device: USB to Serial-ATA bridge, 0x04fc  (SUNPLUS TECHNOLOGY CO., LTD.), 0x0c15, 0x24100000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0x26200000 / 2
    USB Device: Apple Optical USB Mouse, 0x05ac  (Apple Inc.), 0x0304, 0x26230000 / 4
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0x26220000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3

  • Where do I get the old version of iTunes 10.7, as the new one itunes 11) is not comfortable? (no cover flow....)

    where do I get the old version of iTunes 10.7, as the new one itunes 11) is not comfortable? (no cover flow....)

    There is a current discussion on this here...
    https://discussions.apple.com/thread/4554140?tstart=0

Maybe you are looking for

  • Does anyone know how to make custom date formats?

    Hi, In lightroom 4 I found a really useful tip where you can alter the file that controls how teh date format part of the import dialogue works - and more importantly it allows you to choose teh folder locations too, so when I import from another cam

  • Calling IP planning sequence several times

    Hi Experts, we are trying to start a IP planning sequence n-times throughout an ABAP report which is located in a  process chain.  In the planning sequence a function from type distribution is located which should distribute line of business nodes to

  • Slow broadband, and keeps dropping out

    I've done all the recommended things: unplugged, reset, downloaded and run McAfee scans. Checked the lines via BT website, they say there are no problems in my area and that my lines are fine. I've checked on multiple computers, Lan and wifi, same pr

  • Where is Java DB in JDK 6?

    The Java DB documentation seems to tell us only that it's now in JDK 6. The JDK 6 documentation seems to tell us only that JDK 6 "co-bundles" Java DB. If the documentation answers my question, the answer is not easy to find. Attempting to follow the

  • SNOW LEOPARD - macbook pro with external monitor

    My external monitor (Formac DVI) is giving me problems since snow leopard - if I start up and close the lid the external monitor goes black with thin grey lines. I have to keep the lid of the laptop open until start up is complete and the desktop app