Index search with preference

My java object has three fields A,B,C. And i'm indexing on these three field's values.
There can be duplicate entries , like Obj1's A equal to Obj2's B.
While searching the index , if more than one object found, preference should be in order A->B->C, only one object shd be returned and others should be filtered out.
As performance is critical criteria in application i don't want to use filter (as there can be 100s of big java objects expected to be returned ,iterating through these can hamper performance.)
Can it be acheived through ChainedExtractor or any other better way?
Thanks in advance.
Prashant

Hi Prashant,
please check the following example:
public class ClassedQueryUtil {
     public static class ClassedQueryParameters implements PortableObject, Serializable {
          private List<ValueExtractor> extractors;
          private Object queryFor;
          public ClassedQueryParameters(List<ValueExtractor> extractors, Object queryFor) {
               super();
               this.extractors = extractors;
               this.queryFor = queryFor;
          public ClassedQueryParameters() {
               super();
          public void readExternal(PofReader reader) throws IOException {
               extractors = (List<ValueExtractor>) reader.readCollection(0, null);
               queryFor = reader.readObject(1);
          public void writeExternal(PofWriter writer) throws IOException {
               writer.writeCollection(0, extractors);
               writer.writeObject(1, queryFor);
          public List<ValueExtractor> getExtractors() {
               return extractors;
          public Object getQueryFor() {
               return queryFor;
     public static class ClassedQueryFilter  extends ClassedQueryParameters implements IndexAwareFilter {
          public ClassedQueryFilter(List<ValueExtractor> extractors, Object queryFor) {
               super(extractors, queryFor);
          public ClassedQueryFilter() {
               super();
          public Filter applyIndex(Map mapIndexes, Set candidateBinaryKeys) {
               List<ValueExtractor> extractors = getExtractors();
               Object queryFor = getQueryFor();
               boolean foundNoMatch = true;
               if (mapIndexes.keySet().containsAll(extractors)) {
                    for (ValueExtractor extractor : extractors) {
                         MapIndex index = (MapIndex) mapIndexes.get(extractor);
                         Collection reverse = (Collection) index.get(queryFor);
                         if (reverse != null && !reverse.isEmpty()) {
                              if (!Collections.disjoint(reverse, candidateBinaryKeys)) {
                                   candidateBinaryKeys.retainAll(reverse);
                                   foundNoMatch = false;
                                   break;
               if (foundNoMatch) {
                    candidateBinaryKeys.clear();
               return null;
          public int calculateEffectiveness(Map mapIndexes, Set candidateBinaryKeys) {
               List<ValueExtractor> extractors = getExtractors();
               if (mapIndexes.keySet().containsAll(extractors)) {
                    return 0;
               throw new UnsupportedOperationException("Must have all indexes defined!!!");
          public boolean evaluateEntry(Entry entry) {
               throw new UnsupportedOperationException("Must have all indexes defined!!!");
          public boolean evaluate(Object value) {
               throw new UnsupportedOperationException("Must have all indexes defined!!!");
     public static class ClassedQueryAggregator extends ClassedQueryParameters
     implements ParallelAwareAggregator {
          public ClassedQueryAggregator() {
               super();
          public ClassedQueryAggregator(List<ValueExtractor> extractors, Object queryFor) {
               super(extractors, queryFor);
          public Collection aggregateResults(Collection results) {
               int resultClassSoFar = Integer.MAX_VALUE;
               ArrayList resultValues = new ArrayList();
               for (Object object : results) {
                    Object[] result = (Object[]) object;
                    int resultClass = (Integer) result[0];
                    if (resultClass == -1 || resultClass > resultClassSoFar) {
                         continue;
                    } else {
                         if (resultClass < resultClassSoFar) {
                              resultValues.clear();
                              resultClassSoFar = resultClass;
                         Object[] resInner = (Object[]) result[1];
                         resultValues.ensureCapacity(resultValues.size()+resInner.length);
                         for (Object resultElement : resInner) {
                              resultValues.add(resultElement);
               if (!resultValues.isEmpty()) {
                    if (resultValues.get(0) instanceof Binary) {
                         for (int i=resultValues.size()-1; i>=0; --i) {
                              resultValues.set(i, ExternalizableHelper.fromBinary((Binary)resultValues.get(i)));
               return resultValues;
          public EntryAggregator getParallelAggregator() {
               return this;
          public Object aggregate(Set entries) {
               if (entries.isEmpty()) {
                    return new Object[] { new Integer(-1) };
               QueryMap.Entry first = (QueryMap.Entry) entries.iterator().next();
               Object[] resInner = new Object[entries.size()];
               List<ValueExtractor> extractors = getExtractors();
               Object queryFor = getQueryFor();
               int resultClass = 0;
               int numExtractors = extractors.size();
               for (resultClass = 0; resultClass < numExtractors; ++resultClass) {
                    if (queryFor.equals(first.extract(extractors.get(resultClass)))) {
                         break;
               boolean isBinaryEntry = first instanceof BinaryEntry;
               int i=0;
               for (Object entry : entries) {
                    if (isBinaryEntry) {
                         resInner[i] = ((BinaryEntry)entry).getBinaryValue();
                    } else {
                         resInner[i] = ((Map.Entry) entry).getValue();
                    ++i;
               return new Object[] { resultClass, resInner };
     public static Collection<Map.Entry> queryForEntries(NamedCache cache, List<ValueExtractor> extractors, Object queryFor) {
          int resultClassSoFar = Integer.MAX_VALUE;
          Set results = cache.entrySet(new ClassedQueryFilter(extractors, queryFor));
          ArrayList resultValues = new ArrayList();
          for (Object object : results) {
               Map.Entry entry = (Entry) object;
               int resultInClass = 0;
               int numExtractors = extractors.size();
               for (resultInClass = 0; resultInClass < numExtractors; ++resultInClass) {
                    Object extracted = InvocableMapHelper.extractFromEntry(extractors.get(resultInClass), entry);
                    if (queryFor.equals(extracted)) {
                         break;
               if (resultInClass > resultClassSoFar) {
                    continue;
               if (resultInClass < resultClassSoFar) {
                    resultValues.clear();
                    resultClassSoFar = resultInClass;
               resultValues.add(entry);
          return resultValues;
     public static Collection aggregateForValues(NamedCache cache, List<ValueExtractor> extractors, Object queryFor) {
          return (Collection) cache.aggregate(new ClassedQueryFilter(extractors, queryFor), new ClassedQueryAggregator(extractors, queryFor));
}To use it, invoke one of the two static methods on the ClassedQueryUtil class.
You must use a partitioned cache (distributed or near cache) for this to operate.
This depends on the Coherence 3.5 prerelease which has BinaryEntry. This allows the parallel aggregator on the storage node to avoid deserializing the entry value just to return it. If you don't have that then all candidate entries will be deserialized and reserialized on the storage node. Not that the candidate entry is an entry which has not been filtered away in the filter, so it is to be returned to the client to the best knowledge of the storage node, in the above example the entries matching on field B when there was not an entry matching on field A in that node.
Best regards,
Robert

Similar Messages

  • I want to report a browser hijack by one of the "themes", Aerofox. When it updated, it attempted to hijack my search engine preferences with "bing". This theme needs to be removed at once!

    Aug 18, 2010
    8:00pm PST
    Aerofox Theme
    The above mentioned theme attempted to hijack my search engine preference by installing "bing" on my system. I was forced to block the attempt, and in doing so caused an exceptional fault failure. I was not able to recover the error #. This forced a "hard" boot of my system in order to get FireFox operational again. I then found that bing had been installed anyway. I take GREAT exception to this, and after uninstalling, cleaning and rebooting I am once again one with FireFox and Google.
    I request an immediate removal of the theme Aerofox from the mozilla offerings until such time as the "bing" search engine hijack can be removed from its' update.
    I consider ANY program that installs itself without foreknowledge or permission to be a hijack. At least post a warning on the theme.

    Hi Developer_46038, 
    if for example all the properties and object are stated as list, i think there is a tool that overcome cross list.
    http://listrollup.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/13a51be5-4007-46e8-bbb2-5e04320dfebd/cross-list-webpart?forum=sharepointcustomizationlegacy
    you can also using dataview webpart to show the cross lists:
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-data-view-HA010094804.aspx
    http://office.microsoft.com/en-us/sharepoint-designer-help/connect-two-data-views-HA010169133.aspx
    3rd party: http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/03/11/relational-database-capabilities-for-sharepoint-lists-cross-list-web-part.aspx
    but i am not quite sure how crystal report will do, if you can make the crystal report as also list, i think its possible, 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8247edf5-dee8-49d8-b7ee-9e49bfd97b9b/crystal-report-in-sharepoint-2010-webpart?forum=sharepointdevelopmentprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Substring search with Oracle context indexes

    Hi,
    i would like to know if it is possibile to do a substring search with one of the obtion offer with the context indexes.
    (ctxcat,ctxrule,context)
    example:
    i would like to search the word 'berub' in a column A in table_example.
    the value in the column a are :
    The betther
    berube
    A.berube
    berub
    Berub
    BERUB
    R berube
    S tartif
    Y Thibeault
    the rows return should be :
    berube
    A.berube
    berub
    Berub
    BERUB
    R berube
    A simple sql could be
    select * from table_example where upper(a) like upper('%berub%' );
    How i can do this same action with the context indexes and a select (catsearch, contains, matches), if it is possible?
    A example will be welcome
    Thanks

    I know how to do explain plan.
    my point is not the query i post, it's just a example.
    I have many query on my production we optimize many times (they past from 3min to 15 sec with optimisation, but we want to have better result). At this point we are looking to implant the context indexes to make them more efficient.
    Do make this sql more efficient we have to deal with like '%xxxxxx%' and the context indexes like to be a option, but we have to be able to do some substring search with context option.
    Is it possible to do it and how?
    This is my question and why i post it here. The query is just a simple example to illsutrate what i want.
    Thanks to anyone who can answer my question.

  • Safari (7.1.3) forgets preferences in Mail 7.3, when "search with Google"

    When in Mail 7.3, "Search With Google" on any selected text causes Safari (7.1.3) Icon to bounce in dock and when selected, it opens with a screen to set up my preferences.  As if it were the first time I used Safari. None of my extensions are installed in the safari preferences. 
      When I open Safari first THEN open Mail, then Safari behaves normally.  I am using a non-standard "home page" but Google is my default search engine.  I am running Mavericks  ) 10.9.5.
    Tho it is easy to work around this issue, over time it has made me curiouser & curiouser.  Any help or ideas would be most welcomed, 
      Thanks...

    Really? Nobody has encountered this?  This is the first time I haven't gotten one response to a query. Booo

  • How do i change the setting so that when i type something in the address bar, it searches with google. it's started using yahoo and i hate yahoo, i'm even considering leaving firefox

    somethings i type something in the address bar, like 'paypal', mozilla used to go straight to that website, which was helpful... then it started searching with google, this i was not too upset about... however now it has started searching with yahoo, this i am upset about, and i would like to change this, however i do not know how?

    1. Use  free  AdwareMedic by clicking “Download ” from here
        http://www.adwaremedic.com/index.php
        Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
        Once done, quit AdwareMedic by clicking AdwareMedic in the menu bar and selecting
        “Quit AdwareMedic”.
    2. Safari > Preferences > Extensions
         Turn those off and relaunch Safari to test .
         Turn those on one by one and test.
    3. Safari > Preferences >  Search > Search Engine :
        Select your preferred   search engine.
    4. Safari > Preferences > General > Homepage:
         Set your Homepage.

  • Google is set as my search engine but whenever I search something in the address bar it searches with Yahoo! How do I get rid of Yahoo! as my search engine when it is not even set to be my search engine in the first place?

    Google is set as my search engine but whenever I search something in the address bar it searches with Yahoo! How do I get rid of Yahoo! as my search engine when it is not even set to be my search engine in the first place?

    1. Use  free  AdwareMedic by clicking “Download ” from here
        http://www.adwaremedic.com/index.php
        Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
        Once done, quit AdwareMedic by clicking AdwareMedic in the menu bar and selecting
        “Quit AdwareMedic”.
    2. Safari > Preferences > Extensions
         Turn those off and relaunch Safari to test .
         Turn those on one by one and test.
    3. Safari > Preferences >  Search > Search Engine :
        Select your preferred   search engine.
    4. Safari > Preferences > General > Homepage:
         Set your Homepage.

  • How to search with regular expression

    I make pdx files so that I can search text quickly. But Acrobat doesn't provide a way to search with regular expression. I'm wondering if there is a way that I don't know to search for regular expression in Acrobat Pro 9?

    First, Acrobat must "mount" the PDX.
    As "Find" does not use the cataloged index, use Shift+Ctrl+F to open the advanced search dialog.
    It may be helpful to first enter Acrobat Preferences and for the Search category tick "Always use advanced search options".
    Back to the Search dialog - use the drop down menu for "Look In" to pick "Select Index" then, if no PDXs show, click the Add button.
    In the Open Index File dialog, browse to the location of the desired PDX and select it.
    OK out and use "Return results containing" to pick a "Match ..." requirement or Boolean.
    To become familiar with query syntax, for Acrobat, it is good to review Acrobat Help.
    http://help.adobe.com/en_US/Acrobat/9.0/Professional/WS58a04a822e3e50102bd615109794195ff-7 c4b.w.html
    Be well...

  • Safari with Preference problems

    When using Safari 5.1.1 I loose my google tool bar and when trying to use my preferences it crashes.  It will not allow be to use time machine to restore, states "Safari" can't be modified or deleted because it's required by Mac OS X.  I was using 5.0 and had no problems but over the weekend I downloaded iCloud and there was a software update.  I did a reinstall with the current version since I could not modifie the current safari that I have but no change.
    I would like to be able to use iCloud which I am sure needs the updated safari.  I have removed 3rd party plug ins, extensions and cache.  I did do a disk permission repair which resolved the opening of safari. 
    A error report was posted and used the suggested from that but still have issues with preference and no google search bar.
    Any one with any other suggestions????

    Process:         Safari [367]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1.1 (7534.51.22)
    Build Info:      WebBrowser-7534051022000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2011-10-19 17:21:47.859 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          15322 sec
    Crashes Since Last Report:           22
    Per-App Interval Since Last Report:  7399 sec
    Per-App Crashes Since Last Report:   22
    Anonymous UUID:                      91116336-98A6-4DA6-8B1A-7DB6FEECFD65
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010
    VM Regions Near 0x10:
    -->
        __TEXT                 000000010a3c6000-000000010a3c7000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Enabled Extensions:
    com.unsubscribe.safariext-FXG3Y344M3 (2.6 - 2.6) Unsubscribe.com
    objc[367]: garbage collection is OFF
    Performing @selector(showPreferences:) from sender NSMenuItem 0x7f89cbd17a30
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.Safari.framework              0x00007fff8795afbf std::pair<***::HashTableIterator<std::pair<Safari::SString, void const*>, std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairFirstExtractor<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*>, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::HashTraits<std::pair<Safari::SString, void const*> > >, bool> ***::HashTable<std::pair<Safari::SString, void const*>, std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairFirstExtractor<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*>, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::HashTraits<std::pair<Safari::SString, void const*> > >::add<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;>, ***::HashMapTranslator<std::pair<std::pair<Safari::SString, void const*>, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >, ***::PairHashTraits<***::HashTraits<std::pair<Safari::SString, void const*> >, ***::HashTraits<Safari::sel_fun1_t<void, Safari::SNotification const&amp;> > >, ***::PairHash<Safari::SString, void const*> > >(std::pair<Safari::SString, void const*> const&amp;, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> const&amp;) + 21
    1   com.apple.Safari.framework              0x00007fff8795ab66 Safari::SNotifierBase<objc_object, Safari::sel_fun1_t<void, Safari::SNotification const&amp;> >::startObserving(Safari::sel_fun1_t<void, Safari::SNotification const&amp;>, Safari::SString const&amp;, void const*) + 88
    2   com.apple.Safari.framework              0x00007fff87b6d649 -[SecurityPreferences moduleWasInstalled] + 126
    3   com.apple.AppKit                        0x00007fff8691c144 -[NSPreferences _selectModuleOwner:] + 3019
    4   com.apple.AppKit                        0x00007fff8691c36d -[NSPreferences _setupPreferencesPanelForOwner:] + 459
    5   com.apple.AppKit                        0x00007fff8691a961 -[NSPreferences showPreferencesPanelForOwner:] + 27
    6   com.apple.CoreFoundation                0x00007fff81503a1d -[NSObject performSelector:withObject:] + 61
    7   com.apple.AppKit                        0x00007fff8651e710 -[NSApplication sendAction:to:from:] + 139
    8   com.apple.Safari.framework              0x00007fff8799c475 -[BrowserApplication sendAction:to:from:] + 80
    9   com.apple.AppKit                        0x00007fff8660bbd7 -[NSMenuItem _corePerformAction] + 399
    10  com.apple.AppKit                        0x00007fff8660b90e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    11  com.apple.AppKit                        0x00007fff868a8194 -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    12  com.apple.AppKit                        0x00007fff86739ce5 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    13  com.apple.AppKit                        0x00007fff8658551f NSSLMMenuEventHandler + 339
    14  com.apple.HIToolbox                     0x00007fff8c65a308 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    15  com.apple.HIToolbox                     0x00007fff8c659914 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    16  com.apple.HIToolbox                     0x00007fff8c6706c7 SendEventToEventTarget + 76
    17  com.apple.HIToolbox                     0x00007fff8c6b69f5 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    18  com.apple.HIToolbox                     0x00007fff8c79d645 SendMenuCommandWithContextAndModifiers + 56
    19  com.apple.HIToolbox                     0x00007fff8c7e3ef9 SendMenuItemSelectedEvent + 253
    20  com.apple.HIToolbox                     0x00007fff8c6afb07 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    21  com.apple.HIToolbox                     0x00007fff8c6a7245 _ZL14MenuSelectCoreP8MenuData5PointdjPP13OpaqueMenuRefPt + 600
    22  com.apple.HIToolbox                     0x00007fff8c6a680e _HandleMenuSelection2 + 580
    23  com.apple.AppKit                        0x00007fff864844ce _NSHandleCarbonMenuEvent + 250
    24  com.apple.AppKit                        0x00007fff86419941 _DPSNextEvent + 2019
    25  com.apple.AppKit                        0x00007fff86418cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    26  com.apple.Safari.framework              0x00007fff8799c0d3 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    27  com.apple.AppKit                        0x00007fff8641562d -[NSApplication run] + 470
    28  com.apple.AppKit                        0x00007fff8669480c NSApplicationMain + 867
    29  com.apple.Safari.framework              0x00007fff87b4fffb SafariMain + 197
    30  com.apple.Safari                        0x000000010a3c6f24 0x10a3c6000 + 3876
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8a5c17e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff879105be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8790f14e _dispatch_mgr_thread + 54
    Thread 2:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.WebCore                       0x00007fff83f1e8e5 WebCore::IconDatabase::syncThreadMainLoop() + 375
    3   com.apple.WebCore                       0x00007fff83f1c2bd WebCore::IconDatabase::iconDatabaseSyncThread() + 489
    4   com.apple.WebCore                       0x00007fff83f1c0cb WebCore::IconDatabase::iconDatabaseSyncThreadStart(void*) + 9
    5   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    6   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 3:: CoreAnimation render server
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.QuartzCore                    0x00007fff8617c569 CA::Render::Server::server_thread(void*) + 184
    3   com.apple.QuartzCore                    0x00007fff8617c4a9 thread_fun + 24
    4   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    5   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 4:: Safari: CertRevocationChecker
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff87b09cf7 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff87b09c4f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 5:: WebCore: LocalStorage
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8b141c40 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 64
    3   com.apple.WebCore                       0x00007fff83f3adca ***::MessageQueue<WebCore::LocalStorageTask>::waitForMessage() + 132
    4   com.apple.WebCore                       0x00007fff83f3ad23 WebCore::LocalStorageThread::threadEntryPoint() + 99
    5   com.apple.WebCore                       0x00007fff83f3ac6b WebCore::LocalStorageThread::threadEntryPointCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff88e1b0ab +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    6   com.apple.Foundation                    0x00007fff88e0f7fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff88e0f776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 7:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib                  0x00007fff8a5bf67a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8a5bed71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff814a0b6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff814a92d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff814a8ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Safari.framework              0x00007fff87b09cf7 Safari::MessageRunLoop::threadBody() + 163
    6   com.apple.Safari.framework              0x00007fff87b09c4f Safari::MessageRunLoop::threadCallback(void*) + 9
    7   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    8   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 8:: Safari: SnapshotStore
    0   libsystem_kernel.dylib                  0x00007fff8a5c0bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff88805274 _pthread_cond_wait + 840
    2   com.apple.JavaScriptCore                0x00007fff8b141c40 ***::ThreadCondition::timedWait(***::Mutex&amp;, double) + 64
    3   com.apple.Safari.framework              0x00007fff87b8173f Safari::MessageQueue<***::RefPtr<Safari::SnapshotStore::DiskAccessMessage> >::waitForMessage(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&amp;) + 125
    4   com.apple.Safari.framework              0x00007fff87b7eebb Safari::SnapshotStore::diskAccessThreadBody() + 305
    5   com.apple.Safari.framework              0x00007fff87b7e88b Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8a5c0df2 __select + 10
    1   com.apple.CoreFoundation                0x00007fff814f1f9b __CFSocketManager + 1355
    2   libsystem_c.dylib                       0x00007fff888018bf _pthread_start + 335
    3   libsystem_c.dylib                       0x00007fff88804b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8a5c1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff88803594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff88804b85 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8a5c1192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff88803594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff88804b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7203e760  rbx: 0x00007fff7203e760  rcx: 0x00007fff69fc47d0  rdx: 0x00007fff69fc47c0
      rdi: 0x00007fff69fc47d8  rsi: 0x0000000000000010  rbp: 0x00007fff69fc47b0  rsp: 0x00007fff69fc4740
       r8: 0x000000010a440c10   r9: 0x000000010a440c10  r10: 0x0000000000000000  r11: 0x00007f89cd3b5e80
      r12: 0x0000000000000000  r13: 0x0000000000000070  r14: 0x0000000000000000  r15: 0x00007fff69fc4820
      rip: 0x00007fff8795afbf  rfl: 0x0000000000010202  cr2: 0x0000000000000010
    Logical CPU: 0
    Binary Images:
           0x10a3c6000 -        0x10a3c6fff  com.apple.Safari (5.1.1 - 7534.51.22) <8DB30E4C-22B6-3BCE-A6E7-580F13B8903D> /Applications/Safari.app/Contents/MacOS/Safari
           0x10a6f7000 -        0x10a6f7ff5 +cl_kernels (??? - ???) <17E9ECAB-886A-46BD-A02D-0D71A7BB3CDF> cl_kernels
           0x10d519000 -        0x10d51ffef  libcldcpuengine.dylib (1.50.61 - compatibility 1.0.0) <EAC03E33-595E-3829-8199-479FA5CD9987> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10d525000 -        0x10d528ff7  libCoreFSCache.dylib (??? - ???) <D4B5EFEA-7878-3674-A973-BA1D675E5A3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10d53c000 -        0x10d53cffd +cl_kernels (??? - ???) <B265AC7A-24A8-40A0-8469-877808DDDE72> cl_kernels
           0x10d53e000 -        0x10d5d1ff7  unorm8_bgra.dylib (1.50.61 - compatibility 1.0.0) <3ED8B0D5-4A55-3E39-8490-B7BC1780F67B> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10d5f4000 -        0x10d5f5ff3 +cl_kernels (??? - ???) <4ADA13E1-2FA0-43AF-98B8-8A5BD5B6DCC2> cl_kernels
           0x10d603000 -        0x10d604ff3 +cl_kernels (??? - ???) <5A709ABE-E656-45E1-B6DB-54CE95CC6E06> cl_kernels
           0x10d69d000 -        0x10d69effc +cl_kernels (??? - ???) <82FB002D-9BAF-4351-BAAD-4C2A8B5E4D20> cl_kernels
           0x10f75a000 -        0x10f8f2ff7  GLEngine (??? - ???) <D770A837-9F8D-3C86-AB33-CBDEF5599CA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10f926000 -        0x10fa1ffff  libGLProgrammability.dylib (??? - ???) <BCA0FD49-2103-33D8-8801-326C6A62465E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10fa45000 -        0x10fcccfe7  com.apple.ATIRadeonX1000GLDriver (7.0.52 - 7.0.0) <2EF696D5-4B57-3B3C-8738-A9C28B612354> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
           0x10fd13000 -        0x10fd41ff7  GLRendererFloat (??? - ???) <16DF14A0-7264-31A4-83F6-E6F96CF4AB3D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
        0x7fff69fc6000 -     0x7fff69ffaac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff81470000 -     0x7fff81644fff  com.apple.CoreFoundation (6.7.1 - 635.15) <FE4A86C2-3599-3CF8-AD1A-822F1FEA820F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8164a000 -     0x7fff816c0fff  com.apple.ISSupport (1.9.8 - 56) <2CEE7E6B-D841-36D8-BC9F-081B33F6E501> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff816c1000 -     0x7fff816d6fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff81773000 -     0x7fff81773fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8177c000 -     0x7fff8178eff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff81aed000 -     0x7fff81afefff  SyndicationUI (??? - ???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff82294000 -     0x7fff82336ff7  com.apple.securityfoundation (5.0 - 55005) <0D59908C-A61B-389E-AF37-741ACBBA6A94> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82337000 -     0x7fff823b2ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff823b3000 -     0x7fff82407ff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff82408000 -     0x7fff82415ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff82bfd000 -     0x7fff82d0afff  libJP2.dylib (??? - ???) <6052C973-9354-35CB-AAB9-31D00D8786F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff82d0b000 -     0x7fff83179fff  com.apple.RawCamera.bundle (3.8.2 - 579) <3D4EBC1A-4139-3E22-B407-0D4887D8D208> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8317a000 -     0x7fff83186fff  com.apple.CrashReporterSupport (10.7.2 - 347) <0F6D3509-9062-3647-B7C4-F25AF3AE9B71> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff831dd000 -     0x7fff831e0ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff831e1000 -     0x7fff831e4fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff831e5000 -     0x7fff83212fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <095FDD3C-3961-3865-A59B-A5B0A4B8B923> /usr/lib/libSystem.B.dylib
        0x7fff83213000 -     0x7fff83216fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff83221000 -     0x7fff832c0fff  com.apple.LaunchServices (480.21 - 480.21) <6BFADEA9-5BC1-3B53-A013-488EB7F1AB57> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff83660000 -     0x7fff836e5ff7  com.apple.Heimdal (2.1 - 2.0) <C92E327E-CB5F-3C9B-92B0-F1680095C8A3> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff836e6000 -     0x7fff836f1ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff836f2000 -     0x7fff8375cfff  com.apple.framework.IOKit (2.0 - ???) <87D55F1D-CDB5-3D13-A5F9-98EA4E22F8EE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8375d000 -     0x7fff83761fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <5EEAD17D-006C-3855-8093-C7A4A97EE0D0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff83bcb000 -     0x7fff83de5fef  com.apple.CoreData (104 - 358.12) <33B1FA75-7970-3751-9DCC-FF809D3E1FA2> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff83de6000 -     0x7fff83e4eff7  com.apple.audio.CoreAudio (4.0.1 - 4.0.1) <7966E3BE-376B-371A-A21D-9BD763C0BAE7> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83e53000 -     0x7fff83e5eff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff83e5f000 -     0x7fff83e60ff7  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <C6C49FB7-1892-32E4-86B5-25AD165131AA> /usr/lib/system/libremovefile.dylib
        0x7fff83f18000 -     0x7fff84c1efef  com.apple.WebCore (7534.51 - 7534.51.22) <352D30ED-1D1D-390E-B7CB-18E954485FD3> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84c1f000 -     0x7fff84ca3ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <FE629F2D-6BC0-3A58-9844-D8B9A6808A00> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff84cb1000 -     0x7fff84cbaff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff84cbb000 -     0x7fff84cbffff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff84cc0000 -     0x7fff84cc6fff  libGFXShared.dylib (??? - ???) <343AE6C0-EB02-333C-8D35-DF6093B92758> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff84cc7000 -     0x7fff84d2bfff  com.apple.Symbolication (1.2 - 83.1) <0C6F8907-6829-3409-99AC-ACC62923DE98> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff84d2c000 -     0x7fff84d31ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff850b1000 -     0x7fff85324fff  com.apple.CoreImage (7.82 - 1.0.1) <282801B6-5D80-3E2C-88A4-00FE29906D5A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff85528000 -     0x7fff85553ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
        0x7fff8559a000 -     0x7fff855c3fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8561a000 -     0x7fff85620fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff85905000 -     0x7fff8590afff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8594a000 -     0x7fff85993fff  com.apple.framework.CoreWLAN (2.1.1 - 211.3) <0FBC6087-6872-3403-A317-CE888969CF4C> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff859fd000 -     0x7fff85a0bfff  com.apple.HelpData (2.1.0 - 70) <917CF02F-276E-3571-9042-AAAAC0D3D4E1> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff85a59000 -     0x7fff85a7dfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff85a7e000 -     0x7fff85be4fff  com.apple.CFNetwork (520.2.5 - 520.2.5) <406712D9-3F0C-3763-B4EB-868D01F1F042> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff86002000 -     0x7fff860a6fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff860a7000 -     0x7fff860f2ff7  com.apple.SystemConfiguration (1.11.1 - 1.11) <F832FE21-5509-37C6-B1F1-48928F31BE45> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff860f3000 -     0x7fff860f8fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff86119000 -     0x7fff86179fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8617a000 -     0x7fff86319fff  com.apple.QuartzCore (1.7 - 270.0) <E8FC9AA4-A5CB-384B-AD29-7190A1387D3E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8631a000 -     0x7fff8640ffff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff86410000 -     0x7fff87011ff7  com.apple.AppKit (6.7.2 - 1138.23) <5CD2C850-4F52-3BA2-BA11-3107DFD2D23C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87012000 -     0x7fff87019ff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8701a000 -     0x7fff8701dfff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87104000 -     0x7fff87104fff  com.apple.audio.units.AudioUnit (1.7.1 - 1.7.1) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87111000 -     0x7fff87173fff  com.apple.coreui (1.2.1 - 164.1) <F7972630-F696-3FC5-9FCF-A6E1C8771078> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87174000 -     0x7fff87179fff  com.apple.OpenDirectory (10.7 - 146) <91A87249-6A2F-3F89-A8DE-0E95C0B54A3A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8717a000 -     0x7fff87292ff7  com.apple.DesktopServices (1.6.1 - 1.6.1) <4418EAA6-7163-3A77-ABD3-F8289796C81A> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff87293000 -     0x7fff87316fef  com.apple.Metadata (10.7.0 - 627.20) <E00156B0-663A-35EF-A307-A2CEB00F1845> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff87353000 -     0x7fff873c6fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff873c7000 -     0x7fff873d2fff  com.apple.CommonAuth (2.1 - 2.0) <BFDD0A8D-4BEA-39EC-98B3-2E083D7B1ABD> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff873d3000 -     0x7fff874d5ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff874d6000 -     0x7fff877aeff7  com.apple.security (7.0 - 55010) <93713FF4-FE86-3B4C-8150-5FCC7F3320C8> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff877af000 -     0x7fff877d8fff  com.apple.CoreServicesInternal (113.8 - 113.8) <C1A3CF1B-BC45-3FC6-82B3-1511EBBA9D51> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8783d000 -     0x7fff8788fff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8790d000 -     0x7fff8791bfff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
        0x7fff8791c000 -     0x7fff87930ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff87934000 -     0x7fff87942fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87943000 -     0x7fff87dd2ff7  com.apple.Safari.framework (7534 - 7534.51.22) <CD187BAF-2088-32CF-BCD3-E4057351A821> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff87e52000 -     0x7fff87e79fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87e7a000 -     0x7fff87e7bfff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff87e8f000 -     0x7fff87e95fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87f0b000 -     0x7fff88044fef  com.apple.vImage (5.1 - 5.1) <EB634387-CD15-3246-AC28-5FB368ACCEA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff88045000 -     0x7fff8804dfff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88225000 -     0x7fff88266fff  com.apple.QD (3.12 - ???) <4F3C5629-97C7-3E55-AF3C-ACC524929DA2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff882db000 -     0x7fff882dbfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff882e5000 -     0x7fff88324ff7  libGLImage.dylib (??? - ???) <2D1D8488-EC5F-3229-B983-CFDE0BB37586> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff883b6000 -     0x7fff883cdfff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <F21C79C0-4B5A-3645-81A6-74F8EFA900CE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff883ce000 -     0x7fff88443ff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
        0x7fff88444000 -     0x7fff88444fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff88445000 -     0x7fff88445fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff88462000 -     0x7fff88495ff7  com.apple.GSS (2.1 - 2.0) <9A2C9736-DA10-367A-B376-2C7A584E6C7A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff88496000 -     0x7fff887b2ff7  com.apple.CoreServices.CarbonCore (960.18 - 960.18) <6020C3FB-6125-3EAE-A55D-1E77E38BEDEA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff887b3000 -     0x7fff88890fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
        0x7fff888d7000 -     0x7fff88ad9fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff88b1f000 -     0x7fff88b8dfff  com.apple.CoreSymbolication (2.1 - 66) <E1582596-4157-3535-BF1F-3BAE92A0B09F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88b9e000 -     0x7fff88be0ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff88be1000 -     0x7fff88bfeff7  com.apple.openscripting (1.3.3 - ???) <A64205E6-D3C5-3E12-B1A0-72243151AF7D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88bff000 -     0x7fff88d89ff7  com.apple.WebKit (7534.51 - 7534.51.22) <A52AF4EF-A2AA-3718-AB96-576A5E0A1CB8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff88d8a000 -     0x7fff88d8afff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff88db5000 -     0x7fff890ceff7  com.apple.Foundation (6.7.1 - 833.20) <D922F590-FDA6-3D89-A271-FD35E2290624> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff89147000 -     0x7fff89177fff  com.apple.shortcut (2.0 - 2.0) <6E6C9F01-5DAC-35F4-876D-082D915EE782> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff893a3000 -     0x7fff893a4fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff893a5000 -     0x7fff893b4fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
        0x7fff893b9000 -     0x7fff893c0fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff89afb000 -     0x7fff89afcff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff89afd000 -     0x7fff89b01ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff89b02000 -     0x7fff89b2bff7  com.apple.framework.Apple80211 (7.1.1 - 711.1) <FD0675E6-6602-3C28-85AA-6A4AF6B36D78> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff89b6b000 -     0x7fff89b81fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff89bdd000 -     0x7fff89ce2ff7  libFontParser.dylib (??? - ???) <B9A53808-C97E-3293-9C33-1EA9D4E83EC8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff89ce3000 -     0x7fff89cedff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
        0x7fff89cee000 -     0x7fff89d41fff  libFontRegistry.dylib (??? - ???) <57FBD85F-41A6-3DB9-B5F4-FCC6B260F1AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89d9f000 -     0x7fff89da3fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff89da4000 -     0x7fff89dc1fff  libPng.dylib (??? - ???) <3C70A94C-9442-3E11-AF51-C1B0EF81680E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89e89000 -     0x7fff89e8efff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff89e8f000 -     0x7fff8a473fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8a474000 -     0x7fff8a49cff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8a49d000 -     0x7fff8a4f4fff  libTIFF.dylib (??? - ???) <FF0D9A24-6956-3F03-81EA-3EEAD22C9DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8a4f5000 -     0x7fff8a5a8fff  com.apple.CoreText (220.11.0 - ???) <4EA8E2DF-542D-38D5-ADB9-C0DAA73F898B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8a5aa000 -     0x7fff8a5cafff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8a5cb000 -     0x7fff8a5fbff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8a5fc000 -     0x7fff8a6ddfff  com.apple.CoreServices.OSServices (478.29 - 478.29) <B487110E-C942-33A8-A494-3BDEDB88B1CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8a6de000 -     0x7fff8a702ff7  com.apple.RemoteViewServices (1.2 - 39) <862849C8-84C1-32A1-B87E-B29E74778C9F> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8a88e000 -     0x7fff8a8aaff7  com.apple.GenerationalStorage (1.0 - 125) <31F60175-E38D-3C63-8D95-32CFE7062BCB> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8a8ab000 -     0x7fff8a8edfff  com.apple.corelocation (330.12 - 330.12) <CFDF7694-382A-30A8-8347-505BA0CAF312> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8a8ee000 -     0x7fff8a988ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8a989000 -     0x7fff8a9b6ff7  com.apple.opencl (1.50.63 - 1.50.63) <DB335C5C-3ABD-38C8-B6A5-8436EE1484D3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8aa0d000 -     0x7fff8aa23ff7  com.apple.ImageCapture (7.0 - 7.0) <69E6E2E1-777E-332E-8BCF-4F0611517DD0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8aa24000 -     0x7fff8aa43fff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <33263568-E6F3-359C-A4FA-66AD1300F7D4> /usr/lib/libresolv.9.dylib
        0x7fff8aa44000 -     0x7fff8aa44fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8ae77000 -     0x7fff8ae8aff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8b137000 -     0x7fff8b3c1fff  com.apple.JavaScriptCore (7534.51 - 7534.51.21) <B311DA3D-F763-32A0-BE17-5DC97820BFAB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8b3c2000 -     0x7fff8b4c5fff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <7F60B0FF-4946-3639-89AB-B540D318B249> /usr/lib/libsqlite3.dylib
        0x7fff8b4c6000 -     0x7fff8b4ecff7  com.apple.framework.familycontrols (3.0 - 300) <41A6DFC2-EAF5-390A-83A1-C8832528705C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b5b5000 -     0x7fff8b5d2ff7  libxpc.dylib (77.17.0 - compatibility 1.0.0) <72A16104-2F23-3C22-B474-1953F06F9376> /usr/lib/system/libxpc.dylib
        0x7fff8b6bb000 -     0x7fff8b6c1ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff8b6c2000 -     0x7fff8b6fcfff  com.apple.DebugSymbols (2.1 - 85) <AEF473A5-25BF-3FB7-9A07-320D9CB85959> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8b746000 -     0x7fff8b755ff7  com.apple.opengl (1.7.5 - 1.7.5) <2945F1A6-910C-3596-9988-5701B04BD821> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b756000 -     0x7fff8b757fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8b766000 -     0x7fff8b76cfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8b8a9000 -     0x7fff8b8aefff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8b8af000 -     0x7fff8b8e4fff  com.apple.securityinterface (5.0 - 55004) <790DDF7E-6BA9-36DD-B818-2322A712E1F5> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8b8e5000 -     0x7fff8b9c9def  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <C5F2392D-B481-3A9D-91BE-3D039FFF4DEC> /usr/lib/libobjc.A.dylib
        0x7fff8bac5000 -     0x7fff8baccfff  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <40374018-2832-3144-8114-CED417321C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8bacd000 -     0x7fff8bb94ff7  com.apple.ColorSync (4.7.0 - 4.7.0) <F325A9D7-7203-36B7-8C1C-B6A4D5CC73A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8bbea000 -     0x7fff8bc2dff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <2B1571E1-8E87-364E-BC36-C9C9B5D3EAC4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8bcda000 -     0x7fff8bce7fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <931F40EB-CA75-3A90-AC97-4DB8E210BC76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8bf9d000 -     0x7fff8bfabff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8bfba000 -     0x7fff8c0c6fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8c0f7000 -     0x7fff8c0f9fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8c105000 -     0x7fff8c25efff  com.apple.audio.toolbox.AudioToolbox (1.7.1 - 1.7.1) <4877267E-F736-3019-85D3-40A32A042A80> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8c25f000 -     0x7fff8c261ff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8c262000 -     0x7fff8c269fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff8c26a000 -     0x7fff8c2a5ff7  libsystem_info.dylib (??? - ???) <9C8C2DCB-96DB-3471-9DCE-ADCC26BE2DD4> /usr/lib/system/libsystem_info.dylib
        0x7fff8c2a6000 -     0x7fff8c2f4fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8c2f5000 -     0x7fff8c335ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <B7173CA4-CE16-3BAB-8D83-185FCEFA15F5> /usr/lib/libcups.2.dylib
        0x7fff8c33a000 -     0x7fff8c418fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <13E549F8-5BD6-3BAE-8C33-1D0BD269C081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8c419000 -     0x7fff8c458fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8c46a000 -     0x7fff8c47cff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff8c47d000 -     0x7fff8c627fff  com.apple.WebKit2 (7534.51 - 7534.51.22) <DCE49986-D892-33DB-8B2C-1393F0CF108C> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff8c652000 -     0x7fff8c976fff  com.apple.HIToolbox (1.8 - ???) <A3BE7C59-52E6-3A7F-9B30-24B7DD3E95F2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8c9a8000 -     0x7fff8c9aafff  libCVMSPluginSupport.dylib (??? - ???) <61D89F3C-C64D-3733-819F-8AAAE4E2E993> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8c9ab000 -     0x7fff8c9acfff  libsystem_sandbox.dylib (??? - ???) <8D14139B-B671-35F4-9E5A-023B4C523C38> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8cb13000 -     0x7fff8cb2afff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8cb2b000 -     0x7fff8cb2bfff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8cb2c000 -     0x7fff8cb9cfff  com.apple.datadetectorscore (3.0 - 179.4) <2A822A13-94B3-3A43-8724-98FDF698BB12> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8cb9d000 -     0x7fff8cb9dfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8cbe5000 -     0x7fff8cbe6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8cbe7000 -     0x7fff8d014fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d015000 -     0x7fff8d070ff7  com.apple.HIServices (1.10 - ???) <BAB8B422-7047-3D2D-8E0A-13FCF153E4E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8d071000 -     0x7fff8d0b1fff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
        0x7fff8d10d000 -     0x7fff8d5d4fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d5d5000 -     0x7fff8d6dbfe7  com.apple.PubSub (1.0.5 - 65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff8d6dc000 -     0x7fff8d772ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d803000 -     0x7fff8d805fff  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <4C3BFBC7-E592-3939-B376-1C2E2D7C5389> /usr/lib/system/libquarantine.dylib
        0x7fff8d920000 -     0x7fff8e033587  com.apple.CoreGraphics (1.600.0 - ???) <A9F2451E-6F60-350E-A6E5-539669B53074> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 674
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=175.3M resident=122.6M(70%) swapped_out_or_unallocated=52.7M(30%)
    Writable regions: Total=1.1G written=40.3M(4%) resident=63.2M(5%) swapped_out=0K(0%) unallocated=1.1G(95%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                    4416K
    CG image                              168K
    CG raster data                       9796K
    CG shared images                     3408K
    CoreAnimation                        22.7M
    CoreGraphics                           16K
    CoreImage                               8K
    CoreServices                         1732K
    IOKit                                2028K
    IOKit (reserved)                      512K        reserved VM address space (unallocated)
    JS JIT generated code               128.0M
    JS JIT generated code (reserved)    896.0M        reserved VM address space (unallocated)
    JS VM register file                  4096K
    JS garbage collector                   80K
    MALLOC                               70.0M
    MALLOC guard page                      48K
    Memory tag=240                          4K
    Memory tag=242                         12K
    Memory tag=251                        136K
    OpenCL                                 52K
    OpenGL GLSL                          1372K
    OpenGL GLSL (reserved)                128K        reserved VM address space (unallocated)
    SQLite page cache                    3072K
    STACK GUARD                          56.0M
    Stack                                13.2M
    VM_ALLOCATE                          16.7M
    __CI_BITMAP                            80K
    __DATA                               16.5M
    __IMAGE                              1256K
    __LINKEDIT                           47.9M
    __TEXT                              127.4M
    __UNICODE                             544K
    mapped file                          45.3M
    shared memory                        1412K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      576.7M
    Model: iMac5,1, BootROM IM51.0090.B09, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB, SMC 1.9f4
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446313238363448592D3636374433
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz, 0x2C00000000000000, 0x3136485446313238363448592D3636374433
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.36.11)
    Bluetooth: Version 4.0.1f4, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST3250824AS  Q, 250.06 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06
    USB Device: Built-in iSight, apple_vendor_id, 0x8501, 0xfd400000 / 3
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0702, 0xfd100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x7d100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8240, 0x7d200000 / 3
    Correct AnswerHelpful Answer

  • CHM buttons are not localized in a French project (shows English Contents, Index, Search, Print, Hide buttons)

    I opened an old WinHelp project into my new RoboHelp 7. When
    I generate the CHM, even with the Project Settings in RoboHelp set
    to French and running in a French Windows operating system (MS
    Windows XP Pro 2002 SP 2), the CHM output is still in English. The
    buttons display in English (Contents, Index, Search, Print, Hide
    buttons). The title bar of the CHM also says &quot;HTML
    Help&quot; even though the project title in the Project
    Settings is &quot;Aide en ligne...&quot;.
    My Windows Regional Settings through the Control Panel -
    Regional Options tab is set French (France). On the Languages tab I
    under Text Services and Input Languages, Details button, I selected
    French (France) French. On the Advanced tab I selected French. Then
    I rebooted.
    On the language bar on my Task pane, I selected FR. The CHM
    still displays in English.
    Please help! I have to produce 4 CHMS in languages other than
    English today.
    Thanks!

    GinaL, would you be able to give us an update? Did the CHM
    files look ok on a PC with a true French OS installed?
    To avoid having to rewrite everything, I've written the
    following info/instructions for my team -- though I'm not yet sure
    they're 100% correct:
    After I reported this issue to Adobe, they worked on the
    problem for several days. They even sent me a new
    HtmSingleSourceHtmlHelp.dll file that was supposed to solve the
    problem. But it didn't work correctly. No matter what contortions
    we put ourselves through, we couldn't get both of these items
    correct in the CHM file at the same time, namely:
    Index compiled in correct alphabetical order accdg to the
    language of the help project.
    Correctly translated help title showing in the caption,
    regardless of the user's Windows regional settings. (For example,
    we wanted "FORMS-Hilfe zu FORMS 5-3" to appear as the caption of
    the German version of FORMS help, even if our regional settings
    were set to English.)
    I think we'd all agree that the index has to be in
    alphabetical order. So from what I've seen, this is what we have to
    do when compiling a non-English version of help using RH7:
    1. Set up the project with the foreign name.
    2. Set the language in the project settings. And in the
    Project Settings dialog, click Advanced and check out the LNG File
    tab to make sure it's using a translated version.
    3. Ensure that the Window Caption setting is correct in each
    window included in the project. (On RoboHelp's Project tab, open
    the Windows folder, double-click each window in turn, and check the
    settings.)
    4. Set the Language setting in the HHP file to Language=[hex
    value for that language]. I found a bunch of them listed on this
    web page. Someone else might be able to find a better source:
    https://svn.origo.ethz.ch/scoop/es_scoop_60/library/i18n/locale/nls/i18n_nls_lcid_tools.e
    5. Change your Windows regional settings to the same language
    as the help project. (Reboot if prompted.)
    6. Recommended, for safety's sake: Delete the CPD file.
    7. Open the project and compile using RH7.
    8. Check the index's sort order -- is it in alphabetical
    order according to the language of the project?
    9. Check the help caption -- make sure it's not "HTML Help".
    Note: Any customized buttons in your CHM should appear
    correctly translated, but other buttons (Contents, Index, Search)
    still appear in English -- at least they do on my PC, even though I
    did step 2 above. We need to check whether those buttons appear
    correctly when the PC is actually running a true foreign version of
    Windows, and not just with temporarily adjusted Windows settings.
    OR -- is anyone else able to get these to appear translated in the
    CHM file?
    Does anyone have anything to add? Other solutions? Easier
    procedures? Better results to report?
    Thank you
    Eileen

  • IFS Searching with other Search Engines

    Is it possible to set up iFS searching with or without interMedia) that would work with a search engine for static pages, like Infoseek?
    From an "end-users" point of view, I would like to have them search for a document, some of which may be stored in the database, but others are html pages used for the site.

    You would have to write a custom program which would submit searches to IFS and to your Infoseek search engine, and then combine the results for the end user.
    Or you could use iFS and Intermedia to index the static HTML pages.

  • When highlighting text and searching with Google, even though my default browser is Chrome, it searches with Safari.  How do I change that?

    Using iMac and Maverick OS.  I have Chrome as my default browser.  I find that going to System Preferences/General under default browser, I note that Chrome is chosen as default, yet the browser "above the line" is Safari and Chrome, while checked off is "below the line".  In other words, the top listed browser is Safari which is unchecked with a line underneath, even though all the other browsers are listed below the line and only Chrome has a check mark. 
    When I am on a website and I select words to search in Google, it always searches with Safari instead of Chrome.  How do I change that?

    Thanks for your response.  I think it was my error in that I did not define the problem properly.  Indeed Chrome is my default browser.  And Maverick does not have a "next line" to default to Google.  I can do that in the Chrome settings. 
    My problem is that when I am in another application.....and it is apparently an application native to Maverick....for example Contacts or Calendar, Reminders, Notes, etc., if I highlight a word or phrase, and right click and choose "search with Google", it defaults to Safari.  How do I change that?

  • Problems searching with INPATH

    hi,
    i want to search in a table by INPATH where i saved my xml files as blobs.
    searching with the contains query operator works fine, but the problem is, that i don't get any results if i try to search using INPATH in the contains query.
    do i need special privileges for searching with INPATH, HASPATH and WITHIN?
    is there a problem by saving xml files in a BLOB instead of a CBLOB or a XMLType?
    here what i did:
    i created the following table and inserted some xml files using java and the oracle-jdbc-driver:
    create table xmldocs (docid number not null, title varchar2 (30), format varchar2(10), docblob blob);
    i create my context index:
    create index xmldocs_idx on xmldocs(docblob) indextype is ctxsys.context parameters
    ('datastore ctxsys.default_datastore filter ctxsys.null_filter section group ctxsys.path_section_group');
    here an example of a xml file (with the docid=4) that i inserted:
    <A><B><C>dog</C></B></A>
    by searching for "dog" i receive a result:
    select docid from xmldocs where contains(docblob, 'dog')>0;
    DOCID
    4
    but if i search with INPATH i receive nothing:
    select docid from xmldocs where contains(docblob, 'HASPATH(/A)')>0;
    any ideas???

    nevertheless, i know the difference between INPATH and HASPATH, that is not my problem.
    so if i execute the statement:
    select docid from xmldocs where contains(docblob,'dog INPATH (/A)')>0;
    or
    select docid from xmldocs where contains(docblob,'HASPATH (//A = "dog")')>0;
    i receive "no rows selected", and that's my problem.
    it seems that the index that should be used for searching with INPATH or HASPATH is not correct or not available. if i compare the token_texts of the index that generated by create index and the parameter ctxsys.path_section_group to an index generated without any parameters it's the same. should it be like this? is that regular?
    i checked the indexes with:
    select token_text from dr$xmldocs2_idx$i;
    if i check the available indexes with:
    select index_name, index_type, ityp_owner, ityp_name, domidx_opstatus
    from user_indexes
    where ityp_owner = 'CTXSYS';
    i receive:
    INDEX_NAME INDEX_TYPE ITYP_OWNER ITYP_NAME DOMIDX
    XMLDOCS_IDX DOMAIN CTXSYS CONTEXT VALID
    do i need any other database privileges than to ctxapp?
    thanks a lot if somebody can help me!!!
    randy

  • Help with preferences

    Hello Adobe Community
    I´m a german Designstudent and I have bought the Adobe Creative Suite 4. Students-Edition. Problem #1: It`s the english version. Ok, were living in a big worldwide town, we´re all speaking english, so that won´t be the biggest problem.
    My question: Is anybody out there who can help me to get Indesign started?
    - Indesign doesn´t react, when i use shortcuts, and they are not next to the menus, like it´s normal.
    - I´m not able to make new textlines in textfields
    - in the adjustments direktly after installing, there are no toolboxes visible, i always have to open them again after new starting.
    This are the Problems, wich make it very hard to work.
    I even uninstalled Indesign, installed it again, but the problems are the same. I tried to use the keycombination strg. alt. and tab, when I started Indesign, to make the preferences to the adjustments of the beginning. This doesn´t work too. I searched on the computer after a file with preferences, ore something else.
    But now i´m at the end of my ideas!
    Please answere in english or german!
    I hope that there is an other sollution, than to buy a new german version. I´m a poor student =)

    On Vista you should find your InDesign settings files under Users\[username]\AppData\Roaming\Adobe\InDesign\6.0\[language] and it's that [language] folder that you should try renaming (copy the whole indesign folder to a safe place as a backup, first). There may be another folder in that same area as well, but I don't have vista and don't know the paths. It might be Users\[username]\local settings\AppData\Roaming\Adobe\InDesign\6.0\[language]
    Also look in the program files\common\adobe direcectory for any InDesign folders that have a language designation for version 6, and in the InDesign program directory. You might want to wait until one of the vista users comes on board to give you the correct path information.
    In any case, back up anything you are about to change, and make notes so you can undo the damage if it doesn't work. Setting a restore point first would also be a good idea.
    Peter

  • Search engine preference is google, but when i search it switches to bing

    On my macbook pro which is using mountain lion, by safari search engine preferences is set to google, but when i enter a search term it defaults to bing.  Only noticed this problem after downloading adobe flash player for what it's worth.

    You installed the "Genieo/InstallMac" rootkit. The product is a fraud, and the developer knowingly distributes an uninstaller that doesn't work. I suggest the procedure below to disable Genieo. This procedure may leave a few small files behind, but it will permanently deactivate the rootkit (as long as you never reinstall it.)
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data. You must know how to restore from a backup even if the system becomes unbootable. If you don't know how to do that, or if you don't have any backups, stop here and ask for guidance.
    Step 1
    In the Applications folder, there may (or may not) be an application named "Genieo". Genieo may be partially installed even if this item is absent. If it's present, select it and open the Finder Info window. If it shows that the Version is less than 2.0, download and install the current version from the genieo.com website. This may seem paradoxical, since the goal is to remove it, but you'll be saving yourself some trouble as well as the risk of putting the system in an unusable state.
    There should be another application in the same folder named "Uninstall Genieo". After updating Genieo, if necessary, launch "Uninstall Genieo" and follow the prompts to remove the "newspaper-style home page." Restart the computer.
    This step does not completely inactivate Genieo.
    Step 2
    Don't take this step unless you completed Step 1, including the restart, without any error messages. If you didn't find the Genieo application, or if you couldn't complete Step 1 for any reason, stop here and ask for instructions.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Frameworks/GenieoExtra.framework
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.
    If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder should open with an item named "GenieoExtra.framework" selected. Move that item to the Trash. You'll be prompted for your administrator password.
    Move each of these items to the Trash in the same way:
    /Library/LaunchAgents/com.genieo.completer.update.plist
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib
    /usr/lib/libgenkitsa.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib
    ~/Library/Application Support/com.genieoinnovation.Installer
    ~/Library/LaunchAgents/com.genieo.completer.download.plist
    ~/Library/LaunchAgents/com.genieo.completer.update.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those listed above, move them as well. There's no need to restart after each one. Some of these items will be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    Step 3
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including ones called "Genieo" or "Omnibar," and any that have the word "Spigot" or "InstallMac" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Your web browser(s) should now be working, and you should be able to reset the home page and search engine. If not, stop here and post your results.
    Make sure you don't repeat the mistake that led you to install this software. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad has a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If youever download a file that isn't obviously what you expected, delete it immediately.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    Finally, be forewarned that when Genieo is mentioned on this site, the attacker sometimes shows up under the name "Genieo support." He will tell you to download a fake "uninstaller." As he intends, the uninstaller does not completely remove the malware, and is in fact malware itself.

  • Full text index searching in large document sets

    I have been placed in charge of a digital PDF document library for a small biotech company. The library consists of about 1000 100-300 page .pdf documents which have been scanned and OCRed. In order to facilitate the full text searching of the documents a PDX catalog has been created. In theory, the PDX catalog would seem to be an excellent means of quickly accessing the data, but due the sheer volume of text that is contained in the documents this does not seem to be the case.
    Any given search may take hours to complete and many computers in the department have been known to lock up due to the load of running a search. Obviously, this has made using the PDX search more of a hassle than it is worth.
    I do not know exactly how the index searches work, but from what I gather they somehow search within each document in turn and return to you all the instances in all the documents that contain a certain term. If this is the case, than it would make sense that the searches would take a long time because the search would have to search each of the 1000 documents in sequence.
    The thing is: we really do not need to know the context and placement of every instance that a word appears in a document. All we need to know is IF it appears, and perhaps how many times. Is there a way to make an index that will simply give us this information without having to search the actual document?
    Heres an example of what I am trying to achieve:
    Note: I know almost nothing about full text indexes so please forgive me if any of this sounds insane
    Lets say we have a document called "word count.pdf" which contained the following text:
    "blah blah yadda yadda text Recombinant human insulin more text still texting and so on"
    And another called "word count 2.pdf" with the following text
    "Recombinant human insulin and la la la dee do"
    The indexes for these files could be condensed and stored like this:
    "Word count.pdf"
    Blah 2
    yadda 2
    recombinant 1
    human 1
    insulin 1
    text 2
    texting 1
    and 1
    so 1
    on 1
    "Word count 2.pdf"
    recombinant 1
    human 1
    insulin 1
    and 1
    la 3
    dee 1
    do 1
    In this example, if we were to run a search on "text" the index would return "word count.pdf, 3 instances (2 of text and 1 of texting" whereas if we were to search for "recombinant" it would return both "word count.pdf, 1 instance" and "word count 2.pdf, 1 instance".
    This way, I could quickly weed out all documents that do not have the word that I am looking for and get an idea about which documents should be searched more in depth without scanning every single instance of the term in every document.
    Is there any way to accomplish something similar to this using acrobat? (Or anything else, for that matter)
    My specifications: (similar to specs of all computers searching the pdx):
    Windows XP,
    intel celeron CPU 2.6GHz, 1G of ram
    Adobe Acrobat 8 Professional

    Look at dTSearch. We used the publisher version for a CD with large files sets (with hundreds of pages per file/thousands of PDF pages of multicolumn index data - text heavy), and it does a great job. The desktop version would provide the type of searching you are looking for. Indexing is also very fast. Our customer complained, like yourself, about the speed of searches in Acrobat 6 and higher - most of the delay is due to the population of the results window.
    http://www.dtsearch.com/

Maybe you are looking for

  • I can't make an animated gif in photoshop cs5

    i followed every step of this tutorial : http://www.youtube.com/watch?v=JKrjTtgJUbE it worked with a lot of people , but when i did it , it looked like this : http://postimg.org/image/h9gzhiuln/ !!! it's really annoying , i imported a video (mp4) fro

  • I recently upgraded to OSX 10.9.  Within Mail, I can no longer scroll in any window but the mailbox window.  What happened?

    I recently upgraded to OSX 10.9.1.  Within Mail, I can no longer scroll  in any window but the mailbox window.  What happened?  Not in the message window or the reading pane.

  • Where is the Application Sharing defaulttrace.trc file located?

    Hi, In a help document it says this: a.      Set the Application Sharing Server trace file (defaultTrace.trc) to severity info and try to start a new session. but where is the Application Sharing file located? or it means the J2EE defaultTrace file?

  • Version managment.

    Hi, I want to print the details of latest version number, the date of version changed and the version text in the purchase order. Could anyone please let me know the table details where i can get the three fields. Thanks in advance. Regards, R. Dilli

  • Custom CMIS Connector MoveHandler Cache issue

    Hi everybody. At the momment I'm working the custom CMIS connector, that should work only with Alfresco. Connector is almost done, but I'm having strange issue with MoveHandler. What happens is when I move file into another directory, and try to move