How to Mosaic 167,958 georasters?

Hello,
I have a table named RASTER that contains 167,958 georasters. I have a table named RR_RDT that contains the blocks for the georasters. There are 65,284 georasters that have "content" and the remaining georasters are blanks that were generated to overcome the limitations of the MOSAIC operation, specifically the need for a rectangular boundary.
All the georasters are valid, have the same SRID, are non-overlapping and have had spatial extents generated. I have created a table named LL_ORTHO_06 and MLL_RDT to contain the results of the MOSAIC operation. I have attempted to use the sdo_geor.mosaic( ) command and run into an ORA: 04030 error, "out of process memory, cannot allocate 296 bytes'.
My inquiry to the community is has anyone been successful in creating a mosaic of 100,000 plus georaster objects in a single pass, or have you had to incrementally generate a mosaic.
I am tasked with creating a county wide mosaic of Orthoimagery that has pyramids and serving that data out via a WMS service using Mapviewer.
Have a great day,
Jerry Cox
GIS Analyst
Santa Clara Valley Water District
San Jose, CA

Hello,
In response to your inquiry for more details I submit the following:
1. The dbms version is 10.2.0.1.0 with Patch Set 2, 10.2.3.0 and Interim Patches # 5740875 and # 6812783.
2. The server has an Intel Xeon CPU, 4 Gb Ram and is running MS Server 2003, Service Pack 2
3. The georasters are contained in a single table named RASTER and an RDT table named RR_RDT
4. The mosaic will be contained in a single table named LL_ORTHO_06 and an RDT table named MLL_RDT
5. The georaster tiles/blocks are not compressed.
6. The mosaic will not be compressed.
7. The source of the georasters are 65,283 TIFF files, each being 11.768 MB in size, and georeferenced with a .tfw file.
8. The blocksize of the TIFF georasters is 256,256,3 and the interleaving is BIP.
9. The blocksize of the 102,674 Blank georasters is 256,256,3 and the interleaving is BIP.
10. All georasters are SRID 2207, georeferenced, non-overlapping and no gaps exist between any of the blocks.
11. The DBA has "tuned" the SGA, PGA and other memory parameters on the database server
12. The pl/sql used to create and populate the mosaic is:
-- Create the LL_Ortho_06 table
CREATE TABLE LL_ORTHO_06(GEORID NUMBER(15,0) NOT NULL, GEORASTER SDO_GEORASTER)
TABLESPACE MOSAICK_DATA
PCTFREE 0;
-- Create trigger
BEGIN
sdo_geor_utl.createDMLTrigger('LL_ORTHO_06', 'GEORASTER');
END;
-- Create LL_Ortho_06 object RDT
CREATE TABLE MLL_RDT OF SDO_RASTER
(PRIMARY KEY (rasterID, pyramidLevel, bandBlockNumber, rowBlockNumber, columnBlockNumber))
TABLESPACE MOSAICK_DATA NOLOGGING
LOB(rasterBlock) STORE AS lobsegmll
(TABLESPACE MOSAICK_DATA
CHUNK 8192
CACHE READS
NOLOGGING
PCTVERSION 0
STORAGE (PCTINCREASE 0)
and finally the pl/sql block that is failing to perform as expected is:
DECLARE
grobj sdo_georaster;
BEGIN
DBMS_OUTPUT.PUT_LINE('Mosaic Begin Time'||to_char(sysdate,'HH:MM:SS'));
INSERT INTO LL_ORTHO_06(georid,georaster) VALUES (1, sdo_geor.init('MLL_RDT',1)) RETURNING georaster INTO grobj;
sdo_geor.mosaic('RASTER','GEORASTER',grobj,'blocksize=(256,256,3)');
UPDATE LL_ORTHO_06 SET georaster = grobj WHERE georid = 1;
COMMIT;
DBMS_OUTPUT.PUT_LINE('Mosaic End Time'||to_char(sysdate,'HH:MM:SS'));
END;
The above code was used initially to create a "proof of concept" mosaic of 50 blank and non-blank georasters, which gave me the impression the same could be done with any number of georasters.
Thanks for your input,
Jerry Cox
GIS Analyst
Santa Clara Valley Water District
San Jose, CA

Similar Messages

  • Raster data

    how to view the raster data from Arcsde to oracle spatial .please give suitable example

    As Ivan advised, you might want to post this question to the ESRI support and forums.
    As far as I know, GeoRaster is not supported in ArcSDE 9.1. However, GeoRaster has been supported by ESRI since ArcGIS 9.2.
    With ArcGIS 9.1 or old versions, you might want to use Oracle's WMS to serve GeoRaster data to ArcGIS clients. There is an example posted here:
    How to Mosaic 167,958 georasters?
    regards,
    jeffrey

  • Ora-13497 during SDO_GEOR.MOSAIC

    we are testing sdo_geor.mosaic on 2 georasters but we get this error:
    SQL> DECLARE
    2 GR SDO_GEORASTER;
    3 BEGIN
    4 GR := SDO_GEOR.INIT('MO');
    5 SDO_GEOR.MOSAIC('GEORASTER_TABLE', 'GEORASTER', GR, NULL);
    6 INSERT INTO MO (GEORASTER) VALUES (GR);
    7 COMMIT;
    8 END;
    9 /
    DECLARE
    ERROR at line 1:
    ORA-13497: unable to determine the owner of MO
    ORA-06512: at "MDSYS.SDO_GEOR_INT", line 511
    ORA-06512: at "MDSYS.SDO_GEOR_INT", line 1225
    ORA-06512: at "MDSYS.SDO_GEOR", line 966
    ORA-06512: at line 5
    The georasters are valid, the metadata of 1 of them:
    <georasterMetadata xmlns="http://xmlns.oracle.com/spatial/georaster">
    <objectInfo>
    <rasterType>21001</rasterType>
    <isBlank>false</isBlank>
    <defaultRed>1</defaultRed>
    <defaultGreen>2</defaultGreen>
    <defaultBlue>3</defaultBlue>
    </objectInfo>
    <rasterInfo>
    <cellRepresentation>UNDEFINED</cellRepresentation>
    <cellDepth>8BIT_U</cellDepth>
    <totalDimensions>3</totalDimensions>
    <dimensionSize type="ROW">
    <size>5000</size>
    </dimensionSize>
    <dimensionSize type="COLUMN">
    <size>5000</size>
    </dimensionSize>
    <dimensionSize type="BAND">
    <size>3</size>
    </dimensionSize>
    <ULTCoordinate>
    <row>0</row>
    <column>0</column>
    </ULTCoordinate>
    <blocking>
    <type>REGULAR</type>
    <totalRowBlocks>20</totalRowBlocks>
    <totalColumnBlocks>20</totalColumnBlocks>
    <rowBlockSize>256</rowBlockSize>
    <columnBlockSize>256</columnBlockSize>
    </blocking>
    <interleaving>BIP</interleaving>
    <pyramid>
    <type>NONE</type>
    </pyramid>
    <compression>
    <type>NONE</type>
    </compression>
    </rasterInfo>
    <spatialReferenceInfo>
    <isReferenced>true</isReferenced>
    <isRectified>true</isRectified>
    <SRID>262148</SRID>
    <spatialResolution dimensionType="X">
    <resolution>0.2</resolution>
    </spatialResolution>
    <spatialResolution dimensionType="Y">
    <resolution>0.2</resolution>
    </spatialResolution>
    <modelCoordinateLocation>CENTER</modelCoordinateLocation>
    <modelType>FunctionalFitting</modelType>
    <polynomialModel rowOff="0" columnOff="0" xOff="0" yOff="0" zOff="0" rowScale="1" columnScale="1" xScale="1" yScale="1" zScale="1">
    <pPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>1469999.5 0 -4.999999999999999</polynomialCoefficients>
    </pPolynomial>
    <qPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </qPolynomial>
    <rPolynomial pType="1" nVars="2" order="1" nCoefficients="3">
    <polynomialCoefficients>-805000.5 4.999999999999999 0</polynomialCoefficients>
    </rPolynomial>
    <sPolynomial pType="1" nVars="0" order="0" nCoefficients="1">
    <polynomialCoefficients>1</polynomialCoefficients>
    </sPolynomial>
    </polynomialModel>
    </spatialReferenceInfo>
    <layerInfo>
    <layerDimension>BAND</layerDimension>
    </layerInfo>
    </georasterMetadata>
    we are using Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
    So, is there any solution?
    Thanks in advance,
    Michael.
    Edited by: user9529492 on Oct 8, 2008 5:26 PM

    Michael,
    1. have you properly created the RDT table, called "MO"? if not yet, please follow section 3.1 of the GeoRaster guide to do it first.
    2. In section 3.2 of the GeoRaster guide, "you must register an initialized GeoRaster object in the GeoRaster system views by inserting the GeoRaster object into a GeoRaster table, and do this before you perform any other operations on the GeoRaster object. Any GeoRaster operations that need to manipulate the raster data table raise an exception if the source or target GeoRaster object is not registered." In other words, you need to INSERT your GR into a physical georaster table FIRST, then retrieve it back into your plsql block, then do sdo_geor.mosaic, then update that GR object in the table. For this, please follow the sample code in the sdo_geor.mosaic in chapter 4.
    hope this helps,
    Jeffrey

  • Can't configure the screensaver anymore

    Hi! Thank you for reading my post and trying to help me, it is the first time i use apple discussions.
    Here is the problem. I have installed leopard a few weeks ago and trying to configure my screensaver it blocked the application in "system preference" ( i don't know if it is called the same in english, i am from france). In fact i tried to see how the "mosaic style" runs (the third little icon in the middle of the window allows you to do that) and while generating the overview of the mosaic style screensaver, the application close and the computer tells me there have been a troubleshoot. Each time i want to open the screensaver application the overview tries to generate again and the application close with troubleshooting. I can't anymore access the screensaver application and change anything.
    I don't know if you can help me but thanks anyway. Sorry for the mistakes i could have done in my english.

    Doug, i've been following this problem in several threads since i have been havin the same issue. when you say delete "<Macintosh_HD>/Users/<YourUsersShortName>/Library/Preferences/ByHost/com.apple .screensaver.XXXXXXXXXXXX.plist", do you mean delete ALL of the plist's that fall into that category? in other words, these are the following files that i have. so do they all go, or just the first numbered ones?
    com.apple.screensaver.000d935a4e24.plist
    com.apple.screensaver.0019e33e2ca7.plist
    com.apple.screensaver.Abstract.000d935a4e24.plist
    com.apple.screensaver.Abstract.0019e33e2ca7.plist
    com.apple.screensaver.Beach.000d935a4e24.plist
    com.apple.screensaver.Beach.0019e33e2ca7.plist
    com.apple.screensaver.Cosmos.000d935a4e24.plist
    com.apple.screensaver.Cosmos.0019e33e2ca7.plist
    com.apple.screensaver.Forest.000d935a4e24.plist
    com.apple.screensaver.Forest.0019e33e2ca7.plist
    com.apple.screensaver.iTunesArtwork.0019e33e2ca7.plist
    com.apple.screensaver.plist
    com.apple.screensaver.slideshow.000d935a4e24.plist
    com.apple.screensaver.slideshow.0019e33e2ca7.plist
    com.apple.screensaver.slideshow.plist
    hope you're still subscribed to this topic!
    kevin
    (btw, it's has never worked on my 2.8 Ghz imac, but works fine on my macbook. i really want to see it on that big screen, though!)

  • How to make "disco mosaic" style in Illustrator SC5?

    I am trying to make image similar to these:
    http://www.shutterstock.com/pic-55691413/stock-vector-business-mosaic.html
    http://www.shutterstock.com/pic-57969835/stock-vector-mosaic-background-or-business-card-e ps-vector.html
    I know hot:
    1. Make the squares (use the Rectangle Tool), then I copy + paste it and try to position the new regtangle. And then I repeat this until I have enough squares.
    2. Then I color the squares with different colors.
    But is there esier way? It is ahrd to get the squares sometimes in to right position....
    And also, how can I get that curvey line/feel to my image?
    http://www.shutterstock.com/pic-55691413/stock-vector-business-mosaic.html

    For the warp tool, look in Effect -> Warp -> Bulge (or whatever type of warp you'd like).
    Once you've applied the effect, go to Object -> Expand Appearance and you can color the squares as you see fit.
    Adam

  • Since I joined creative cloud, I have not been able to sync. Why the difference? Worked good during initial trial. Also I had installed the Mosaic app before Lightroom mobile came out and I cannot seem to get rid of it. How can I get mosaic out? I have ca

    Since I joined creative cloud, I have not been able to sync. Why the difference? Worked good during initial trial.
    Also I had installed the Mosaic app for ipad before Lightroom mobile came out and I cannot seem to get rid of it. How can I get mosaic out? I have cancelled, I have deleted, I have looked through the files for visible remnants.

    The sync count is 60 and static. The total number synced so far is 500+. None have been synced from the ipad except for corrections made there on those already synced.
    I have deleted the Mosaic app from all machines and checked the library folder and have contacted the Mosaic tech support and they have discontinued my subscription. I still get mosaic messages on initiating Lightroom and sometimes at closing.
    I have not tried to sync fewer yet, but some catalogs that I have tried are smaller numbers. Initially, it did well on good connections. Nothing works on my home connections over satellite.

  • How to do mosaic for different two georaster object?

    I have done mosaic for single georaster object, But I can't do it for different two georaster object. Oracle returned the error: ORA-13419.
    My PL/SQL code is:
    DECLARE
    gr sdo_georaster;
    BEGIN
    INSERT INTO georaster_table (georid, georaster) VALUES (1, sdo_geor.init('rdt_1')) RETURNING georaster INTO gr;
    sdo_geor.mosaic('city_images', 'image', gr, null);
    UPDATE georaster_table SET georaster=gr WHERE georid=1;
    END;
    There are two rows in city_images.I want to know how to set these data?

    Will,
    in general, all the images should be georeferenced. otherwise it would not make too much sense to do mosaic. so, you might want to load real image data from either georeferenced GeoTIFF files or TIFF plus TFW files.
    but GeoRaster doesn't require the images must be georeferenced. In GeoRaster, any image can have a different ULT coordinate, which doesn't have to be (0,0). This is a special feature of GeoRaster, in considering most formats always treat the upper-left corner pixel of an image as the origin (0,0) only. So in the cell space, non-georeferenced images can be co-located in different areas and so they can be mosaicked as well. specifically, you loaded two GIF files. their current ULT coordinates in georaster must be (0,0). If you setup the UTL coordinates of them differently and properly, then you shall be able to do the mosaicking. the functions you can use are getULTCoordinate and setULTCoordinate.
    hope this helps
    Jeffrey

  • How to install Mosaic?

    Hi there!
    I'm starting my studies on LiveCycle and have been dealing with LC Workbench, Output and PDF Generator, as well as Designer and Administration Console and other server and user tools.
    Now I'd like to take a look at Mosaic and what types of solutions I can build with it.
    I've just downloaded a LC Mosaic trial version but have no idea how to install it. I already have JBoss, MySQL and some LC modules installed - will I need other server software so I can install Mosaic?
    Please, help!
    Marcos, Brazil.

    Marcos,
    On the same page where you download Mosaic, there is a link to the Installation instructions.
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=livecycle
    Basically to install all you do is unzip mosaic onto your hard drive.  It comes with a Standalone server so there are no other dependencies. 
    Once you unzip, follow the directions to start the DB and the Server.  Also, in the Bin|Release folder you will find an Air app.  This will give you easy access to running the Mosaic Samples.
    Once you have everything running and the samples working you can look at the Creating Your First Mosaic application doc.  Plan on dedicating some time in order to get acclimated.
    Let me know if you run into any issues.
    Al

  • One day the screen turned into flakes and all the icons disappeared. i rebooted but a few icons apppeared only to disappear again into a mosaic like painting. how do i fix this?

    One day the screen turned into snowflakes so i rebooted then the icons reappeared then became a mosaic like artwork so i rebooted and now my screen is blank. how do I fix this?

    Restart your computer while holding down left mouse key. That will eject the CD and your Mac will start as normal.
    Lupunus

  • How can I print several photos on the same 66*4 sheet in mosaic view ? iPhoto9.4.3have

    I can't manage to print more than one photo in mosaic view ? Anyone can help me ? Anticipated thanks.  JEHAN1

    If you have Pages (from the iWork suite of applications) you can create a mosaic of photos on any sized layout by adding the photos to a page of that size, resizing the photos and placing them where you want. 
    Or use a 3rd party editor that supports layers:
    Some Image Editors That Support layers:
    Photoshop Elements 11 for Mac - $79
    Rainbow Painter - $30
    Imagerie - $38
    Acorn - $50
    Pixelmator - $60 
    Seashore - Free
    Portraits and Prints - Free
    GIMP for Mac - Free
    Xee 2.1 - free
    OT

  • How to create Motion Video mosaic fade to still

    Does anyone of guidance on how to take multiple stills and video and use that to show the creation of a mosic.  I have seen this in several examples, but my searches come up short.
    Thank you.

    Also:
    Be sure to set the "indeterminate Media Timebase" to the intended
    frame rate of your image sequences before importing to Premiere.
    SteveHoeg gives a complete explanation in this thread:
    http://forums.adobe.com/message/4585083#4585083

  • How do I get started creating an app that retrieves photos from Flickr and creates a mosaic?

    I'm working to develop a wallpaper application for desktops, tablets & smartphones. What I need to do is the following:
    1) Get a little user input (this will be a web or app front end).
    2) Retrieve N (50-200) random photos from a particular Flickr set (handled on a Mac server interfacing with Flickr).
    3) The hard part... assemble the photos into a mosaic that matches the dimensions of the client application. Again, this is done on a Mac server, using either available Mac software & AppleScript or standard Unix tools available or installable on a Mac server.
    4) Send the output photo back to the web or app client.
    Steps 1 & 4 are where the user will interface, and I figure I'll get to that part later. What I'd like to do is start figuring out what I need to complete tasks 2 & 3. I'll probably poke around Flickr for task 2 help. Task 3 is purely handled on the Mac server. I have XCode installed and experience with HTML and writing very simple software in Perl, Fortran & a little AppleScript, but zero experience in XCode.
    Thanks for any advice.

    To stop the Cannon software from doing the import read the Cannon software manual
    To have iPhoto do it go to the iPhoto preferences and set the preference for action when a camera is connected to launch iPhoto
    LN

  • How can I remove Parallels from my Macbook completely?

    My MBP has been booting up very slowly, and I checked Console to see what might be causing it. I saw that a lot of the registered entries were related to Parallels, so I decided to unninstall it, since I also read that many people felt that their laptop was booting up faster after removing it.
    The problem is that, even after unninstalling it, the boot time is still very long! I checked Console again, and the problem is no longer Parallels components loading, but the failing of them loading. I see stuff like:
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    and I believe Parallels is slowing down the boot time even after it's been removed. I've already removed all of its components, I don't know what else to do!
    I've also deleted other apps that were on Login Items.
    Could you guys please give me tips on how I can improve the boot time?
    I'm posting below what I got from Console:
    4/24/14 18:45:42.000 bootlog[0]: BOOT_TIME 1398375942 0
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 syslogd[21]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    4/24/14 18:46:14.000 kernel[0]: Longterm timer threshold: 1000 ms
    4/24/14 18:46:14.000 kernel[0]: PMAP: PCID enabled
    4/24/14 18:46:14.000 kernel[0]: Darwin Kernel Version 13.1.0: Thu Jan 16 19:40:37 PST 2014; root:xnu-2422.90.20~2/RELEASE_X86_64
    4/24/14 18:46:14.000 kernel[0]: vm_page_bootstrap: 972582 free pages and 67802 wired pages
    4/24/14 18:46:14.000 kernel[0]: kext submap [0xffffff7f807a6000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a6000]
    4/24/14 18:46:14.000 kernel[0]: zone leak detection enabled
    4/24/14 18:46:14.000 kernel[0]: "vm_compressor_mode" is 4
    4/24/14 18:46:14.000 kernel[0]: standard timeslicing quantum is 10000 us
    4/24/14 18:46:14.000 kernel[0]: standard background quantum is 2500 us
    4/24/14 18:46:14.000 kernel[0]: mig_table_max_displ = 74
    4/24/14 18:46:14.000 kernel[0]: TSC Deadline Timer supported and enabled
    4/24/14 18:46:14.000 kernel[0]: "name" not a kext
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Sandbox
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for Quarantine
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    4/24/14 18:46:14.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    4/24/14 18:46:14.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    4/24/14 18:46:14.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    4/24/14 18:46:14.000 kernel[0]: The Regents of the University of California. All rights reserved.
    4/24/14 18:46:14.000 kernel[0]: MAC Framework successfully initialized
    4/24/14 18:46:14.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    4/24/14 18:46:14.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    4/24/14 18:46:14.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    4/24/14 18:46:14.000 kernel[0]: ACPI: sleep states S3 S4 S5
    4/24/14 18:46:14.000 kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration begin ]
    4/24/14 18:46:14.000 kernel[0]: console relocated to 0xf80000000
    4/24/14 18:46:14.000 kernel[0]: [ PCI configuration end, bridges 12, devices 16 ]
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    4/24/14 18:46:14.000 kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    4/24/14 18:46:14.000 kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    4/24/14 18:46:14.000 kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    4/24/14 18:46:14.000 kernel[0]: BTCOEXIST off
    4/24/14 18:46:14.000 kernel[0]: BRCM tunables:
    4/24/14 18:46:14.000 kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    4/24/14 18:46:14.000 kernel[0]: rooting via boot-uuid from /chosen: F2B1CE87-7935-307F-B2ED-E6DF49C1DE99
    4/24/14 18:46:14.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    4/24/14 18:46:14.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    4/24/14 18:46:14.000 kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffeeac312; max speed s800.
    4/24/14 18:46:14.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    4/24/14 18:46:14.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    4/24/14 18:46:14.000 kernel[0]: BSD root: disk0s2, major 1, minor 2
    4/24/14 18:46:14.000 kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    4/24/14 18:46:14.000 kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    4/24/14 18:46:14.000 kernel[0]: hfs: mounted Macintosh HD on device root_device
    4/24/14 18:46:14.000 kernel[0]: Waiting for DSMOS...
    4/24/14 18:46:14.000 kernel[0]: VM Swap Subsystem is ON
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** launchd[1] has started up. ***
    4/24/14 18:45:46.118 com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    4/24/14 18:45:59.937 com.apple.launchd[1]: (com.parallels.desktop.launchdaemon) Unknown key for boolean: HopefullyExitsFirst
    4/24/14 18:46:11.165 hidd[45]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    4/24/14 18:46:11.167 hidd[45]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    4/24/14 18:46:13.516 kdc[42]: krb5_kdc_set_dbinfo: failed to create root node: /Local/Default
    4/24/14 18:46:13.542 Parallels[80]: Unloading kernel extension prl_netbridge.kext
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc[42]) Exited with code: 1
    4/24/14 18:46:14.210 com.apple.launchd[1]: (com.apple.Kerberos.kdc) Throttling respawn: Will start in 1 seconds
    4/24/14 18:46:14.423 com.apple.SecurityServer[15]: Session 100000 created
    4/24/14 18:46:14.426 com.apple.usbmuxd[19]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    4/24/14 18:46:14.467 configd[56]: network changed.
    4/24/14 18:46:14.490 configd[56]: setting hostname to "MacBook-Pro-de-Luis-4.local"
    4/24/14 18:46:14.501 Parallels[95]: Unloading kernel extension prl_vnic.kext
    4/24/14 18:46:14.583 Parallels[105]: Unloading kernel extension prl_usb_connect.kext
    4/24/14 18:46:14.722 Parallels[114]: Unloading kernel extension prl_hid_hook.kext
    4/24/14 18:46:14.820 Parallels[123]: Unloading kernel extension prl_hypervisor.kext
    4/24/14 18:46:14.887 Parallels[132]: Loading kernel extension prl_usb_connect.kext
    4/24/14 18:46:15.219 kdc[137]: label: default
    4/24/14 18:46:15.219 kdc[137]:     dbname: od:/Local/Default
    4/24/14 18:46:15.219 kdc[137]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:15.219 kdc[137]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:15.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    4/24/14 18:46:15.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    4/24/14 18:46:17.000 kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    4/24/14 18:46:23.506 stackshot[23]: Timed out waiting for IOKit to finish matching.
    4/24/14 18:46:27.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:28.630 com.apple.SecurityServer[15]: Entering service
    4/24/14 18:46:28.750 UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:28.757 digest-service[72]: label: default
    4/24/14 18:46:28.757 digest-service[72]:     dbname: od:/Local/Default
    4/24/14 18:46:28.757 digest-service[72]:     mkey_file: /var/db/krb5kdc/m-key
    4/24/14 18:46:28.757 digest-service[72]:     acl_file: /var/db/krb5kdc/kadmind.acl
    4/24/14 18:46:28.760 digest-service[72]: digest-request: uid=0
    4/24/14 18:46:28.762 UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    4/24/14 18:46:28.771 awacsd[59]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    4/24/14 18:46:28.779 awacsd[59]: InnerStore CopyAllZones: no info in Dynamic Store
    4/24/14 18:46:28.812 digest-service[72]: digest-request: netr probe 0
    4/24/14 18:46:28.813 digest-service[72]: digest-request: init request
    4/24/14 18:46:28.823 mDNSResponder[35]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    4/24/14 18:46:28.826 digest-service[72]: digest-request: init return domain: BUILTIN server: MACBOOK-PRO-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:46:29.017 airportd[63]: airportdProcessDLILEvent: en1 attached (up)
    4/24/14 18:46:29.000 kernel[0]: createVirtIf(): ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: in func createVirtualInterface ifRole = 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    4/24/14 18:46:29.000 kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    4/24/14 18:46:29.000 kernel[0]: Created virtif 0xffffff801050d000 p2p0
    4/24/14 18:46:29.104 locationd[40]: NBB-Could not get UDID for stable refill timing, falling back on random
    4/24/14 18:46:29.218 locationd[40]: Location icon should now be in state 'Inactive'
    4/24/14 18:46:29.864 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:30.011 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.012 mdmclient[36]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:46:31.344 kdc[137]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    4/24/14 18:46:31.348 systemkeychain[142]: done file: /var/run/systemkeychaincheck.done
    4/24/14 18:46:31.354 configd[56]: network changed: DNS*
    4/24/14 18:46:31.360 configd[56]: network changed: DNS*
    4/24/14 18:46:31.361 mDNSResponder[35]: D2D_IPC: Loaded
    4/24/14 18:46:31.361 mDNSResponder[35]: D2DInitialize succeeded
    4/24/14 18:46:31.366 mDNSResponder[35]:   4: Listening for incoming Unix Domain Socket client requests
    4/24/14 18:46:31.367 mDNSResponder[35]: Adding registration domain 291933891.members.btmm.icloud.com.
    4/24/14 18:46:31.416 networkd[165]: networkd.165 built Aug 24 2013 22:08:46
    4/24/14 18:46:31.436 awacsd[59]: Configuring lazy AWACS client: 291933891.p04.members.btmm.icloud.com.
    4/24/14 18:46:31.450 awacsd[59]: KV HTTP 0
    4/24/14 18:46:31.475 kdc[137]: KDC started
    4/24/14 18:46:31.963 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:36.482 awacsd[59]: KV HTTP 0
    4/24/14 18:46:39.917 apsd[61]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcHandleInterruptEvent WARNING status=0x0 (0x40 not set) notif=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    4/24/14 18:46:40.000 kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    4/24/14 18:46:40.000 kernel[0]: Previous Shutdown Cause: 5
    4/24/14 18:46:40.000 kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    4/24/14 18:46:42.933 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:44.644 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe
    4/24/14 18:46:45.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0042
    4/24/14 18:46:45.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x4800 ****
    4/24/14 18:46:45.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x4800 ****
    4/24/14 18:46:46.549 awacsd[59]: KV HTTP 0
    4/24/14 18:46:46.850 com.apple.kextd[12]: kext com.protech.NoSleep  103019000 is in exception list, allowing to load
    4/24/14 18:46:46.874 com.apple.kextd[12]: kext com.Cycling74.driver.WondershareAudioDevice  105029000 is in exception list, allowing to load
    4/24/14 18:46:46.000 kernel[0]: init
    4/24/14 18:46:46.000 kernel[0]: probe
    4/24/14 18:46:46.000 kernel[0]: start
    4/24/14 18:46:46.000 kernel[0]: DSMOS has arrived
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x4800
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: setting state: 1, for mode: 0 (ac-mode)
    4/24/14 18:46:46.000 kernel[0]: com_protech_nosleepextension: successfully started
    4/24/14 18:46:46.926 loginwindow[38]: Login Window Application Started
    4/24/14 18:46:46.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    4/24/14 18:46:46.000 kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x6c80 -- 0x0000 -- 0x4800 ****
    4/24/14 18:46:47.004 WindowServer[168]: Server is starting up
    4/24/14 18:46:47.015 mds[34]: (Normal) FMW: FMW 0 0
    4/24/14 18:46:47.040 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext.
    4/24/14 18:46:47.041 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext - not found/unable to create.
    4/24/14 18:46:47.046 Parallels[169]: Failed to load kernel extension prl_usb_connect.kext
    4/24/14 18:46:47.074 Parallels[171]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_usb_connect.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.000 kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000040
    4/24/14 18:46:47.171 Parallels[176]: Loading kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.000 kernel[0]: en4: promiscuous mode enable succeeded
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.194 WindowServer[168]: Session 256 released (1 references)
    4/24/14 18:46:47.196 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext.
    4/24/14 18:46:47.197 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:46:47.197 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext - not found/unable to create.
    4/24/14 18:46:47.204 Parallels[180]: Failed to load kernel extension prl_hypervisor.kext
    4/24/14 18:46:47.213 WindowServer[168]: Session 256 retained (2 references)
    4/24/14 18:46:47.216 WindowServer[168]: init_page_flip: page flip mode is on
    4/24/14 18:46:47.254 UserEventAgent[11]: assertion failed: 13C64: com.apple.telemetry + 17682 [FDCB4ECA-3C5D-394A-BAEF-F6555BEB4239]: 0xffffffffe0000001
    4/24/14 18:46:47.269 Parallels[183]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hypervisor.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.272 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.277 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.280 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.283 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    4/24/14 18:46:47.285 WindowServer[168]: mux_initialize: Mode is safe
    4/24/14 18:46:47.287 WindowServer[168]: Found 13 modes for display 0x00000000 [8, 5]
    4/24/14 18:46:47.288 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004004D60 MacBook-Pro-de-Luis-4.local. (Addr) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F90040051F0 1.0.0.127.in-addr.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006960 MacBook-Pro-de-Luis-4.local. (AAAA) that's already in the list
    4/24/14 18:46:47.289 mDNSResponder[35]: mDNS_Register_internal: ERROR!! Tried to register AuthRecord 00007F9004006DF0 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.E.F.ip6.arpa. (PTR) that's already in the list
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.291 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.292 WindowServer[168]: Found 1 modes for display 0x00000000 [1, 0]
    4/24/14 18:46:47.319 WindowServer[168]: WSMachineUsesNewStyleMirroring: false
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.320 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.321 WindowServer[168]: WSSetWindowTransform: Singular matrix
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x042731c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 13 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cc7, S/N 0, Unit 0, Rotation 0
    UUID 0xcb5a19e16c20c98ebb2d70fc3bb550b4
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.324 WindowServer[168]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    4/24/14 18:46:47.325 WindowServer[168]: CGXPerformInitialDisplayConfiguration
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x042731c0: Unit 0; Vendor 0x610 Model 0x9cc7 S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    4/24/14 18:46:47.325 WindowServer[168]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, accelerator 0x000048b3, unit 0, caps QEX|MIPMAP, vram 451 MB
    4/24/14 18:46:47.409 WindowServer[168]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000001f, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    4/24/14 18:46:47.410 WindowServer[168]: GLCompositor enabled for tile size [256 x 256]
    4/24/14 18:46:47.410 WindowServer[168]: CGXGLInitMipMap: mip map mode is on
    4/24/14 18:46:47.430 loginwindow[38]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:47.437 sudo[199]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    4/24/14 18:46:47.441 Parallels[210]: Loading kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.465 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext.
    4/24/14 18:46:47.466 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext - not found/unable to create.
    4/24/14 18:46:47.469 Parallels[216]: Failed to load kernel extension prl_hid_hook.kext
    4/24/14 18:46:47.652 Parallels[218]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_hid_hook.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:47.880 Parallels[222]: Loading kernel extension prl_netbridge.kext
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext.
    4/24/14 18:46:47.910 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext - not found/unable to create.
    4/24/14 18:46:47.913 Parallels[226]: Failed to load kernel extension prl_netbridge.kext
    4/24/14 18:46:48.049 Parallels[228]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_netbridge.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.120 Parallels[232]: Loading kernel extension prl_vnic.kext
    4/24/14 18:46:48.282 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Can't open CFBundle for /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext.
    4/24/14 18:46:48.283 com.apple.kextd[12]: Error: Kext /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext - not found/unable to create.
    4/24/14 18:46:48.286 Parallels[236]: Failed to load kernel extension prl_vnic.kext
    4/24/14 18:46:48.595 Parallels[238]: /Library/Parallels/Parallels Service.app/Contents/Kexts/prl_vnic.kext failed to load - (libkern/kext) not found; check the system/kernel logs for errors or try kextutil(8).
    4/24/14 18:46:48.782 Parallels[241]: Trying to load kernel extensions, exit status: 5
    4/24/14 18:46:49.017 Parallels[244]: Starting Parallels networking...
    4/24/14 18:46:49.063 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.104 launchctl[246]: com.apple.findmymacmessenger: Already loaded
    4/24/14 18:46:49.145 com.apple.SecurityServer[15]: Session 100004 created
    4/24/14 18:46:49.200 loginwindow[38]: Setting the initial value of the magsave brightness level 1
    4/24/14 18:46:49.244 loginwindow[38]: Login Window Started Security Agent
    4/24/14 18:46:49.262 UserEventAgent[249]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:49.322 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:49.367 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.370 SecurityAgent[255]: This is the first run
    4/24/14 18:46:49.371 SecurityAgent[255]: MacBuddy was run = 0
    4/24/14 18:46:49.385 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:49.406 WindowServer[168]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fff4be1aec0) - enabling OpenGL
    4/24/14 18:46:49.411 SecurityAgent[255]: User info context values set for luisfernandolins
    4/24/14 18:46:49.987 loginwindow[38]: Login Window - Returned from Security Agent
    4/24/14 18:46:50.015 loginwindow[38]: USER_PROCESS: 38 console
    4/24/14 18:46:50.000 kernel[0]: AppleKeyStore:Sending lock change 0
    4/24/14 18:46:50.941 com.apple.launchd.peruser.501[261]: Background: Aqua: Registering new GUI session.
    4/24/14 18:46:50.945 launchctl[264]: launchctl: Dubious file. Not of type .plist (skipping): /Users/luisfernandolins/Library/LaunchAgents/com.zeobit.MacKeeper.Helper
    4/24/14 18:46:50.961 com.apple.launchd.peruser.501[261]: (com.spotify.webhelper) Unknown key: SpotifyPath
    4/24/14 18:46:50.962 com.apple.launchd.peruser.501[261]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    4/24/14 18:46:50.963 com.apple.launchd.peruser.501[261]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    4/24/14 18:46:50.966 launchctl[264]: com.apple.pluginkit.pkd: Already loaded
    4/24/14 18:46:50.966 launchctl[264]: com.apple.sbd: Already loaded
    4/24/14 18:46:50.981 distnoted[266]: # distnote server agent  absolute time: 70.704574643   civil time: Thu Apr 24 18:46:50 2014   pid: 266 uid: 501  root: no
    4/24/14 18:46:51.641 UserEventAgent[265]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    4/24/14 18:46:51.000 kernel[0]: directed SSID scan fail
    4/24/14 18:46:52.153 SystemStarter[190]: StartOuc (198) did not complete successfully
    4/24/14 18:46:52.154 SystemStarter[190]: The following StartupItems failed to start properly:
    4/24/14 18:46:52.154 SystemStarter[190]: /Library/StartupItems/StartOuc
    4/24/14 18:46:52.154 SystemStarter[190]:  - execution of Startup script failed
    4/24/14 18:46:52.155 WindowServer[168]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    4/24/14 18:46:52.294 WindowServer[168]: Display 0x042731c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    4/24/14 18:46:53.414 prl_net_start[247]: Failed to configure Parallels Adapter 0 for network Shared
    4/24/14 18:46:53.420 prl_net_start[247]: Failed to configure Parallels Adapter 1 for network Host-Only
    4/24/14 18:46:53.580 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:46:53.602 Parallels[309]: Parallels networking sucessfully started
    4/24/14 18:46:53.607 sharingd[297]: Starting Up...
    4/24/14 18:46:53.624 prl_naptd[307]: Starting Parallels Network Daemon
    4/24/14 18:46:53.628 Parallels[311]: Restarting CiscoVPN
    4/24/14 18:46:53.717 SystemStarter[315]: Unknown service: CiscoVPN
    4/24/14 18:46:53.728 Parallels[318]: Starting Parallels Dispatcher Service
    4/24/14 18:46:54.048 Parallels[325]: Parallels Dispatcher Service sucessfully started
    4/24/14 18:46:54.074 prl_naptd[307]: BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    4/24/14 18:46:54.076 prl_naptd[307]: Failed to start: error 718; Parallels Network Daemon will restart in one minute or after receiving of some signal.
    4/24/14 18:46:54.134 xpcproxy[328]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:54.145 com.apple.SecurityServer[15]: Session 100005 created
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    4/24/14 18:46:54.167 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    4/24/14 18:46:54.168 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    4/24/14 18:46:54.169 com.apple.audio.DriverHelper[295]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.207 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    4/24/14 18:46:54.208 com.apple.audio.DriverHelper[295]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    4/24/14 18:46:54.313 com.apple.IconServicesAgent[333]: IconServicesAgent launched.
    4/24/14 18:46:54.544 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:54.958 xpcproxy[336]: assertion failed: 13C64: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    4/24/14 18:46:55.025 com.apple.SecurityServer[15]: Session 100008 created
    4/24/14 18:46:55.390 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.86 seconds (server forcibly re-enabled them after 1.01 seconds)
    4/24/14 18:46:55.758 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58bf30 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    4/24/14 18:46:55.784 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda585c90 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    4/24/14 18:46:55.785 SystemUIServer[280]: Cannot find executable for CFBundle 0x7fbbda58b4f0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    4/24/14 18:46:56.032 coreaudiod[282]: 2014-04-24 06:46:56.031416 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2
    4/24/14 18:46:57.095 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:46:57.895 WindowServer[168]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.80 seconds (server forcibly re-enabled them after 1.00 seconds)
    4/24/14 18:46:57.939 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:57.940 SystemUIServer[280]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    4/24/14 18:46:58.034 accountsd[347]: assertion failed: 13C64: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    4/24/14 18:46:58.146 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252e0e370 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.000 kernel[0]: MacAuthEvent en1   Auth result for: a4:b1:e9:79:78:17  MAC AUTH succeeded
    4/24/14 18:46:58.000 kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    4/24/14 18:46:58.000 kernel[0]: AirPort: Link Up on en1
    4/24/14 18:46:58.000 kernel[0]: en1: BSSID changed to a4:b1:e9:79:78:17
    4/24/14 18:46:58.000 kernel[0]: AirPort: RSN handshake complete on en1
    4/24/14 18:46:58.491 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252c1da50 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:58.492 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1047286319, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c202a0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:58.000 kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    4/24/14 18:46:58.707 com.apple.SecurityServer[15]: Session 100010 created
    4/24/14 18:46:59.734 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3d840 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.817 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e850 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.818 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=1647185353, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252c1a500 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:46:59.898 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f3e050 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro8,1> <Mac OS X;10.9.2;13C64> <com.apple.AOSKit/176>";
        "X-Mme-Country" = BR;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT-3";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc252f08480 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    4/24/14 18:46:59.964 com.apple.iCloudHelper[328]: AOSKit ERROR: Setup request failed, appleID=291933891, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc252f07ad0 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    4/24/14 18:47:02.528 com.apple.launchd.peruser.501[261]: (com.parallels.desktop.client.launch[371]) Job failed to exec(3) for weird reason: 2
    4/24/14 18:47:02.667 prl_naptd[370]: Starting Parallels Network Daemon
    4/24/14 18:47:02.668 com.apple.launchd.peruser.501[261]: (com.apple.iTunesHelper.30304[383]) Spawned and waiting for the debugger to attach before continuing...
    4/24/14 18:47:02.688 SocialPushAgent[359]: ApplePushService: APSConnection being used without a delegate queue
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    4/24/14 18:47:02.711 WiFiKeychainProxy[358]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    4/24/14 18:47:04.495 com.apple.InternetSharing[43]: *** no interface for service
    4/24/14 18:47:04.500 configd[56]: network changed: DNS* Proxy
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'LFLINS' making interface primary (protected network)
    4/24/14 18:47:04.505 UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    4/24/14 18:47:04.511 UserEventAgent[11]: Captive: en1: Probing 'LFLINS'
    4/24/14 18:47:04.515 configd[56]: network changed: v4(en1!:192.168.1.72) DNS+ Proxy+ SMB
    4/24/14 18:47:05.355 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:05.390 configd[56]: setting hostname to "mbp-de-luis-4.lan"
    4/24/14 18:47:05.414 UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    4/24/14 18:47:08.733 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:08.747 com.apple.launchd.peruser.501[261]: (com.apple.mrt.uiagent[362]) Exited with code: 255
    4/24/14 18:47:08.780 ntpd[186]: proto: precision = 1.000 usec
    4/24/14 18:47:08.974 secd[342]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:08.975 secd[342]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1020 - Remote error : Network unreachable)
    4/24/14 18:47:09.065 airportd[63]: _doAutoJoin: Already associated to “LFLINS”. Bailing on auto-join.
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.326 com.apple.internetaccounts[336]: [Warning] ************* com.apple.internetaccounts timed out connecting to imagent, please file a radar, and attach the stackshots generated ***********************
    4/24/14 18:47:10.375 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:10.920 REUpdater[372]: VERSION is 141
    4/24/14 18:47:12.143 AirPlayUIAgent[330]: 2014-04-24 06:47:12.143216 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:12.962 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:15.033 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.033 secd[342]:  securityd_xpc_dictionary_handler WiFiKeychainProx[358] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:15.060 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:15.275 AirPlayUIAgent[330]: 2014-04-24 06:47:15.275080 PM [AirPlayUIAgent] Changed PIN pairing: no
    4/24/14 18:47:17.030 syncdefaultsd[321]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    4/24/14 18:47:17.268 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:17.268 digest-service[72]: digest-request: init request
    4/24/14 18:47:17.275 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:17.400 com.apple.NotesMigratorService[398]: Joined Aqua audit session
    4/24/14 18:47:17.418 racoon[401]: accepted connection on vpn control socket.
    4/24/14 18:47:17.835 com.apple.internetaccounts[336]: An instance 0x7fc03bfd4940 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bfd5680> (
    <NSKeyValueObservance 0x7fc03bfd57f0: Observer: 0x7fc03bfc98d0, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:17.844 com.apple.internetaccounts[336]: An instance 0x7fc03bd87e60 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03bd87f80> (
    <NSKeyValueObservance 0x7fc03bd87f10: Observer: 0x7fc03bd88c30, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.226 digest-service[72]: digest-request: uid=0
    4/24/14 18:47:18.227 digest-service[72]: digest-request: init request
    4/24/14 18:47:18.229 com.apple.internetaccounts[336]: An instance 0x7fc03e00f500 of class IMAPMailbox was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x7fc03e00e210> (
    <NSKeyValueObservance 0x7fc03e000190: Observer: 0x7fc03e003a50, Key path: uidNext, Options: <New: NO, Old: NO, Prior: NO> Context: 0x7fff8e1bd43b, Property: 0x7fc03bfd5650>
    4/24/14 18:47:18.234 digest-service[72]: digest-request: init return domain: MBP-DE-LUIS-4 server: MBP-DE-LUIS-4 indomain was: <NULL>
    4/24/14 18:47:18.245 com.apple.time[265]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    4/24/14 18:47:18.570 REUpdater[372]: REUpdate : Did not download since you have the version equal or later than that on the server
    4/24/14 18:47:20.234 com.apple.dock.extra[396]: iPhotoDockTilePlugin: Unable to get dock badge information: connection timeout: did not receive reply
    4/24/14 18:47:21.886 AllMyMusicAgent[369]: SARAgent newAgent
    4/24/14 18:47:22.544 mds[34]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    4/24/14 18:47:23.589 sandboxd[384]: ([367]) assistantd(367) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    4/24/14 18:47:26.529 AddressBookManager[382]: Validate metadata timed out, cancelling
    4/24/14 18:47:26.556 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: ERROR: __CFURLCache:CreateTablesAndIndexes version create - table cfurl_cache_schema_version already exists. ErrCode: 1.
    4/24/14 18:47:26.557 com.apple.imfoundation.IMRemoteURLConnectionAgent[391]: __CFURLCache:RecreateEmptyPersistentStoreOnDiskAndOpen: create tables and index failed.
    4/24/14 18:47:27.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.757 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:28.909 WindowServer[168]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    4/24/14 18:47:29.758 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:30.760 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.761 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:31.887 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.762 PhotoStreamAgent[357]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:32.918 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:33.975 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:34.980 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:36.041 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:37.113 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:38.169 SafariDAVClient[381]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    4/24/14 18:47:39.238 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.238 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:39.946 AddressBookSourceSync[380]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo=0x7fa5eb81cb60 {NSUnderlyingError=0x7fa5e9651cb0 "The request timed out.", NSErrorFailingURLStringKey=https://luisfernandolins%[email protected]/1047286319/principal/[email protected]/1047286319/principal/, NSErrorFailingURLKey=https://luisfernandolins%[email protected]/1047286319/principal///luisfernandolins%[email protected]/1047286319/principal/, NSLocalizedDescription=The request timed out.}
    4/24/14 18:47:40.011 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] : had error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))
    4/24/14 18:47:40.013 secd[342]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.013 secd[342]:  securityd_xpc_dictionary_handler AddressBookSourc[380] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    4/24/14 18:47:40.017 AddressBookSourceSync[380]: [AOSAccounts] : [IsAccountKeyChainActive] :

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • Errors when trying to mosaic compressed images

    I am trying to load georaster data into Oracle 11g 11.2.0.2. I was successful then doing this by using the following steps:-
    - SDO_GEOR.IMPORTFROM
    - sdo_geor.mosaic
    However when I try to compress the images as JPEG-B I get an Oracle error when performing the mosaic operation.
    ORA-13485: error occurred during compression or decompression: lossy then something related to colormaps.
    Has anyone ever seen a similar error.
    These are the scripts.
    set serveroutput on size 1000000;
    set timing on;
    LOAD
    -- THE SDO_RASTER TABLE HAS TO BE UNIQUE IN THE ENTIRE DATABASE
    DROP TABLE GEO_25K PURGE;
    DROP TABLE RDT_25K PURGE;
    CREATE TABLE GEO_25K ( ID NUMBER PRIMARY KEY,
         SOURCE_FILE VARCHAR2(80),
         DESCRIPTION VARCHAR2(32),
         GEOMMBR SDO_GEOMETRY,
         GEORASTER SDO_GEORASTER);
    CREATE TABLE RDT_25K OF SDO_RASTER
         (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
         LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
    CALL SDO_GEOR_UTL.CREATEDMLTRIGGER('GEO_25K','GEORASTER');
    -- IMPORTFROM DOES NOT SUPPORT JPG ONLY TIFF, GIF, BMP AND PNG
    -- SET TIMING ON IN SQLPLUS TO SEE HOW LONG THE LOAD TAKES
    -- 28 X JPG CONVERTED TO TIFF REPRESENTS 1.93GB ON DISK AND 2286MB IN THE DB AND TOOK 1 HOUR 11 MINUTES TO LOAD
    DECLARE
         TYPE FILE_LIST IS TABLE OF VARCHAR2(200);
         files FILE_LIST;
         geor MDSYS.SDO_GEORASTER;
    BEGIN
         dbms_java.set_output(1000000);
         get_dir_list('/PRLR01/fssa01/RASTER/LOAD/');
         FOR i in ( SELECT rownum,FILENAME from dir_list where FILENAME like '%TIF' )
         LOOP
              dbms_output.put_line(i.FILENAME);
              dbms_output.put_line(SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
              INSERT INTO GEO_25K VALUES (i.rownum, i.filename, '', null, MDSYS.SDO_GEOR.INIT('RDT_25K', i.rownum));
              SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
              MDSYS.SDO_GEOR.IMPORTFROM(geor, 'compression=JPEG-B', 'TIFF', 'FILE', i.FILENAME,
                   'WORLDFILE', 'FILE', SUBSTR(i.filename, 1, LENGTH(i.filename)-4) || '.TFW');
              UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
              SELECT GEORASTER INTO geor FROM GEO_25K WHERE ID = i.rownum FOR UPDATE;
              MDSYS.SDO_GEOR.SETRASTERTYPE(geor, 21001);
              UPDATE GEO_25K SET GEORASTER = geor WHERE ID = i.rownum;
              SELECT georaster INTO geor FROM GEO_25K WHERE id = i.rownum FOR UPDATE;
              sdo_geor.setModelSRID(geor, 81989);
              UPDATE GEO_25K SET georaster = geor WHERE id=i.rownum;
         END LOOP;
         COMMIT;
    END;
    MOSAIC
    set timing on;
    --After the GeoRaster are loaded you may want to set the appropriate SRID if this was not set correctly.
    --SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_25K;
    --select id, sdo_geor.getModelSRID(georaster) from GEO_25K;
    --Then you need to validate the GeoRasters to see if they have been setup correctly.
    --SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_25K t order by id;
    --After you have loaded all the georasters, iSMART will pick up each row of the georaster as an individual layer so you need to create a mosaic layer or table
    drop table GEO_MOSAIC_25K;
    drop table RDT_MOSAIC_25K;
    CREATE TABLE GEO_MOSAIC_25K ( ID NUMBER PRIMARY KEY,
    SOURCE_FILE VARCHAR2(80),
    DESCRIPTION VARCHAR2(32),
    GEOMMBR SDO_GEOMETRY,
    GEORASTER SDO_GEORASTER);
    CREATE TABLE RDT_MOSAIC_25K OF SDO_RASTER
    (PRIMARY KEY (RASTERID, PYRAMIDLEVEL, BANDBLOCKNUMBER, ROWBLOCKNUMBER, COLUMNBLOCKNUMBER))
    LOB(RASTERBLOCK) STORE AS (NOCACHE NOLOGGING);
    call sdo_geor_utl.createDMLTrigger('GEO_MOSAIC_25K','GEORASTER');
    DECLARE
    gr sdo_georaster;
    BEGIN
    insert into GEO_MOSAIC_25K (id, georaster)
    values (1, sdo_geor.init('RDT_MOSAIC_25K'))
    returning georaster INTO gr;
    sdo_geor.mosaic('GEO_25K', 'georaster', gr, '');
    update GEO_MOSAIC_25K SET georaster=gr where id=1;
    commit;
    END;
    --Then you need to validate the mosaic.
    -- SELECT sdo_geor.validateBlockMBR(georaster), id FROM GEO_MOSAIC_25K;
    SELECT t.id, sdo_geor.validategeoraster(t.georaster) isvalid from GEO_MOSAIC_25K t order by id;
    --The in order to achieve real performance you need to pyramid the mosaic raster. If you don't specify a pyramid level then you oracle will calculate it.
    --If you have set them max resolution to this layer using the Oracle calculated value will produce too many pyramid levels, you need to calculate how many pyramid value you will need
    --See URL for Pyramiding http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28398/geor_intro.htm#CHDDEGJJ
    DECLARE
    gr sdo_georaster;
    BEGIN
    SELECT georaster INTO gr
    FROM GEO_MOSAIC_25K WHERE id = 1 FOR UPDATE;
    -- Generate pyramids.
    sdo_geor.generatePyramid(gr, 'rLevel=5, resampling=NN');
    -- Update the original GeoRaster object.
    UPDATE GEO_MOSAIC_25K SET georaster = gr WHERE id = 1;
    COMMIT;
    END;
    quit
    These work fine until I include 'compression=JPEG-B'
    Cheers,
    David

    Check document:
    1.10.2 DEFLATE Compression of GeoRaster Objects
    DEFLATE compression compresses objects according to the Deflate Compressed Data Format Specification (Network Working Group RFC 1951), and it stores the compressed data in ZLIB format, as described in the ZLIB Compressed Data Format Specification (Network Working Group RFC 1950). The ZLIB header and checksum fields are included in the compressed GeoRaster object.
    Although DEFLATE compression is supported for GeoRaster objects of any size, the total size (columnsPerBlock * rowsPerBlock * bandsPerBlock * cellDepth / 8) of each block of the GeoRaster object must not exceed 1 gigabyte (GB). For large GeoRaster objects, you can call the SDO_GEOR.changeFormatCopy procedure to block the GeoRaster object into blocks smaller than1 GB, and then compress the GeoRaster object; or you can perform the blocking and compression in the same call to the SDO_GEOR.changeFormatCopy procedure.
    Because DEFLATE compression is lossless, compression quality does not apply, and is ignored if it is specified.
    compression
    Specifies the compression type to be applied to the GeoRaster object. Must be one of the following values: JPEG-B, JPEG-F, DEFLATE, or NONE. (You can use NONE to decompress a compressed GeoRaster object.) If compression is not specified, the compression type of the source GeoRaster object is used. For more information about compression and decompression, see Section 1.10. Example: compression=DEFLATE

  • How Can I delete Exchange2010 deleteditems mails

    Hi
    How can I delete total DeletedItemSize. Please help.................
    DisplayName                             TotalDeletedItemSize                    TotalItemSize
    Samath Admin                                  0 B (0 bytes)                           109.8 MB (115,082,027
    bytes)
    Trevine Admin                                  0 B (0 bytes)                           110.3 MB (115,706,464
    bytes)
    Skylab Dey                                       236.2 MB (247,665,008 bytes)            1.153 GB (1,237,562,452 bytes
    Sanjit Roy                                         327.7 MB (343,597,893 bytes)            303 MB (317,687,497 bytes)
    Rajib Mahajon                           287.3 MB (301,216,657 bytes)            142.4 MB (149,329,143 bytes)
    Rejaul Karim                            400.9 MB (420,392,666 bytes)            333.9 MB (350,112,933 bytes)
    Subashis Dutta                          34.34 MB (36,005,431 bytes)             608.9 MB (638,477,287 bytes)
    Surandi Weerasinshe                     73.5 MB (77,075,208 bytes)              1.05 GB (1,127,630,820 bytes)
    Tahaminara Begum                        565 MB (592,459,493 bytes)              170.1 MB (178,367,607 bytes)
    Tuhin Barua                             60.69 GB (65,160,214,561 bytes)         292.9 MB (307,144,744 bytes)
    Rukman Zaysa                            820.3 MB (860,135,975 bytes)            107.8 MB (112,994,497 bytes)
    Rajibul Islam                           347.9 KB (356,247 bytes)                374.2 MB (392,418,537 bytes)
    Saman Perera                            1.497 MB (1,569,571 bytes)              780.4 MB (818,322,196 bytes)
    Sanjaya Gunasekera                      566.8 MB (594,352,417 bytes)            1.153 GB (1,237,665,369 bytes
    Subrata Dey                             691 MB (724,536,335 bytes)              233.4 MB (244,743,291 bytes)
    tommyvcp-u3                             186.5 KB (190,986 bytes)                252.8 MB (265,043,591 bytes)
    Shafiqul Islam                          195.8 MB (205,317,032 bytes)            360.1 MB (377,567,501 bytes)
    Palitha Krishantha                      1.164 GB (1,249,727,757 bytes)          104.2 MB (109,275,722 bytes)
    tommyvcp-u4                             160.4 MB (168,194,041 bytes)            112.8 MB (118,247,965 bytes)
    Shyaminda Manchanayake                  0 B (0 bytes)                           136.5 MB (143,160,935 bytes)
    Swarup Mazumder                         445.1 MB (466,711,678 bytes)            184.2 MB (193,194,704 bytes)
    Subimal Ghosh                           673.3 MB (705,975,330 bytes)            561.8 MB (589,077,655 bytes)
    Shishir Chakraborty                     76.48 MB (80,197,243 bytes)             450.8 MB (472,737,329 bytes)
    Raju Chowdhury                          462.5 MB (485,010,835 bytes)            6.306 MB (6,612,711 bytes)
    Sazzad Hossain                          438.2 MB (459,521,283 bytes)            449.7 MB (471,554,356 bytes)
    Tharanga Namasena                       516 MB (541,037,575 bytes)              484.6 MB (508,166,210 bytes)
    Saydur rahaman                          149.3 MB (156,578,597 bytes)            274.4 MB (287,710,264 bytes)
    Sazzad Khan                             433.7 MB (454,733,713 bytes)            365.6 MB (383,311,819 bytes)
    Anup Nath                               196.4 MB (205,987,495 bytes)            253.4 MB (265,751,589 bytes)
    Susantha Vitanage                       598.4 MB (627,458,572 bytes)            826.2 MB (866,321,431 bytes)
    Ramprasad Das                           1.068 GB (1,146,461,826 bytes)          493.1 MB (517,032,810 bytes)
    Md. Rezaul Karim (store)                747.1 MB (783,398,264 bytes)            273.1 MB (286,353,458 bytes)
    Steve Cyprian                           893.1 MB (936,516,571 bytes)            312.1 MB (327,254,381 bytes)
    Tito Barua                              142.4 MB (149,360,896 bytes)            38.23 MB (40,086,615 bytes)
    Ranjith Yapa                            1.477 GB (1,585,896,797 bytes)          284.6 MB (298,435,497 bytes)
    Mohammed Zahid                          517.5 MB (542,635,369 bytes)            5.571 MB (5,841,755 bytes)
    Tuhin Barua (Maintenance)               4.575 MB (4,797,214 bytes)              329.2 MB (345,210,783 bytes)
    Suresh Desilva                          919.5 KB (941,607 bytes)                978.7 MB (1,026,207,584 bytes
    Rajith Shanaka                          386.2 MB (404,956,097 bytes)            131.9 MB (138,299,717 bytes)
    Shahedur Rahman                         586.4 MB (614,909,543 bytes)            723.4 MB (758,589,732 bytes)
    Sohag Akand                             604 MB (633,325,097 bytes)              16.17 MB (16,956,192 bytes)
    Rubence Chowdhury                       664.8 MB (697,091,043 bytes)            205.2 MB (215,219,481 bytes)
    Ratilal Shil                            422.5 MB (443,017,423 bytes)            484.3 MB (507,870,667 bytes)
    Tharaka Rathnaweera                     376.9 MB (395,249,428 bytes)            888.3 MB (931,405,683 bytes)
    Shannon Baptist                         49.43 MB (51,832,652 bytes)             38.93 MB (40,817,149 bytes)
    Selim Uddin                             953.9 MB (1,000,191,628 bytes)          11.6 MB (12,166,925 bytes)
    Rezaul Karim (HR)                       77.37 MB (81,132,781 bytes)             238.2 MB (249,778,787 bytes)
    Rukun Chowdhury                         540.7 KB (553,715 bytes)                134.9 MB (141,426,235 bytes)
    Rasanga Bellana                         1.094 GB (1,174,993,760 bytes)          468.5 MB (491,269,783 bytes)
    Tarekul Hasan                           1.07 GB (1,149,090,571 bytes)           332.3 MB (348,416,341 bytes)
    Tofayel Ahmed                           308 MB (322,997,555 bytes)              136.9 MB (143,544,574 bytes)
    Sirajul Mostafa                         217.6 MB (228,148,817 bytes)            238.4 MB (249,999,807 bytes)
    Satyajit Roy                            190.5 MB (199,715,660 bytes)            68.99 MB (72,344,941 bytes)
    Saiful Islam                            1.625 GB (1,745,041,109 bytes)          420.2 MB (440,663,194 bytes)
    Sonia Akhter                            141.1 MB (147,902,491 bytes)            84.4 MB (88,504,422 bytes)
    Tumpa Paul                              658 MB (689,943,326 bytes)              120.6 MB (126,473,662 bytes)
    Suman Shil                              406.5 MB (426,260,137 bytes)            218.5 MB (229,121,978 bytes)
    Tilak Mahajan                           853.6 MB (895,101,042 bytes)            286.8 MB (300,773,709 bytes)
    Wash U4                                 29.91 MB (31,363,230 bytes)             40.91 MB (42,900,845 bytes)
    tommyvcp-u5                             7.59 MB (7,959,164 bytes)               61.28 MB (64,258,851 bytes)
    washing u3                              167.9 MB (176,094,035 bytes)            110.2 MB (115,599,512 bytes)
    Sobel Barua                             124.8 MB (130,862,441 bytes)            301.1 MB (315,743,928 bytes)
    Rajib Chowdhury                         956.8 MB (1,003,302,570 bytes)          138.5 MB (145,181,976 bytes)
    Salauddin Sarker                        91.95 MB (96,418,654 bytes)             462.5 KB (473,643 bytes)
    Shah Alam                               407.7 MB (427,497,441 bytes)            157.5 MB (165,153,748 bytes)
    Substore.U3                             19.31 MB (20,246,758 bytes)             246.5 MB (258,472,769 bytes)
    Reajul Islam                            678 MB (710,962,773 bytes)              315 MB (330,340,787 bytes)
    Ruhul Amin                              300.8 MB (315,449,310 bytes)            312.2 MB (327,385,882 bytes)
    Rahim Badsha (Finishing)                36.5 KB (37,377 bytes)                  407.4 MB (427,183,997 bytes)
    Rashed Mahmud                           0 B (0 bytes)                           6.526 GB (7,007,754,211 bytes
    Sample U2                               95.83 MB (100,482,840 bytes)            23.09 MB (24,208,003 bytes)
    Ahmed Ullah                             84.68 MB (88,788,849 bytes)             117.1 MB (122,809,200 bytes)
    Sujan Das                               1.06 GB (1,138,084,050 bytes)           121.1 MB (127,005,893 bytes)
    Rajibul Ahasen                          122.7 MB (128,615,818 bytes)            116.7 MB (122,383,496 bytes)
    Tanzir Rahman                           361.2 MB (378,694,678 bytes)            10.72 MB (11,238,282 bytes)
    RLvcp                                   0 B (0 bytes)                           112.2 MB (117,684,625 bytes)
    Shimul Akter                            1.566 MB (1,642,472 bytes)              74.82 MB (78,450,958 bytes)
    Sahanara Hossain                        517.9 MB (543,039,841 bytes)            319.7 MB (335,242,113 bytes)
    Samsur Rahman                           365.3 MB (383,018,504 bytes)            265.4 MB (278,257,603 bytes)
    Tania Akter                             394.4 KB (403,832 bytes)                27.8 MB (29,152,929 bytes)
    Rasel Chowdhury                         1.412 GB (1,515,755,716 bytes)          363.6 MB (381,261,554 bytes)
    Titu Das                                848 MB (889,155,963 bytes)              299.8 MB (314,329,966 bytes)
    Richi Chowdhury                         0 B (0 bytes)                           498.9 MB (523,122,181 bytes)
    Salahuddin Mahmood                      385.3 MB (404,062,436 bytes)            387 MB (405,758,762 bytes)
    Ruben Borgonha                          590.1 MB (618,806,317 bytes)            12.48 MB (13,087,977 bytes)
    Sakib Saad                              761.5 MB (798,523,996 bytes)            459.2 MB (481,551,743 bytes)
    Rupak Naha                              195.5 MB (204,973,890 bytes)            137.1 MB (143,710,760 bytes)
    Shaifuddin Mamun                        460.5 MB (482,850,088 bytes)            4.882 MB (5,119,576 bytes)
    Sukanta Sarker                          431.6 MB (452,580,395 bytes)            483.6 MB (507,051,181 bytes)
    Yeasin Newaj Shaikat                    5.059 KB (5,180 bytes)                  239.6 MB (251,290,022 bytes)
    Raju Dey                                3.065 MB (3,214,220 bytes)              175.5 MB (184,001,967 bytes)
    Razib Abdullah                          204.5 MB (214,467,110 bytes)            196.7 MB (206,228,561 bytes)
    Rakiba Akter                            214.3 MB (224,678,737 bytes)            149.9 MB (157,195,838 bytes)
    Tanzina Sumana                          162.7 MB (170,646,565 bytes)            156.2 MB (163,745,645 bytes)
    Sonjoy Chowdhury                        174 MB (182,485,423 bytes)              183.2 MB (192,095,243 bytes)
    Mohammed Zahed Hossain Bhuiyan          145.3 MB (152,310,125 bytes)            201.3 MB (211,129,880 bytes)
    Saif Islam                              439.9 MB (461,275,886 bytes)            46.28 MB (48,532,196 bytes)
    Shah Poran                              350.5 MB (367,577,405 bytes)            35.8 MB (37,542,304 bytes)
    Sohel Amin                              0 B (0 bytes)                           5.778 GB (6,204,277,917 bytes
    Sanjeewa Kumara                         249.3 KB (255,255 bytes)                556.4 MB (583,423,112 bytes)
    U5 EDI1                                 153.7 MB (161,198,897 bytes)            125 MB (131,037,812 bytes)
    Ruma Akther                             112.6 MB (118,093,114 bytes)            77.66 MB (81,432,110 bytes)
    SI Faruk                                343.4 KB (351,644 bytes)                527.3 MB (552,928,844 bytes)
    Sabbir Hossain                          8.345 MB (8,750,018 bytes)              92.33 MB (96,816,300 bytes)
    Showkat Hossen                          468.7 MB (491,460,603 bytes)            127.8 MB (133,985,531 bytes)
    Sabnom Osman                            579.4 MB (607,584,762 bytes)            174.4 MB (182,922,505 bytes)
    Zahid Hossain                           0 B (0 bytes)                           11.7 GB (12,559,585,805 bytes
    Susantha Gunawickrama                   225 MB (235,972,145 bytes)              284.7 MB (298,513,753 bytes)
    Ruwan Sanjeewa                          2.064 MB (2,164,017 bytes)              238.9 MB (250,519,052 bytes)
    U6 Edi                                  97.5 MB (102,241,007 bytes)             13.77 KB (14,096 bytes)
    U6 Packing                              58.83 MB (61,685,996 bytes)             179.8 MB (188,505,337 bytes)
    U6 WashOut                              94.55 MB (99,147,006 bytes)             31.04 MB (32,543,078 bytes)
    Rima Akter                              0 B (0 bytes)                           506.4 MB (530,994,673 bytes)
    U6 Substore                             119.7 MB (125,532,012 bytes)            34.89 MB (36,581,250 bytes)
    Sharmi Sen                              127 KB (130,032 bytes)                  1.286 GB (1,381,272,113 bytes
    U6 Quality                              167.7 MB (175,818,603 bytes)            190.8 MB (200,046,471 bytes)
    U6 Pilotrun                             18.33 MB (19,222,161 bytes)             188.4 MB (197,530,239 bytes)
    Ripon Dutta                             1.47 MB (1,541,041 bytes)               119 MB (124,793,553 bytes)
    Shahedul Islam (Unit-3)                 947.1 MB (993,098,123 bytes)            328.9 MB (344,848,375 bytes)
    Shahidul Azam                           18.63 MB (19,536,507 bytes)             147.1 MB (154,217,041 bytes)
    Nazim Uddin                             128.7 MB (134,933,108 bytes)            1.443 MB (1,513,411 bytes)
    Shabjil Akter                           1.292 MB (1,354,474 bytes)              133 MB (139,482,583 bytes)
    U5 Substore                             51.38 MB (53,876,776 bytes)             188.9 MB (198,122,269 bytes)
    U6 Uniqlovcp                            0 B (0 bytes)                           269.2 MB (282,264,002 bytes)
    U2 IE                                   60.25 MB (63,175,297 bytes)             1.22 MB (1,279,325 bytes)
    Sanjit Sen                              860.2 MB (901,950,193 bytes)            160.6 MB (168,397,914 bytes)
    Rahat Kaiser                            14.09 MB (14,775,618 bytes)             150.4 MB (157,718,207 bytes)
    Zahidul Islam                           438.9 MB (460,198,817 bytes)            213.1 MB (223,464,909 bytes)
    Sajid Forhad                            152.5 MB (159,935,257 bytes)            165 MB (173,022,347 bytes)
    Zannatul Ferdous                        278.7 MB (292,247,786 bytes)            206.5 MB (216,579,892 bytes)
    Subrata Dey (C. Store)                  764.1 MB (801,198,375 bytes)            246.8 MB (258,795,153 bytes)
    Reaz Uddin                              0 B (0 bytes)                           155.9 MB (163,466,251 bytes)
    Tariq Hassan                            341.3 MB (357,912,003 bytes)            91.94 MB (96,406,416 bytes)
    Wasantha Nandasiri                      17.56 MB (18,410,951 bytes)             1.455 GB (1,561,909,457 bytes
    U1 Counselor                            21.58 MB (22,623,418 bytes)             201.4 MB (211,229,538 bytes)
    Shahin Mahbub                           0 B (0 bytes)                           13.09 GB (14,055,123,400 byte
    U4 SainsburysVCP                        152.7 MB (160,070,763 bytes)            131.5 MB (137,879,313 bytes)
    U4 GeorgeVCP                            26.91 MB (28,213,864 bytes)             173 MB (181,427,134 bytes)
    Tuhin Barua (Accounts)                  146.7 MB (153,872,599 bytes)            5.182 MB (5,433,743 bytes)
    Ranjan Deb                              116.1 MB (121,696,835 bytes)            40.11 MB (42,063,494 bytes)
    Tajul Islam                             685 B (685 bytes)                       76.02 MB (79,716,079 bytes)
    Shariful Islam Chowdhury                0 B (0 bytes)                           42.43 MB (44,490,998 bytes)
    Rakib Islam                             70.45 MB (73,870,116 bytes)             186.7 MB (195,751,897 bytes)
    Shah Nasir                              57.97 MB (60,784,190 bytes)             132.6 MB (139,084,751 bytes)
    U3 Packing2                             258.8 MB (271,340,412 bytes)            15.74 KB (16,117 bytes)
    Shohidul Alam                           25.99 MB (27,253,933 bytes)             6.765 MB (7,094,102 bytes)
    Sakawat Ullah                           364.8 MB (382,502,697 bytes)            194.9 MB (204,380,593 bytes)
    Rajib Sarker                            985 MB (1,032,802,901 bytes)            101.6 MB (106,580,926 bytes)
    Tonmoy Chowdhury                        114.4 KB (117,160 bytes)                305.6 MB (320,450,654 bytes)
    Uditha Dissanayake                      9.204 MB (9,651,038 bytes)              176 MB (184,580,212 bytes)
    Shahria Ahmed                           0 B (0 bytes)                           190.3 MB (199,512,689 bytes)
    Tarun Agrawal                           70.33 MB (73,743,765 bytes)             648.4 MB (679,941,779 bytes)
    U4 Substore (Najmul Arfeen)             15.7 MB (16,462,063 bytes)              192.9 MB (202,233,926 bytes)
    Sujan Deb                               780.7 MB (818,612,186 bytes)            18.16 MB (19,044,948 bytes)
    Siam Quashem                            292.6 MB (306,811,127 bytes)            662.1 KB (677,990 bytes)
    Subrata Roy                             203.5 MB (213,350,301 bytes)            71.41 MB (74,876,331 bytes)
    Saif Ullah                              489.9 MB (513,655,555 bytes)            27.09 MB (28,408,485 bytes)
    Sarouar Zakaria                         296.4 MB (310,811,765 bytes)            32.43 MB (34,010,258 bytes)
    U4 Lean                                 25.75 MB (26,998,426 bytes)             141.8 MB (148,656,144 bytes)
    Sanath Ranatunge                        534.3 MB (560,277,682 bytes)            378.8 MB (397,251,850 bytes)
    Rajib Chowdhury (Compliance)            14.27 KB (14,608 bytes)                 606.2 MB (635,669,830 bytes)
    Shikat Chakroborty                      0 B (0 bytes)                           478.8 MB (502,098,450 bytes)
    Sharifur Rahman                         0 B (0 bytes)                           5.416 GB (5,815,026,349 bytes
    Ruwan Malaka                            430.2 MB (451,092,439 bytes)            170.9 MB (179,223,072 bytes)
    Zahirul Islam Bhuyan                    195.2 MB (204,700,069 bytes)            9.159 MB (9,604,104 bytes)
    Tcqc                                    237.1 MB (248,617,669 bytes)            173.7 MB (182,156,355 bytes)
    VQP Regency                             2.878 MB (3,017,800 bytes)              218.6 MB (229,240,217 bytes)
    Rasika Sampath                          454.2 MB (476,295,639 bytes)            244.4 MB (256,223,423 bytes)
    Shafiuddin Khan                         546.9 MB (573,459,996 bytes)            1.342 MB (1,406,906 bytes)
    Utpal Nandi                             460.5 MB (482,830,071 bytes)            18.51 MB (19,410,816 bytes)
    Sales                                   193.7 MB (203,068,619 bytes)            168.9 MB (177,141,047 bytes)
    Sayem Taher                             75.54 MB (79,212,457 bytes)             163.9 MB (171,859,725 bytes)
    Raja Amitabh                            148.9 MB (156,126,687 bytes)            110.2 MB (115,574,442 bytes)
    Zahid Hassan                            363.9 KB (372,637 bytes)                248.1 MB (260,159,947 bytes)
    Shadekul Islam                          428.6 MB (449,439,528 bytes)            200.6 MB (210,304,951 bytes)
    Rajeswari Chakraborty                   182.7 MB (191,561,374 bytes)            1.439 MB (1,509,076 bytes)
    U3 Packing1                             223.2 MB (234,074,358 bytes)            179.8 MB (188,553,828 bytes)
    Sharif Hossain                          1011 MB (1,060,202,202 bytes)           113.5 MB (119,007,940 bytes)
    Yaseer Arafat                           159.4 MB (167,169,198 bytes)            8.902 MB (9,334,332 bytes)
    U2 WashIn1                              36.09 MB (37,842,009 bytes)             11.16 KB (11,424 bytes)
    Syed Reza                               310.4 MB (325,449,693 bytes)            30.93 MB (32,432,901 bytes)
    U3 Lean                                 1.109 MB (1,163,269 bytes)              77.34 MB (81,096,400 bytes)
    Rakhi Biswas                            173.4 MB (181,870,437 bytes)            3.989 MB (4,182,945 bytes)
    U5 Production                           16.46 MB (17,258,907 bytes)             15.4 KB (15,768 bytes)
    U2 Production                           356.1 MB (373,401,226 bytes)            177.3 MB (185,885,769 bytes)
    Salauddin Bahadur                       392.5 MB (411,606,458 bytes)            10.42 MB (10,929,854 bytes)
    Shahdat Hossain                         337.3 MB (353,651,438 bytes)            160.1 MB (167,855,662 bytes)
    U She San                               268.6 MB (281,691,598 bytes)            545.4 KB (558,494 bytes)
    Santanu Kishore                         244.2 KB (250,045 bytes)                150.9 MB (158,262,207 bytes)
    Ruhul Amin                              213.5 MB (223,821,972 bytes)            143.3 MB (150,217,199 bytes)
    Shyamoli Chowdhury                      525.2 MB (550,714,034 bytes)            5.088 MB (5,335,500 bytes)
    U6 Lean                                 20.33 MB (21,319,466 bytes)             9.902 KB (10,140 bytes)
    Sanira Wickramanayake                   133.3 KB (136,498 bytes)                174.6 MB (183,080,110 bytes)
    R Dutta                                 0 B (0 bytes)                           238.1 MB (249,712,560 bytes)
    Samsur Rahman (Finishing)               356.4 MB (373,703,619 bytes)            60.65 MB (63,594,981 bytes)
    Rezlan Ossen                            223.1 MB (233,885,714 bytes)            18.22 MB (19,107,285 bytes)

    Check if user has Litigation or Retention hold enabled. That is one of the condition where Exchange doesn't delete the deleted items even after retention period is over and grows the deleted items size...
    get-mailbox username | select *litigationhold*, *retentionhold*
    Find the reason on why hold was enabled and it is ok now to disable it from compliance/legal prospective...
    You can disable it using below cmdlet
    Set-Mailbox username -LitigationHoldEnabled $false -RetentionHoldEnabled $false
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

Maybe you are looking for

  • Voice Memos playback when not in foreground?

    Can the Voice Memos app be configured to play when it is not in the foreground? By default, if Voice Memos is playing a recording and I press the Home button to get to another app, playback immediately ceases. Thanks.

  • Time Machine, external hard drive and more

    Guys, I am very excited about the release of Leopard and in preparation, want to obtain separate external hards drive for use with Time Machine. I've got a Mac Pro 3Ghz with 3 Terabytes of hard disk space, 4Gig Ram. What would I need in terms of size

  • Connect my ipad to my HDTV

    Hi all I have just ordered an iPad 2. I want to be able to connect it to my tv and a projector at work using either RCA or VGA connectors. Will this display everything thing that is on my screen? eg the springboard/home screen as well as different ap

  • Can we have everything about Oracle in one drive?

    Hello, everybody, We got a backup database server. Since it is just for backup, we don't want to spend too much $ on this one. My question is: can we have everything about Oracle installled in the same drive? It means that Archive, Redo Logs, Oracle

  • Parsing a date object

    I need to be able to parse out the month, day of month and the time from a date object into separate fields. I know I can use the getTime() method to retrieve the milliseconds which I believe I can work with, but I also need the month and day.