Out of memory when rendering...mystery! urgent help!

ok, this is mysterious. and stressful, because of course it happens when i have to output this and get on a plane.
I created a stereo sequence which is high def, 3840x1080. photo jpeg. it has stills, and embedded hdv sequence content.
out of memory error when exporting quicktime movie, either through fcp or compressor.
so i have gone to the individual sequences (left and right) which are normal hdv sequences with video and stills, and out put a quicktime of each. i'll import the quicktimes and build the stereo sequence with these two quicktime files.
the right sequence rendered, and output as a quicktime movie just fine.
the left sequence failed, out of memory error.
so i started rendering the sequence a bit at a time to find where the problem is. the problem is on two pieces of hdv footage, and a few frames of a photo.
HERE'S THE STRANGE THING:
except for the few frames of still photo, which are in a transition of text overlay, everything is identical to the right sequence which rendered and output JUST FINE! the only difference with the text is that its position is slightly different...but 97% of it rendered just fine. I found one still which was grayscale which i've changed to RGB, but still no difference in being able to render. and it rendered in grayscale on the right sequence.
I've changed my scratch disk to a drive with over a tb of space, I have 5gb of RAM with only fcp running, on a dual core 2.67 mac pro.
help!

Deleting FCP Preferences:
Open a Finder window. Set the view mode to columns:
Click the house icon that has your name next to it.
Click the folder "Library" in the next column.
Find and click the folder "Preferences" in the next column.
Find and click the folder "Final Cut Pro User Data" in the next column.
Move the files "Final Cut Pro 6.0 Prefs", "Final Cut Pro Obj Cache" and "Final Cut Pro Prof Cache" to the Trash and empty it.
When you have a stable set of preference files, download [Preference Manager|http://www.digitalrebellion.com/pref_man.htm] to back them up. If you have further problems, the backup can be recalled and you can continue working.

Similar Messages

  • "File Error" and "Out of Memory" when rendering FCE

    Dear all,
    I imported a 2 hour holiday video into FCE.
    When rendering the video, a message appears that the rendering process will last about 15 minutes to complete.
    However, frequently I am warned by the following message:
    "File Error: The specified file is open and in use by this or another application"
    When activating Rendering again, the render time is now increased to about 45 minutes.
    I now either receive a couple of times the message: "File Error: The specified file is open and in use by this or another application" >>or even worse: "Out of memory"<<.
    Today I purchased an addition 2GB of memory to increase my memory form 750 MB to 2.5GB !!!
    Can anyone please tell me what could be the cause of these messages and how to solve them?
    BTW, no other programs are running while I use FCE.
    Thanks in advance,
    Hans E.<br>
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express Mac OS X (10.3.9)
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express Mac OS X (10.3.9)
    PowerMac G5-Dual 1.8GHz, Memory 2.5GB, iMac G3-600MHz, Airport, Airport Express   Mac OS X (10.3.9)  

    Is it happening when you're rendering, or exporting?
    The error message means FCE is trying to rewrite a file that it is currently using. It could be mistakenly trying to save a render file, if you're only rendering, or if you're trying to re-export a file, you'll get that message.
    Try dumping all your render files, restarting FCE and trying again.
    The Out of Memory error almost always points toward a corrupt file. Could be a source file, could be a render file. Again, dump your render files and try again.
    If these don't work, you need to close FCE, take all your source media offline, then open FCE. Now, reconnect each clip one by one until you find the corrupt clip. Keep going, there may be more than one. Re-capture the corrupt clips and you should be good to go.

  • Final_cut_pro-"Error: out of memory" when rendering with hidef clips

    I keep getting this notice when rendering "error: out of memory." Both my external drive and internal drive have plenty of memory; 1.8TB and 101GB respectively. It makes no difference if I am rendering at full resolution or draft. I solved it for a while by clearing out some memory on my internal harddrive,
    but now it is back. What is going on. This didn't happen when I was working with regular definition clips but now I am working with high def. What to do?

    Drives don't have 'memory' in this context, they are storage containers.
    Check my answer to your other thread and give us more info about your rig...Hardware/Software (models/versions), how everything's connected, exact specifications of the media you're working with and sequence settings.
    K

  • Server goes out of memory when annotating TIFF File. Help with Tiled Images

    I am new to JAI and have a problem with the system going out of memory
    Objective:
    1)Load up a TIFF file (each approx 5- 8 MB when compressed with CCITT.6 compression)
    2)Annotate image (consider it as a simple drawString with the Graphics2D object of the RenderedImage)
    3)Send it to the servlet outputStream
    Problem:
    Server goes out of memory when 5 threads try to access it concurrently
    Runtime conditions:
    VM param set to -Xmx1024m
    Observation
    Writing the files takes a lot of time when compared to reading the files
    Some more information
    1)I need to do the annotating at a pre-defined specific positions on the images(ex: in the first quadrant, or may be in the second quadrant).
    2)I know that using the TiledImage class its possible to load up a portion of the image and process it.
    Things I need help with:
    I do not know how to send the whole file back to servlet output stream after annotating a tile of the image.
    If write the tiled image back to a file, or to the outputstream, it gives me only the portion of the tile I read in and watermarked, not the whole image file
    I have attached the code I use when I load up the whole image
    Could somebody please help with the TiledImage solution?
    Thx
    public void annotateFile(File file, String wText, OutputStream out, AnnotationParameter param) throws Throwable {
    ImageReader imgReader = null;
    ImageWriter imgWriter = null;
    TiledImage in_image = null, out_image = null;
    IIOMetadata metadata = null;
    ImageOutputStream ios = null;
    try {
    Iterator readIter = ImageIO.getImageReadersBySuffix("tif");
    imgReader = (ImageReader) readIter.next();
    imgReader.setInput(ImageIO.createImageInputStream(file));
    metadata = imgReader.getImageMetadata(0);
    in_image = new TiledImage(JAI.create("fileload", file.getPath()), true);
    System.out.println("Image Read!");
    Annotater annotater = new Annotater(in_image);
    out_image = annotater.annotate(wText, param);
    Iterator writeIter = ImageIO.getImageWritersBySuffix("tif");
    if (writeIter.hasNext()) {
    imgWriter = (ImageWriter) writeIter.next();
    ios = ImageIO.createImageOutputStream(out);
    imgWriter.setOutput(ios);
    ImageWriteParam iwparam = imgWriter.getDefaultWriteParam();
    if (iwparam instanceof TIFFImageWriteParam) {
    iwparam.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
    TIFFDirectory dir = (TIFFDirectory) out_image.getProperty("tiff_directory");
    double compressionParam = dir.getFieldAsDouble(BaselineTIFFTagSet.TAG_COMPRESSION);
    setTIFFCompression(iwparam, (int) compressionParam);
    else {
    iwparam.setCompressionMode(ImageWriteParam.MODE_COPY_FROM_METADATA);
    System.out.println("Trying to write Image ....");
    imgWriter.write(null, new IIOImage(out_image, null, metadata), iwparam);
    System.out.println("Image written....");
    finally {
    if (imgWriter != null)
    imgWriter.dispose();
    if (imgReader != null)
    imgReader.dispose();
    if (ios != null) {
    ios.flush();
    ios.close();
    }

    user8684061 wrote:
    U are right, SGA is too large for my server.
    I guess oracle set SGA automaticlly while i choose default installion , but ,why SGA would be so big? Is oracle not smart enough ?Default database configuration is going to reserve 40% of physical memory for SGA for an instance, which you as a user can always change. I don't see anything wrong with that to say Oracle is not smart.
    If i don't disincrease SGA, but increase max-shm-memory, would it work?This needs support from the CPU architecture (32 bit or 64 bit) and the kernel as well. Read more about the huge pages.

  • Out of memory when i render HD with many layers

    I got a message error ( out of memory ) when i render HD full 1920 X 1080 in final cut pro 5 with many layers ( 6 to 9 layers ). I have 5.5 gig of memory and when is crash....1.5gig of memory is free in my activity monitor. If a buy more ram...my problem will be resolve? Please help me if anybody know about this problem.
    thank
    Yan

    I am having the same problem...(out of memory on renders)
    I've been watching my activity monitor and cancelling the render before I run out of memory... but I'm not getting much done and I can't do a big render at night.
    I've done all the usuall things... no CMYC files. Trash Prefrences... etc..
    Two questions:
    I am using Magic Bullet filters and they seem to stack up the inactive RAM. (When the incactive ram fills up that's when I get the "out of memeory") You said you saw a post about that a few days ago...Was there an answer besides changing out the filters? or can you point me towards the posting?
    I'm also trying to figure out how to dump or clear the inactive RAM once I'm done with a render. I found that if I do a full restart I can clear my RAM and get a bunch of renders done before I fill up the inactive ram again. This is going to be a long project if I have to do that.
    thanks
    Mark

  • Ora-04030 process out of memory when trying to allocate nn bytes..

    Hi,
    Again we are facing the same error after increasing pga_aggregate_target from 2G to 3G, the journal import program request finally results in ora-04030 process out of memory when trying to allocate nn bytes.
    wiil there be any bugs issue?
    DBMS:9.2.0.3
    OS :sun sparc 5.10

    IF possible try to apply last patchset to take your DB to the latest version which should be more reliable and many bugs should be solved.
    Do you have free physical memory to use the 3gb?
    Hope this helps.
    Regards.
    FR.

  • "Error: Out of Memory" when trying to Render

    Hello all,
    I'm editing a project in FCP 5 that is using, in part, .mpeg-4 videos downloaded from the internet. After several weeks on the project with things going fine, the downloaded videos can no longer render. I can see them in the source window, but when laid into the sequence these downloaded videos produce an "Error: Out of Memory" message. Other videos of this type that are already rendered and playing in the existing sequence cannot be re-rendered or adjusted without producing the same Error message.
    A few things to remember...
    1. Other types of rendering, such as filters and fit to fill effects, render just fine.
    2. There is over 30 GBs on the external drive this project is running on.
    3. I've tried resetting scratch disks, transferring the project to another drive, and opening it on a new, super-fast computer, and nothing is different.
    Please help, I'm really stuck in the mud here and am dying to get past this issue,
    Peace,
    Sam

    Did either of you find an answer? I'm running into the S A M E issues. I feel strongly that it has to do with the quicktime update, as editing mp4's worked FINE in January.
    There is a lengthy protocol for trying to circumvent this issue:
    http://discussions.apple.com/thread.jspa?threadID=1413028&tstart=0
    Didn't work for me, but I think it worked for the query. And VLC (http://www.videolan.org/) ended up being the only program I can even VIEW mp4 in now properly.
    So if you can use a viewer, that works.

  • Indesign quit or Out of memory when exporting or printing pdf.

    Hi i have a mac Pro, 2x 2.26 GHZ Quad Core Intel- Xeon with 6GB 1066 MHz DDR3 running 10.6.8 and Adobe Design Premium.
    when using Indesign and printing pdfs or exporting to pdf Indesign comes up with an "out of memory" or quits unexpectedly, please can someone explain why this would happen?
    i have tested the ram/ reformated and reinstalled OSX 10.6.8 and Adobe but still this issue arises.

    Hello John,
    I am creating an Indesign File with various art work, Images and Vector graphics and text then exporting to PDF and or Print the PDFS.
    I can not use Pastbin but here are the errors from Console that i could find:
    I am using The latest patch update Indesign 6.0.6 i thought the update would fix the issue but it has not.
    Please could someone help me urgently!!!
    Feb  5 00:30:00 hifi02s-Mac-Pro newsyslog[2888]: logfile turned over
    Feb  5 00:52:42 hifi02s-Mac-Pro ntpd[26]: time reset +0.186240 s
    Feb  5 01:45:57 hifi02s-Mac-Pro loginwindow[37]: loginwindow SleepWakeCallback WILL sleep
    Feb  5 10:43:20 hifi02s-Mac-Pro loginwindow[37]: loginwindow SleepWakeCallback will power on, Currenttime:2/5/2012 10:43:20.010 AM - Waketime:2/5/2012 10:43:18.840 AM = Deltatime:1.169763982
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Sleep: Success - AC - Idle Sleep
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Wake: Success - AC - EHC1
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: Hibernate Statistics
    Feb  5 10:43:27 hifi02s-Mac-Pro configd[13]: network configuration changed.
    Feb  5 10:43:27: --- last message repeated 1 time ---
    Feb  5 10:43:27 hifi02s-Mac-Pro defaults[3429]: \nThe domain/default pair of (com.apple.kexts.32bitonly, lastRan) does not exist
    Feb  5 10:43:30 hifi02s-Mac-Pro mDNSResponder[36]: RegisterInterface: Frequent transitions for interface en0 (FE80:0000:0000:0000:0225:00FF:FEF3:7959)
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3471]: com.acard.driver.ACard6280ATA    1.0.5    ACard6280ATA    /System/Library/Extensions/ACard6280ATA.kext    ACARD AEC-6280M ATA Driver 1.0.5    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3472]: com.acard.driver.ACard62xxM    2.0.6    ACard62xxM    /System/Library/Extensions/ACard62xxM.kext    ACARD AEC-62XX Driver V2.0.6    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3473]: com.acard.driver.ACard67162    2.0.3    ACard67162    /System/Library/Extensions/ACard67162.kext    2.0.3    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3474]: com.acard.driver.ACard671xSCSI    2.0.1    ACard671xSCSI    /System/Library/Extensions/ACard671xSCSI.kext    2.0.1    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3475]: com.acard.driver.ACard6885M    2.0.6    ACard6885M    /System/Library/Extensions/ACard6885M.kext    ACARD AEC-6885/95/96 Driver V2.0.6    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3476]: com.acard.driver.ACard68xxM    2.0.5    ACard68xxM    /System/Library/Extensions/ACard68xxM.kext    ACARD AEC-68XX Driver V 2.0.5    no    yes
    Feb  5 10:43:30 hifi02s-Mac-Pro syslog[3477]: com.jmicron.JMicronATA    1.0.0    JMicron JMB ATA Driver    /System/Library/Extensions/JMicronATA.kext    1.0.0, Copyright JMicron Technology    no    yes
    Feb  5 10:43:46 hifi02s-Mac-Pro ntpd[26]: time reset +0.703301 s
    Feb  5 10:43:51 hifi02s-Mac-Pro loginwindow[37]: no spins reported for this wake
    Feb  5 11:35:37 hifi02s-Mac-Pro SecurityAgent[3823]: system.privilege.admin|2012-02-05 11:35:37 +0200
    Feb  5 11:35:44 hifi02s-Mac-Pro authexec[3828]: executing /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app/Contents/Resources/AdobeUpdaterInstallMgr
    Feb  5 11:36:00 hifi02s-Mac-Pro hdiejectd[3837]: running
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: FSCopyObject -- err: 0, maxLevels: 0, whichInfo: 0000c000,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 dupeAction: replace, wantSpec: yes, wantName: yes,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 filterProcPtr: 0x0004e488, yourDataPtr: 0xb01029f8,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 newObjectRef: 0xb01028a0, newObjectSpec: 0x00000000,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 copyBufferSize: 256kB, isDirectory: yes, isLocal: yes,
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:                 isDropBox: no, PBHCopyFileSync supported: no
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 5
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Frameworks/adobe_caps .framework/Versions/A/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/AdobeSelfHealing.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/A/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 2
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Frameworks/InstallerResults.framework/Versions/Current/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/MacOS
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/MacOS
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 38
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/cs.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/da.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/de.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/English.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/es.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html/en_US
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/eulas/html/en_US
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 1
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fi.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/fr.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/hu.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/it.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ja.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj/MainMenu.nib
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:36:03 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9p
    Feb  5 11:36:04 hifi02s-Mac-Pro defaults[3861]: \nThe domain/default pair of (/Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/RegExList, 1) does not exist
    Feb  5 11:36:04 hifi02s-Mac-Pro authexec[3862]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:36:05 hifi02s-Mac-Pro authexec[3926]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:36:13 hifi02s-Mac-Pro hdiejectd[3837]: quitCheck: calling exit(0)
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  Error:  shmFSCopyObjectFailed in line 949 of file /Volumes/Bu
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ildDisk_mbs73/Acro_root_nsd/Common/SelfHealin
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: gSDK/Source/src/MoverCFMP.cp.
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHea
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ling Error:  Copy failed for:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/SelfHealFi
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: les/Library/Automator/Save As Adobe PDF.a
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ction
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHea
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ling Error:  shmFSCopyObjectFailed in line 94
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: 9 of file /Volumes/BuildDisk_mbs73/Acr
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: o_root_nsd/Common/SelfHealingSDK/Source/sr
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: c/MoverCFMP.cp.
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:   Copy failed for:
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/Ma
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: cOS/SelfHealFiles/Library/Autom
    Feb  5 11:36:21 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ator/Save As Adobe PDF.action
    Feb  5 11:36:21 hifi02s-Mac-Pro authexec[4464]: executing /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/InstallUpdates.sh
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing Error:  shmFSCopyObjectFailed in line 949 of file /
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Volumes/BuildDisk_mbs73/Acro_root_nsd/Common/SelfHealingSDK/Source/src/MoverCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: SelfHealFiles/Library/Automator/Save As Adobe PDF.action
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHealing Error:  shm
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: FSCopyObjectFailed in line 949 of file /Vo
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: lumes/BuildDisk_mbs73/Acro_root_ns
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: d/Common/SelfHealingSDK/Source/src/M
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: overCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  SelfHealing Error:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Contents/MacOS/SelfHealFi
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: les/Library/Automator/Save As A
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: dobe PDF.action
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Adobe SelfHe
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: aling Error:  shmFSCopyObjectFailed in line 949 of
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  file /Volumes/BuildDisk_mbs73/Acro
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: _root_nsd/Common/SelfHealingSDK/Sour
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ce/src/MoverCFMP.cp.
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Acrobat SelfHealing Error:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:  Copy failed for:
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: Content
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: s/MacOS/SelfHealFiles/Libra
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ry/Automator/Save As Adobe PD
    Feb  5 11:37:30 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: F.action
    Feb  5 11:37:30 hifi02s-Mac-Pro hdiejectd[6190]: running
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ko.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/nl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/no.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pl.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/pt.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ro.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/ru.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 4
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/sv.lproj/MainMenu.nib
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogInfoBulk: 3
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: ProcessFolderList -- Copying contents of
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Volumes/AcroProUpd910_all/Acrobat 9 Pro Patch.app/Contents/Resources/tr.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:         to
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]:     /Users/hifi02/Library/Caches/Adobe/Updater6/acrobat9pro-EFG/Acrobat 9 Pro Patch.app/Contents/Resources/tr.lproj
    Feb  5 11:37:32 hifi02s-Mac-Pro [0x0-0x16016]."com.Adobe.ESD.AdobeUpdaterApplication"[222]: CopyFolder -- actualObjects retrieved from FSGetCatalogIn

  • How can I avoid running out of memory when creating components dynamically

    Hello everyone,
    Recently, I am planning to design a web application. It will be used by all middle school teachers in a region to make examination papers and it must contain the following main functions.
    1)Generate test questions dynamically. For instance, a teacher who logs on the web application will only see a select one menu and a Next Quiz button. The former is used for determining the number of options for the current multiple/single choice question. The later is dedicated to creating appropriate input text elements according to the selected option number. That is to say, if the teacher selects 4 in the menu and presses the Next Quiz button, 5 input text form elements will appear. The first one is for the question to be asked such as "1.What is the biggest planet in the solar system?", the others are optional answers like a)Uranus. b) Saturn. c)Jupiter. d)Earch. Each answer stands for an input text elements. When the teacher fills in the fourth answer, another select one menu and Next Quiz button will emerge on the fly just under this answer, allowing the teacher to make the second question. The same thing repeats for the following questions.
    2)Undo and Redo. Whenever a teacher wants to roll back or redo what he has done, just press the Undo or[i] Redo button. In the previous example, if the teacher selects the third answer and presses the Delete button to drop this answer, it will delete both the literal string content[i] and the input text element, changing the answer d to c automatically. After that, he decides to get back the original answer c, Jupiter, he can just click the Undo button as if he hadn�ft made the deleting operation.
    3)Save the unfinished working in the client side. If a teacher has done half of his work, he can choose to press the Save button to store what he has done in his computer. The reason for doing so is simply to alleviate the burden of the server. Although all finished test papers must be saved in a database on the server, sometimes the unfinished papers could be dropped forever or could form the ultimate testing papers after several months. So if these papers keep in the server, it will waste the server computer�fs room. Next time the teacher can press the Restore button on the page to get the previously stored part of the test paper from his own computer and continue to finish the whole paper.
    4)Allow at least 1,000 teachers to make test papers at the same time. The maximum question number per examination paper is 60.
    Here are my two rough solutions,
    A.Using JSF.
    B.Using JavaScript and plain JSP[b] without JSF.
    The comparison of the two solutions:
    1)Both schemas can implement the first and the second requirements. In JSF page I could add a standard panelGird tag and use its binding attribute. In the backing bean, the method specified by the binding attribute is responsible for generating HtmlInput objects and adding them to the HtmlPanelGird object on the fly. Every HtmlInput object is corresponding to a question subject or an optional answer. The method is called by an actionListener, which is registered in the Next Quiz commandButton, triggering by the clicking on this button in the client side. Using JSF can also be prone to managing the HtmlInput objects, e.g. panelGird.getChildren().add(HtmlInput) and panelGird.getChildren().remove(HtmlInput) respond to the undoing operation of deleting an optional answer and the redoing operation of the deleting action respectively. I know JavaScript can also achieve these goals. It could be more complex since I don�ft know well about JavaScript.
    2)I can not find a way to meet the third demand right now. I am eager to know your suggestion.
    3)Using JSF, I think, can�ft allow 1,000 teachers to do their own papers at the same time. Because in this scenario, suppose each questionnaire having 60 questions and 4 answers per question, there will be approximately 300,000 HtmlInput objects (1,000X60X(4+1)) creating on the server side. The server must run out of memory undoubtedly. To make things better, we can use a custom component which can be rendered as a whole question including its all optional answers. That is to say, a new custom component on the server side stands for a whole question on the client side. Even so, about 60,000(1,000X60) this type of custom components will be created progressively and dynamically, plus other UISelectOne and UICommand objects, it also can�ft afford for most servers. Do I have to use JavaScript to avoid occupying the server's memory in this way? If so, I have to go back and use JavaScript and plain JSP without JSF.
    Thank you in advance!
    Best Regards, Ailsa
    2007/5/4

    Thank you for your quick response, BalusC. I really appreciate your answer.
    Yes, you are right. If I manually code the same amount of those components in the JSF pages instead of generating them dynamically, the server will still run out of memory. That is to say, JSF pages might not accommodate a great deal of concurrent visiting. If I upgrade the server to just allow 1,000 teachers making their own test papers at the same time, but when over 2,000 students take the same questionnaire simultaneously, the server will need another upgrading. So I have to do what you have told me, using JS+DOM instead of upgrading the server endlessly.
    Best Regards, Ailsa

  • Out of Memory when opening page setup

    I am getting an "Out of Memory" error when opening the page setup window.  I am unable to continue as Crystal is locked up.  Has any one seen this behavior before?  I am running Crystal Reports 2008 Service Pack 0 Version: 12.0.0.683.  This is running in a terminal server environment.

    Hi Bruce,
    Please uninstall CRXI from the machine by following the Note as per below:
    Before getting started, uninstall Crystal Reports XI by launching the Setup.exe file from the installation CD or by using the 'Add/Remove Programs' command. If either of these methods fails to remove all Crystal Reports directories, files and registry keys, then continue with the resolution of this article.
    ==========
    WARNING:
    This resolution can be applied if Crystal Reports XI is the only software installed on the computer that uses the Business Objects directories, files and registry keys.
    For example, Crystal Analysis, Crystal Enterprise and BusinessObjects Enterprise XI are applications that may share the same directories, files and registry keys.
    Removing these directories, files and registry keys may cause other software to function incorrectly.
    ==========
    1. To manually uninstall Crystal Reports XI, delete the following directories:
    u2022 C:\Program Files\Common Files\Business Objects\3.0
    u2022 C:\Program Files\Business Objects
    ====================
    NOTE:
    Do not remove the directory C:\Program Files\Common Files\Business Objects\3.0 if you have BusinessObjects Enterprise XI or Crystal Reports Server XI installed. These files are shared by both applications and removal of these files will cause Business ObjectsEnterprise XI and Crystal Reports Server XI to function incorrectly.
    ====================
    2. Delete the following registry keys:
    ====================
    WARNING:
    The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk.
    HELP:
    For information on how to edit the registry key, view the 'Changing Keys And Values' online Help topic in the Registry Editor (Regedit.exe).
    RECOMMENDATION:
    It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    ====================
    u2022 HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\
    u2022 HKEY_CURRENT_USER\Software\Business Objects\Suite 11.0\Crystal Reports
    u2022 HKEY_USERS\S-#-#-##-...-####\Software\Business Objects\Suite 11.0\Crystal Reports
    (The number signs (#) represent a series of numbers that are different on each computer.)
    ====================
    NOTE:
    After making changes to the registry, restart the affected service or application as required.
    ====================
    For CR2008 please install SP0 from
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    I hope this helps.
    Shraddha

  • I run out of memory when trying to run a query

    I need help with a query. I am trying to extract Total Qty Sold ( and eventually get this data by month), but when I would run the query asking for QTY I get "System Out Of Memory". I removed that party of the query asking for Qty and posted what I came up with below. Any Help is greatly appreciated.
    SELECT T0.[ItemCode], T0.[ItemName], T1.[FirmName], T0.[CardCode], T0.[SuppCatNum], T2.[ItmsGrpNam], T0.[U_U_CMG_PROGRAM], T0.[U_U_CMG_CATEG], T0.[U_CMG_STATUS], T0.[U_CMG_STORES], T0.[U_CMG_COLOR], T0.[U_CMG_LOCAT], T0.[MinLevel], T0.[MinOrdrQty]
    FROM OITM T0  INNER JOIN OMRC T1 ON T0.FirmCode = T1.FirmCode INNER JOIN OITB T2 ON T0.ItmsGrpCod = T2.ItmsGrpCod

    Hi,
    Welcome you post on the forum.
    Try this fist:
    SELECT T0.ItemCode, T0.ItemName, T1.FirmName, T0.CardCode, T0.SuppCatNum, T2.ItmsGrpNam, T0.MinLevel, T0.MinOrdrQty
    FROM OITM T0
    INNER JOIN OMRC T1 ON T0.FirmCode = T1.FirmCode
    INNER JOIN OITB T2 ON T0.ItmsGrpCod = T2.ItmsGrpCod
    WHERE T0.ItemCode Like '[%0\]%'
    Thanks,
    Gordon

  • -2147024882 Ran out of memory when trying to use automation open

    Hello,
    I am currently trying to use labview to insert variables into a label template for a brady label printer.
    When I run the VI, the load screen appears for labelview 9, then an error is thrown by the automation open command, saying that the system has run out of memory.
    I do not understand this, as the application is only told to open once, and is not in a loop or anything.
    its driving me absolutely mad, so any help would be greatly appreciated
    Here is the output from the error out:
    "Not enough storage is available to complete this operation. in TEKLYNX Open.vi->TEKLYNX Example.vi"
    (note: TEKLYNX Example.vi is the main VI, all sub vi's will be attached as well)
    Attachments:
    TEKLYNX Example.vi ‏49 KB
    TEKLYNX Open.vi ‏16 KB
    TEKLYNX Document Variables.vi ‏73 KB

    Ran out of attachments, so here are the rest of the sub VI's
    Attachments:
    TEKLYNX Document Print.vi ‏28 KB
    TEKLYNX Document Load.vi ‏16 KB
    TEKLYNX Document Close.vi ‏31 KB

  • Out of Memory when trying to apply redaction to a document, how can this be fixed?

    I have a user that is trying to redact a document, and when she tries to apply the redaction, she is getting Out of Memory error, any thoughts on this? Is it a computer memory issue or something in the program that I can dump something to make room?  Thanks.
    Yvonne Shaw, CISR
    Technology Operations Manager
    Brunswick Companies

    Hey,
    Please mention the configuration of your system specially CPU and RAM.
    This error usually occurs, if you run too many memory-extensive applications simultaneously. So try performing those redaction tasks after closing some of the background processes/applications
    Hope that helps.
    Regards,
    Rahul

  • IPhone ran out of memory when recording video...can it be saved?

    I was recording a video of my friend getting engaged and my iPhone 4S ran out of memory and stopped recording. Afterwards the video couldn't be played on my iPhone and I am encountering the same problem when trying to play the file on my laptop.
    I've tried a few different MOV and MP4 fix websites, but nothing seems to work. The file size is 377MB so I know something is there, it just can't play.
    Is there some sort of code that's written into the video file at the end that didn't happen because my iPhone ran out of memory?
    Any help to save this very important memory would be appreciated.
    Thanks
    -Justin

    Now this is very strange. I uploaded the video file to my Dropbox and now it's playing through the app.
    I also sent a link and it's playing via that as well.
    But I DL the file from Dropbox and try to play it, no dice.
    Strangest thing I've ever seen...but at least it's working!

  • Out of memory when big files are being sent to N80...

    i downloaded a few big mp3 files (15-20mb) onto my 128 card i got with the phone, as soon as my new 2gb phone came, i didnt have a reader for my pc and my wife said she wanted these songs on her S.E.810i. i sent them over to her using bluetooth (with no probs whatsoever) in the hope i could send them back to my phone with my new 2gb card in. when i try to send them back from the 810i with bluetooth, i get out of memory message but i have next to nothing on phone mem - no vid/images/sound etc. can anyone tell me if i would be right in saying that when i download from my home network the files are temp stored on mem card until you confirm where u want to save whereas bluetooth tries to store on phone mem temporarily first? hope u got all that! if this is the case, is there anyway i can change this? if anyone is still with me, and knows what i am talking about, please enlighten me!! its driving me mad!
    thanks

    1. All messages will be stored/moved to the memory card.
    2. I doubt it. The phone will still save files received via bluetooth in a messaging folder. If this folder is stored on the phone memory there will never be enough space to receive really big files. dmz

Maybe you are looking for

  • SXMB_MONI does not show payload after upgrade to SP15

    Hi there, We have installed SP15 in our system, everything seems to be working OK with exception of the SXMB_MONI which now does not show the Payload in the SOAP output/response. Does anyone know if this is a know bug/functionality of SP15? Thanks, R

  • Validate that a string is composed from a defined character set

    Hi experts, I need to validate that a string enetered as parameter is composed of the following character set : 26 alphabets (both in capital or lower case), a “’” (like O’Brien), a blank between characters like (Mc Donald). So the total valid charac

  • Issues with Importing 'AVIs' into CS3

    I have CS3 and am trying to import AVIs, but am getting no audio or no video, however it seems to be a bit unpredictable. On one computer one file will play with both on the other I get either audio or video but not both. Have done a lot of reading t

  • Iphone 4 screen blinking and changes color.

    Hi. When i woke up this morning, my iphone's screen is blinking and the color is distorted. No history of fall, any contact to water or whatsoever. The phone works well, internet, calls, apps, only the screen. However, when i took a screen shot and u

  • WRT120N - repeated loss of connection requiring reboot

    I have an old WRT54GL that has been really good over the years but it was becoming problematic and I decided it was time to get an N router.  After a visit to the local PC shop I picked up the WRT120N and brought it home then proceeded to set it up.