Precision of the POWER function

Hi,
I found something strange with the POWER function.
In SQLPLUS (or SQL Developer)
SQL> column test format 9.9999999999999999999999999999999999999999999
SQL> select power(9,0.5) test from dual;
TEST
3.0000000000000000000000000000000000000100000
SQL> select power(4,0.5) test from dual;
TEST
1.9999999999999999999999999999999999999900000
These results should be equal respectively to 3 and 2? SQRT function returns the correct result... Is it a bug or did I miss something in my maths course?? ;o)
Thanks
Christophe

You will get that ->
satyaki>
satyaki>select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production
Elapsed: 00:00:00.26
satyaki>
satyaki>select round(power(9,0.5)) test from dual;
      TEST
         3
Elapsed: 00:00:01.00
satyaki>
satyaki>select round(power(4,0.5)) test from dual;
      TEST
         2
Elapsed: 00:00:00.04
satyaki>
satyaki>Regards.
Satyaki De

Similar Messages

  • Calculate the power of 2

    calculate this value's X to the power of 2
    For example,
    if value X=4 the answer would be 2^4 =16
    float X = 4
    float Y = (2^X)
    how do you define the power of 2 in objective c?

    Like in C, which does not have an exponentiation operator.
    You either need to use multiple multiplications or the pow() function. In your case:
    pow(2,4)
    I don't know if Objective-C or Apple has defined any other functions for this (like a math library).
    (You will need math.h for this to work.)
    Message was edited by: Keith Barkley

  • Ipad 2 screen is black . when i press the power button it takes a screen shot but i have no functionality . tried holding the home and power button together but the screen just flicker and stay black . no apple icon shows up. help please

    ipad 2 screen is black . when i press the power button it takes a screen shot but i have no functionality . tried holding the home and power button together but the screen just flicker and stay black . no apple icon shows up. help please

    Make sure it is charged for about 10min using the adapter, then connect in recovery mode, explained in this article:
    If you can't update or restore your iOS device

  • My mac won't wake up from a sleep and I have to unplug it to reboot as the power button doesn't function as well.  Any suggestions?  Running Lion 10.7.4 and sending all reports in.

    My mac won't wake up from a sleep and I have to unplug it to reboot as the power button doesn't function as well.  Any suggestions?  Running Lion 10.7.4 and sending all reports in to Apple.

    First things first:
    Update your profile (equipent, OSX, etc)
    In Lion MS office2004 is not compatible, are you stIll using it?
    Do the SMC RESET and do the PRAM reset.

  • The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.

    The below function is giving me the hours difference what I wanted, but today it is giving us the below error: 
    Msg 535, Level 16, State 0, Line 1
    The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.
    Please Help..
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
        if datepart(weekday,@StartDate) = 1
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
        if datepart(weekday,@StartDate) = 7
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
        -- if @EndDate happens on the weekend, set to previous Saturday 12AM
        -- to count all of Friday's hours
        if datepart(weekday,@EndDate) = 1
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
        if datepart(weekday,@EndDate) = 7
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
        declare @return decimal(12,3)
        set @return = ((datediff(second,@StartDate,@EndDate)/60.0/60.0) - (datediff(week,@StartDate,@EndDate)*48))
        return @return
    end
    ReportingServices

    You'll get this error if the difference between the start and end date is greater that about 68 years due to the "second" DATEDIFF specification.  Perhaps the dates are greater than the expected range due to a data quality issue. 
    Taking the advice from the error message, you could use minutes instead of seconds like the example below the version below.  This could still result in the error of the difference is greater than a couple of hundred years, though.  You might consider
    validating the dates and returning NULL if outside expected limits.
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
    if datepart(weekday,@StartDate) = 1
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
    if datepart(weekday,@StartDate) = 7
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
    -- if @EndDate happens on the weekend, set to previous Saturday 12AM
    -- to count all of Friday's hours
    if datepart(weekday,@EndDate) = 1
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
    if datepart(weekday,@EndDate) = 7
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
    declare @return decimal(12,3)
    set @return = ((datediff(minute,@StartDate,@EndDate)/60.0) - (datediff(week,@StartDate,@EndDate)*48))
    return @return
    end
    GO
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • I need to hard reset a Palm TX but the Power button does not function.

    I need to hard reset my Palm TX but the Power button does not function. Is there any other way to perform the hard reset or otherwise delete all of my data?
    Post relates to: Palm TX

    Hi,
    PowerBtn from the Canuck Software HomePage.
    NOTE: This is Not a Blazer friendly download and only for downloading using a Chunky Computer thingie.
    http://www.canuck-software.ca/
    PowerBtn will allow you to set a HardButton to turn the TX on and off in the same fashion as the PowerButton, if you want.
    This setting will remain active while 'Enable' on the PowerBtn screen is active.
    The user can select 'Disable' on the PowerBtn screen.
    The setting will survive a Soft Reset. (Hi PG )
    If the Palm PowerButton fails completely then you will not be able to do a Hard Reset.
    The PowerBtn app has a 'Hard Reset button' which you tap and after a time countdown (you can cancel in this time) it will perform a Hard Reset. This is the same as the Hard Reset app mentioned above.
    The 'Enable' and 'Disable' mentioned above do not affect the 'Hard Reset button'
    NOTE: PowerBtn also has a 'Program itself becomes power button' feature but I do NOT recommend you use this.
    If you enable this you will not be able to change the setting or use the 'Hard Reset button' because when you Tap on the PowerBtn Icon the TX will turn Off. The only way to change the setting or use the 'Hard Reset button' would be to Delete PowerBtn then install again.
    You can also turn your TX On by pushing the 5WayNav Select (middle button) to bring up the clock then double push it. The TX will stay on at the same place it was in when you turned it off, in the same way it would if you used the Power Button
    All the best, woz of oz
    Post relates to: Palm TX

  • HT201150 the function of the power

    can can you switch the function of the power to where you hit it once it brings up the dialog box and holding it for 1.5 sec will put the mac to sleep

    In System Preferences > Keyboard uncheck Use all F1, F2, etc. keys as standard function keys.

  • My iphone 4 photo auto rotation was not functioning, might be accidentally locked as I can see a locked symbol with a circle with an arroe surrounding it at the top right angle , next to the power % indicator. Please advise how to unlock it.

    My iphone 4 photo/message auto rotation was not functioning, might be accidentally locked as I can see a locked symbol with a circle with an arroe surrounding it at the top right angle , next to the power % indicator. This function was working perfectly since day 1.
    Please advise how to unlock it.

    Swipe upwards from the bottom of the screen to open Control Center. You will then find the orientation lock in the top row, last icon on the right. White is on, black is off. Tap and turn it off. If you see the lock symbol, then orientation lock is on, and that is what is keeping it in the portrait mode.

  • I love the 6th Gen. iPod Nano but it has a major deficiency, the power button. I've bought 2 and they both have given me the same issue of the power button becoming slack and not functioning. Why is this so, and how can I fix it??

    MAJOR DEFICIENCY = WASTED MONEY:
    I love the 6th Gen. iPod Nano but it has a major deficiency, the power button. I've bought 2 and they both have given me the same issue of the power button becoming slack and not functioning. Why is this so, and how can I fix it??

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • My iphone wont turn on and the power button is not functioning

    my iphonw wont turn on and the power button is not functioning

    If your power button is broken, there's not much you can do. You could go to an Apple store & do an out of warranty exchange...Apple doesn't fix iPhones, they replace them. But, I wouldn't recommend doing so, as the iPhone 3G was discontinued almost three years ago & won't run most apps in the app store.
    You'd be better served by selling it for parts & using the money to purchase a new phone.

  • I got a new apple iPhone 6 today and the power button is not responding after functioning for some time

    i got a new iPhone 6 today itself . i didn't put a sim in it. and after few start ups the power button stopped responding can anyone please help me with that

    Take the issue up with whomever replaced the device, whether that is Apple or another company.
    There is nothing that we, your fellow users, in these user to user support forums can do for you.

  • Can I simply swap the power lead over & it will function the same?

    Can I just use a UK plug on the EU item? I have an Apple airport extreme 5th  gen MD031Z/A  which I used during my time in Germany.  I was just wondering if it will work the same in the UK, if I simply replace the European power cord with a UK figure 8 power cord?
    Are the MD031Z/A (EU version) and the MD031B/A (UK plug) exactly the same? Apart from the power supply?
    I just don't want to damage the unit by swapping the cord?
    Thanks

    The AirPort Extreme will run on 100-240 Volts and 50-60 Hz, so power wise, it will work just about anywhere in the world if you have the right power adapter or power cord for the wall sockets where you will be going.
    Last time I checked the wireless standards were the same in the UK and the rest of Europe, except Switzerland, so things should be fine in that regard.
    A bit more information here:
    http://store.apple.com/us/question/answers/readonly/im-checking-the-uae-online-s tore-i-see-it-listed-twice-one-carrying-model-md031b-the-other-is-md031z/QXD4CC2 UFJ7JYKT27

  • Enabling the printing function of your HP Laserjet M1005 printer

    If you wonder how to install the printing function of your HP Laserjet M1005 printer, here is listed a bullet list of the actions. This has just been tested out thanks to the Support team from Germany
    Go to the page http://h20000.www2.hp.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=1 839459&lang=en&cc=us&prodTypeId=18972&prodSeriesId=1839458&taskId=135 and select the link Mac OS X; download the link "HP LaserJet M1005 MFP Mac OS X Full Software Solution"
    Use the opportunity to update your printer firmware by selecting the link "Printer Firmware Update"
    Shutdown your Mac and start up in the safe boot mode (should be the combined keyboard shift and power on/off - refer to the Apple web site for details)
    Run the downloaded SW package listed in the step 1
    Go and select under system settings printer and fax, follow the step-by-step instructions to have a printer installed
    Shutdown your Mac and start up again in the safe boot mode
    Connect your printer and the printer SW installation message shoud pop up requesting you to install it
    SW download process should appear and run
    Be aware that just the printing function will be available - no scanning function so far
    For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation.
    Continue to enjoy your HP Laserjet M1005 printer

    "For those who may be interested in knowing why safe boot mode: it is likelz that my anti-virus SW Kaspersky denied the installation."
    You should read this:
    http://www.reedcorner.net/mmg-antivirus/

  • Mid 2011 Macbook Air - Yosemite keyboard and trackpad stopped working, the only button that worked was the power button, only one USB port works.

    I have a Mid 2011 Macbook Air.
    Upgraded to Yosemite last week.
    Three days ago I was using my Macbook Air for the first time since upgrading to Yosemite. I had been using my Macbook Air for approximately 30 minutes, I was using safari and the keyboard and trackpad stopped working (would not respond). The only button that worked was the power button.
    I rebooted and they were still not working. I plugged in a USB mouse and external USB keyboard, only one USB port would work (the Left USB port if looking at the screen) so I had to swap between keyboard and mouse.
    After logging in there is a bluetooth icon at the top of the screen with a sawtooth line through it. Bluetooth is unavailable and the bluetooth icon is missing from the system preferences menu.
    If I run a hardware test by holding D (on USB keyboard) at startup it says that no problems are found and at the conclusion of the test the keyboard and trackpad start working again. When I log on the bluetooth is working again.
    I shut down the Macbook Air and when I started it again the keyboard and trackpad and right side USB ports were all not working again. I logged in using the USB keyboard and mouse and the bluetooth not available sawtooth icon had returned.
    I ran the hardware test again and at the conclusion of the test the trackpad and keyboard started working again.
    I have tried deleting com.apple.Bluetooth.plist and com.apple.Bluetooth.plist.lockfile from /Library/Preferences/ and tried resetting SMC and Power Functions but this did not fix the issue. The only thing that seems to work is running a hardware test - obviously I don't want to do this every time I use the computer.
    I do not believe any hardware is faulty/damaged - I think it has something to do with bluetooth/Yosemite.
    I do not have the Macbook with me at the moment, if you have suggestions that I can try or additional checks/info you require please let me know and I can get back to you.
    Thanks,
    John

    Hi!
    I have exactly the same problem, and I can't find any solution.
    I can't even track down the root of the problem: the Bluetooth/Wifi module? The trackpad? The keyboard/top case? The logicboard?
    I've tried all the usual: SMC/PRAM reset, clean install, kext cache clearing.
    Any suggestion is greatly appreciated!

  • TS3694 iPhone 5.....during update to iOS 7 I have lost the power supply (blackout)

    this issue , happen to my iPhone 5.....during update to iOS 7 I have lost the power supply (blackout)
    Sudden screen : USB pointing to iTunes . it shows that it need a restore and update .. after downloading the software
    and extracting .. found Error1 at the point Verify firmware . AGAIN AND
    and this is the log ..
    2014-08-11 15:46:30.611 [4472:1648]: restore library built Feb 12 2014 at 16:27:17
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: iTunes 11.3.1.2
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: Software payload version: 11D257 (option key)
    2014-08-11 15:46:30.611 [4472:1648]: iTunes: Using MobileRestore state machine
    [13:47:25.0555] Changing state from 'Idle' to 'Restoring'
    [13:47:25.0555] device software does not support nonce generation
    [13:47:25.0555] requested restore behavior: Erase
    [13:47:25.0570] requested variant: Erase
    [13:47:25.0570] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 061FEA80 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 061FD2E0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:26.0553] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:26.0569] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 0BA32F38 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:47:26.0569] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [13:47:26.0569] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re quest.plist
    [13:47:27.0068] amai: tss_submit_job: HttpQueryInfo returned 200
    [13:47:27.0286] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [13:47:27.0286] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re sponse.plist
    [13:47:27.0318] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [13:47:27.0333] <DFU Device 0562C260>: production fused device
    [13:47:27.0333] requested restore behavior: Erase
    [13:47:27.0333] device software does not support nonce generation
    [13:47:27.0349] WinDFU::OpenDFUDevice: path: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#93126bb7
    [13:47:27.0349] WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#93126bb7
    [13:47:27.0364] <DFU Device 0562C260>: operation 0 progress 2
    [13:47:27.0380] <DFU Device 0562C260>: operation 0 progress 5
    [13:47:27.0396] <DFU Device 0562C260>: operation 0 progress 8
    [13:47:27.0411] <DFU Device 0562C260>: operation 0 progress 10
    [13:47:27.0427] <DFU Device 0562C260>: operation 0 progress 13
    [13:47:27.0442] <DFU Device 0562C260>: operation 0 progress 16
    [13:47:27.0458] <DFU Device 0562C260>: operation 0 progress 18
    [13:47:27.0474] <DFU Device 0562C260>: operation 0 progress 21
    [13:47:27.0489] <DFU Device 0562C260>: operation 0 progress 24
    [13:47:27.0505] <DFU Device 0562C260>: operation 0 progress 26
    [13:47:27.0520] <DFU Device 0562C260>: operation 0 progress 29
    [13:47:27.0536] <DFU Device 0562C260>: operation 0 progress 32
    [13:47:27.0552] <DFU Device 0562C260>: operation 0 progress 34
    [13:47:27.0567] <DFU Device 0562C260>: operation 0 progress 37
    [13:47:27.0583] <DFU Device 0562C260>: operation 0 progress 40
    [13:47:27.0598] <DFU Device 0562C260>: operation 0 progress 42
    [13:47:27.0614] <DFU Device 0562C260>: operation 0 progress 45
    [13:47:27.0630] <DFU Device 0562C260>: operation 0 progress 48
    [13:47:27.0645] <DFU Device 0562C260>: operation 0 progress 50
    [13:47:27.0661] <DFU Device 0562C260>: operation 0 progress 53
    [13:47:27.0676] <DFU Device 0562C260>: operation 0 progress 56
    [13:47:27.0692] <DFU Device 0562C260>: operation 0 progress 59
    [13:47:27.0708] <DFU Device 0562C260>: operation 0 progress 61
    [13:47:27.0723] <DFU Device 0562C260>: operation 0 progress 64
    [13:47:27.0739] <DFU Device 0562C260>: operation 0 progress 67
    [13:47:27.0754] <DFU Device 0562C260>: operation 0 progress 69
    [13:47:27.0770] <DFU Device 0562C260>: operation 0 progress 72
    [13:47:27.0786] <DFU Device 0562C260>: operation 0 progress 75
    [13:47:27.0801] <DFU Device 0562C260>: operation 0 progress 77
    [13:47:27.0817] <DFU Device 0562C260>: operation 0 progress 80
    [13:47:27.0832] <DFU Device 0562C260>: operation 0 progress 83
    [13:47:27.0848] <DFU Device 0562C260>: operation 0 progress 85
    [13:47:27.0864] <DFU Device 0562C260>: operation 0 progress 88
    [13:47:27.0879] <DFU Device 0562C260>: operation 0 progress 91
    [13:47:27.0895] <DFU Device 0562C260>: operation 0 progress 93
    [13:47:27.0910] <DFU Device 0562C260>: operation 0 progress 96
    [13:47:27.0926] <DFU Device 0562C260>: operation 0 progress 99
    [13:47:27.0926] WinDFU::UploadData: EOF, cbRead: 554
    [13:47:27.0942] <DFU Device 0562C260>: operation 0 progress 100
    [13:47:27.0942] WinDFU::UploadData: ZLP
    [13:47:27.0957] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    [13:47:27.0957] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    [13:47:27.0957] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    [13:47:27.0957] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    [13:47:30.0968] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    [13:47:30.0968] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    [13:47:30.0968] WinDFU::ResetDevice: resetting...
    [13:47:31.0046] WinDFU::FinalizeDfuUpdate: success
    [13:47:31.0046] <DFU Device 0562C260>: DFU succeeded
    [13:47:31.0046] Finished DFU Restore Phase: Successful
    [13:47:31.0218] DFU mode device disconnected
    [13:47:31.0218] Device removed when in state Restoring, moving device to transition state
    [13:47:31.0218] Changing state from 'Restoring' to 'Transitioning'
    [13:47:31.0218] Creating timer to monitor transition
    [13:47:32.0175] DFU mode device connected
    [13:47:32.0175] Transitioning device returned, continuing restore.
    [13:47:32.0175] Canceling timer
    [13:47:32.0175] Changing state from 'Transitioning' to 'Restoring'
    [13:47:32.0175] AppleDevice::GetDeviceID: failed for iBoot
    [13:47:32.0175] requested restore behavior: Erase
    [13:47:32.0175] requested variant: Erase
    [13:47:32.0175] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 061FDC70 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 061FE378 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0B9D5148 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0033] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0B9D5190 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0B9D51D8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0B9D5220 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0B9D5268 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 0B9D52B0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0B9D52F8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0B9D5340 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 0B9D5388 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0B9D53D0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0B9D5418 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0B9D5460 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 0B9D54A8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 06266350 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 06266398 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 062663E0 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [13:47:33.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 064698C8 [7161907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:47:33.0064] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [13:47:33.0064] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re quest.plist
    [13:47:33.0298] amai: tss_submit_job: HttpQueryInfo returned 200
    [13:47:33.0501] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [13:47:33.0501] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Dell/AppData/Local/Temp/Per2046.tmp/amai/debug/tss-re sponse.plist
    [13:47:33.0501] amai: _AMAuthInstallBundleInstallPersonalizedEntry: entry "iBSS" has been previously personalized; skipping it
    [13:47:33.0501] amai: _AMAuthInstallBundleInstallPersonalizedEntry: entry "LLB" has been previously personalized; skipping it
    [13:47:33.0517] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [13:47:33.0532] <DFU Device 0BA2A9D8>: production fused device
    [13:47:33.0532] requested restore behavior: Erase
    [13:47:33.0532] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:33.0532] AppleDevice::GetDeviceID: failed for iBoot
    [13:47:33.0532] WinDFU::OpenDFUDevice: path: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#ca28221e
    [13:47:33.0532] WinDFU::OpenDeviceByPath: \\?\USB#VID_05AC&PID_1227#{B8085869-FEB9-404B-8CB1-1E5C14FA8C54}\0000#ca28221e
    [13:47:33.0564] <DFU Device 0BA2A9D8>: operation 0 progress 0
    [13:47:33.0579] <DFU Device 0BA2A9D8>: operation 0 progress 1
    [13:47:33.0595] <DFU Device 0BA2A9D8>: operation 0 progress 2
    [13:47:33.0626] <DFU Device 0BA2A9D8>: operation 0 progress 3
    [13:47:33.0642] <DFU Device 0BA2A9D8>: operation 0 progress 4
    [13:47:33.0657] <DFU Device 0BA2A9D8>: operation 0 progress 5
    [13:47:33.0688] <DFU Device 0BA2A9D8>: operation 0 progress 6
    [13:47:33.0704] <DFU Device 0BA2A9D8>: operation 0 progress 7
    [13:47:33.0735] <DFU Device 0BA2A9D8>: operation 0 progress 8
    [13:47:33.0751] <DFU Device 0BA2A9D8>: operation 0 progress 9
    [13:47:33.0766] <DFU Device 0BA2A9D8>: operation 0 progress 10
    [13:47:33.0798] <DFU Device 0BA2A9D8>: operation 0 progress 11
    [13:47:33.0813] <DFU Device 0BA2A9D8>: operation 0 progress 12
    [13:47:33.0844] <DFU Device 0BA2A9D8>: operation 0 progress 13
    [13:47:33.0860] <DFU Device 0BA2A9D8>: operation 0 progress 14
    [13:47:33.0876] <DFU Device 0BA2A9D8>: operation 0 progress 15
    [13:47:33.0907] <DFU Device 0BA2A9D8>: operation 0 progress 16
    [13:47:33.0922] <DFU Device 0BA2A9D8>: operation 0 progress 17
    [13:47:33.0954] <DFU Device 0BA2A9D8>: operation 0 progress 18
    [13:47:33.0969] <DFU Device 0BA2A9D8>: operation 0 progress 19
    [13:47:33.0985] <DFU Device 0BA2A9D8>: operation 0 progress 20
    [13:47:34.0016] <DFU Device 0BA2A9D8>: operation 0 progress 21
    [13:47:34.0032] <DFU Device 0BA2A9D8>: operation 0 progress 22
    [13:47:34.0063] <DFU Device 0BA2A9D8>: operation 0 progress 23
    [13:47:34.0078] <DFU Device 0BA2A9D8>: operation 0 progress 24
    [13:47:34.0094] <DFU Device 0BA2A9D8>: operation 0 progress 25
    [13:47:34.0125] <DFU Device 0BA2A9D8>: operation 0 progress 26
    [13:47:34.0141] <DFU Device 0BA2A9D8>: operation 0 progress 27
    [13:47:34.0172] <DFU Device 0BA2A9D8>: operation 0 progress 28
    [13:47:34.0188] <DFU Device 0BA2A9D8>: operation 0 progress 29
    [13:47:34.0203] <DFU Device 0BA2A9D8>: operation 0 progress 30
    [13:47:34.0234] <DFU Device 0BA2A9D8>: operation 0 progress 31
    [13:47:34.0250] <DFU Device 0BA2A9D8>: operation 0 progress 32
    [13:47:34.0281] <DFU Device 0BA2A9D8>: operation 0 progress 33
    [13:47:34.0297] <DFU Device 0BA2A9D8>: operation 0 progress 34
    [13:47:34.0312] <DFU Device 0BA2A9D8>: operation 0 progress 35
    [13:47:34.0344] <DFU Device 0BA2A9D8>: operation 0 progress 36
    [13:47:34.0359] <DFU Device 0BA2A9D8>: operation 0 progress 37
    [13:47:34.0390] <DFU Device 0BA2A9D8>: operation 0 progress 38
    [13:47:34.0406] <DFU Device 0BA2A9D8>: operation 0 progress 39
    [13:47:34.0422] <DFU Device 0BA2A9D8>: operation 0 progress 40
    [13:47:34.0453] <DFU Device 0BA2A9D8>: operation 0 progress 41
    [13:47:34.0468] <DFU Device 0BA2A9D8>: operation 0 progress 42
    [13:47:34.0500] <DFU Device 0BA2A9D8>: operation 0 progress 43
    [13:47:34.0515] <DFU Device 0BA2A9D8>: operation 0 progress 44
    [13:47:34.0531] <DFU Device 0BA2A9D8>: operation 0 progress 45
    [13:47:34.0562] <DFU Device 0BA2A9D8>: operation 0 progress 46
    [13:47:34.0578] <DFU Device 0BA2A9D8>: operation 0 progress 47
    [13:47:34.0593] <DFU Device 0BA2A9D8>: operation 0 progress 48
    [13:47:34.0624] <DFU Device 0BA2A9D8>: operation 0 progress 49
    [13:47:34.0640] <DFU Device 0BA2A9D8>: operation 0 progress 50
    [13:47:34.0671] <DFU Device 0BA2A9D8>: operation 0 progress 51
    [13:47:34.0687] <DFU Device 0BA2A9D8>: operation 0 progress 52
    [13:47:34.0702] <DFU Device 0BA2A9D8>: operation 0 progress 53
    [13:47:34.0734] <DFU Device 0BA2A9D8>: operation 0 progress 54
    [13:47:34.0749] <DFU Device 0BA2A9D8>: operation 0 progress 55
    [13:47:34.0780] <DFU Device 0BA2A9D8>: operation 0 progress 56
    [13:47:34.0796] <DFU Device 0BA2A9D8>: operation 0 progress 57
    [13:47:34.0812] <DFU Device 0BA2A9D8>: operation 0 progress 58
    [13:47:34.0843] <DFU Device 0BA2A9D8>: operation 0 progress 59
    [13:47:34.0858] <DFU Device 0BA2A9D8>: operation 0 progress 60
    [13:47:34.0890] <DFU Device 0BA2A9D8>: operation 0 progress 61
    [13:47:34.0905] <DFU Device 0BA2A9D8>: operation 0 progress 62
    [13:47:34.0921] <DFU Device 0BA2A9D8>: operation 0 progress 63
    [13:47:34.0952] <DFU Device 0BA2A9D8>: operation 0 progress 64
    [13:47:34.0968] <DFU Device 0BA2A9D8>: operation 0 progress 65
    [13:47:34.0999] <DFU Device 0BA2A9D8>: operation 0 progress 66
    [13:47:35.0014] <DFU Device 0BA2A9D8>: operation 0 progress 67
    [13:47:35.0030] <DFU Device 0BA2A9D8>: operation 0 progress 68
    [13:47:35.0061] <DFU Device 0BA2A9D8>: operation 0 progress 69
    [13:47:35.0077] <DFU Device 0BA2A9D8>: operation 0 progress 70
    [13:47:35.0108] <DFU Device 0BA2A9D8>: operation 0 progress 71
    [13:47:35.0124] <DFU Device 0BA2A9D8>: operation 0 progress 72
    [13:47:35.0139] <DFU Device 0BA2A9D8>: operation 0 progress 73
    [13:47:35.0170] <DFU Device 0BA2A9D8>: operation 0 progress 74
    [13:47:35.0186] <DFU Device 0BA2A9D8>: operation 0 progress 75
    [13:47:35.0217] <DFU Device 0BA2A9D8>: operation 0 progress 76
    [13:47:35.0233] <DFU Device 0BA2A9D8>: operation 0 progress 77
    [13:47:35.0248] <DFU Device 0BA2A9D8>: operation 0 progress 78
    [13:47:35.0280] <DFU Device 0BA2A9D8>: operation 0 progress 79
    [13:47:35.0295] <DFU Device 0BA2A9D8>: operation 0 progress 80
    [13:47:35.0326] <DFU Device 0BA2A9D8>: operation 0 progress 81
    [13:47:35.0342] <DFU Device 0BA2A9D8>: operation 0 progress 82
    [13:47:35.0358] <DFU Device 0BA2A9D8>: operation 0 progress 83
    [13:47:35.0389] <DFU Device 0BA2A9D8>: operation 0 progress 84
    [13:47:35.0404] <DFU Device 0BA2A9D8>: operation 0 progress 85
    [13:47:35.0436] <DFU Device 0BA2A9D8>: operation 0 progress 86
    [13:47:35.0451] <DFU Device 0BA2A9D8>: operation 0 progress 87
    [13:47:35.0467] <DFU Device 0BA2A9D8>: operation 0 progress 88
    [13:47:35.0498] <DFU Device 0BA2A9D8>: operation 0 progress 89
    [13:47:35.0514] <DFU Device 0BA2A9D8>: operation 0 progress 90
    [13:47:35.0529] <DFU Device 0BA2A9D8>: operation 0 progress 91
    [13:47:35.0560] <DFU Device 0BA2A9D8>: operation 0 progress 92
    [13:47:35.0576] <DFU Device 0BA2A9D8>: operation 0 progress 93
    [13:47:35.0607] <DFU Device 0BA2A9D8>: operation 0 progress 94
    [13:47:35.0623] <DFU Device 0BA2A9D8>: operation 0 progress 95
    [13:47:35.0638] <DFU Device 0BA2A9D8>: operation 0 progress 96
    [13:47:35.0670] <DFU Device 0BA2A9D8>: operation 0 progress 97
    [13:47:35.0685] <DFU Device 0BA2A9D8>: operation 0 progress 98
    [13:47:35.0716] <DFU Device 0BA2A9D8>: operation 0 progress 99
    [13:47:35.0716] WinDFU::UploadData: EOF, cbRead: 1116
    [13:47:35.0732] <DFU Device 0BA2A9D8>: operation 0 progress 100
    [13:47:35.0732] WinDFU::UploadData: ZLP
    [13:47:35.0748] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 6
    [13:47:35.0748] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_SYNC
    [13:47:35.0748] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 7
    [13:47:35.0748] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST, PollTimeout: 3000
    [13:47:38.0758] WinDFU::FinalizeDfuUpdate: GetStatus: status: 0, state: 8
    [13:47:38.0758] WinDFU::ProcessUpdateState: status.bState == DFU_STATE_MANIFEST_WAIT_RESET
    [13:47:38.0758] WinDFU::ResetDevice: resetting...
    [13:47:38.0836] WinDFU::FinalizeDfuUpdate: success
    [13:47:38.0836] <DFU Device 0BA2A9D8>: DFU succeeded
    [13:47:38.0836] Finished DFU Restore Phase: Successful
    [13:47:39.0039] DFU mode device disconnected
    [13:47:39.0039] Device removed when in state Restoring, moving device to transition state
    [13:47:39.0039] Changing state from 'Restoring' to 'Transitioning'
    [13:47:39.0039] Creating timer to monitor transition
    [13:47:41.0674] Recovery mode device connected
    [13:47:41.0674] Transitioning device returned, continuing restore.
    [13:47:41.0674] Canceling timer
    [13:47:41.0674] Changing state from 'Transitioning' to 'Restoring'
    [13:47:41.0684] requested restore behavior: Erase
    [13:47:41.0684] requested variant: Erase
    [13:47:41.0684] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:42.0512] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:42.0528] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [13:47:42.0528] iBoot build-version = iBoot-1940.10.58
    [13:47:42.0528] iBoot build-style = RELEASE
    [13:47:42.0528] requested restore behavior: Erase
    [13:47:42.0528] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0528] requested restore behavior: Erase
    [13:47:42.0528] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] unable to open device_map.txt: No such file or directory
    [13:47:42.0543] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:42.0543] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:42.0543] AMDeviceIoControl: GetOverlappedResult failed
    [13:47:42.0543] AMDeviceIoControl: pipe stall
    [13:47:42.0543] USBControlTransfer: error 31, usbd status c0000004
    [13:47:42.0543] command device request for 'getenv radio-error' failed: 2008
    [13:47:42.0543] radio-error not set
    [13:47:42.0543] unable to open device_map.txt: No such file or directory
    [13:47:42.0543] <Recovery Mode Device 0555AEB8>: production fused device
    [13:47:42.0543] requested restore behavior: Erase
    [13:47:42.0543] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] requested restore behavior: Erase
    [13:47:42.0543] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0543] interface has 1 endpoints, file pipe = 1
    [13:47:42.0543]
    [13:47:42.0543] <Recovery Mode Device 0555AEB8>: operation 4 progress -1
    [13:47:42.0606] unable to open device_map.txt: No such file or directory
    [13:47:42.0606] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:42.0606] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0606] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0606] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:42.0606] <Recovery Mode Device 0555AEB8>: operation 42 progress -1
    [13:47:42.0606] requested restore behavior: Erase
    [13:47:42.0621] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:43.0651] <Recovery Mode Device 0555AEB8>: operation 5 progress -1
    [13:47:43.0994] unable to open device_map.txt: No such file or directory
    [13:47:43.0994] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:43.0994] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:43.0994] AMDeviceIoControl: GetOverlappedResult failed
    [13:47:43.0994] AMDeviceIoControl: pipe stall
    [13:47:43.0994] USBControlTransfer: error 31, usbd status c0000004
    [13:47:43.0994] command device request for 'getenv ramdisk-delay' failed: 2008
    [13:47:45.0616] <Recovery Mode Device 0555AEB8>: operation 6 progress -1
    [13:47:46.0630] <Recovery Mode Device 0555AEB8>: operation 7 progress -1
    [13:47:46.0942] <Recovery Mode Device 0555AEB8>: operation 8 progress -1
    [13:47:46.0958] unable to open device_map.txt: No such file or directory
    [13:47:46.0958] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [13:47:46.0958] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [13:47:46.0958] <Recovery Mode Device 0555AEB8>: operation 9 progress -1
    [13:47:46.0958] <Recovery Mode Device 0555AEB8>: Recovery mode succeeded
    [13:47:46.0958] Finished Recovery Restore Phase: Successful
    [13:47:48.0409] Recovery mode device disconnected
    [13:47:48.0409] Device removed when in state Restoring, moving device to transition state
    [13:47:48.0409] Changing state from 'Restoring' to 'Transitioning'
    [13:47:48.0409] Creating timer to monitor transition
    [13:47:52.0895] RestoreOS mode device connected
    [13:47:52.0895] Transitioning device returned, continuing restore.
    [13:47:52.0905] Canceling timer
    [13:47:52.0905] Changing state from 'Transitioning' to 'Restoring'
    [13:47:52.0905] <Restore Device 05577800>: operation 44 progress -1
    [13:47:52.0905] requested restore behavior: Erase
    [13:47:52.0905] requested variant: Erase
    [13:47:52.0905] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [13:47:53.0777] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [13:47:53.0792] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [13:47:53.0792] requested restore behavior: Erase
    [13:47:53.0792] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0792] device did not return saved USB log
    [13:47:53.0792] device did not return saved panic log
    [13:47:53.0792] previous restore failed with exit status 0x100
    [13:47:53.0792] connected to service com.apple.mobile.restored
    [13:47:53.0808] using protocol version 13
    [13:47:53.0808] unable to open device_map.txt: No such file or directory
    [13:47:53.0808] board config = n42ap
    [13:47:53.0808] no value returned for BootArgs
    [13:47:53.0824] _copyDeviceProperty() failed for restore bootargs
    [13:47:53.0824] no value returned for MarketingPartNumber
    [13:47:53.0824] _copyDeviceProperty() failed for mpn
    [13:47:53.0824] requested restore behavior: Erase
    [13:47:53.0824] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [13:47:53.0839] value query for 'HardwareModel' returned 'N42AP'
    [13:47:53.0839] <Restore Device 05577800>: operation 28 progress -1
    [13:48:10.0360] previous restore failed: re:INF@ 145] created partition 1 as 'Effaceable'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 2 as 'NVRAM'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 3 as 'Firmware'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 4 as 'Filesystem'
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 4
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 5 as 'System Config'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 6 as 'Diagnostic Data'
    [13:48:10.0360] [nand_part_core:INF@ 145] created partition 7 as 'Bad Block Table'
    [13:48:10.0360] com.apple.AppleFSCompressionTypeZlib load succeeded
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 7
    [13:48:10.0360] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x32600000(0x82cc6000)
    [13:48:10.0360] L2TP domain init
    [13:48:10.0360] L2TP domain init complete
    [13:48:10.0360] PPTP domain init
    [13:48:10.0360] AppleSwissPPNFTL started with IOFlashStoragePartition provider
    [13:48:10.0360] [NAND] _FindFlashMediaAndKeepout:601 physical nand block offset 1
    [13:48:10.0360] AppleNANDFTL registered[NAND] start:356 this 0x85e41800 PROVIDER=0x85f2a400 flashMedia=0x85f2a400
    [13:48:10.0360] [NAND] WMR_Start:149 Apple PPN NAND Driver, Read/Write
    [13:48:10.0360] [NAND] WMR_Start:174 FIL_Init  [OK]
    [13:48:10.0360] AppleSamsungSerial: Identified Serial Port on ARM Device=uart3 at 0x32800000(0xde3b4000)
    [13:48:10.0360] virtual bool AppleDisplayPipe::start_hardware(IOService *), auto-detect chip
    [13:48:10.0360] [NAND] WMR_Open:371 VFL_Open    [OK]
    [13:48:10.0360] Scaler 0 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] void AppleDisplayPipe::setupVideoDownscalingLimits(): minimum-frequency property not found, using getClockFrequency(0) instead.
    [13:48:10.0360] Scaler 1 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [13:48:10.0360] Scaler 1 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [13:48:10.0360] AppleMultitouchN1SPI: successfully started
    [13:48:10.0360] AppleH4CamIn::start - back camera expected
    [13:48:10.0360] AppleH4CamIn::start - front camera expected
    [13:48:10.0360] AppleH4CamIn::power_off_hardware
    [13:48:10.0360] AppleAP3DSH::probe found device with ID: 0x3f
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationMatrix [64699 -1892 -370] [-1570 65035 -244] [849 465 63854]
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationOffsets [518853 -714699 -1661621]
    [13:48:10.0360] AppleAP3DSH::handleStart - No calibration inverse matrix or the data is invalid, Compute locally
    [13:48:10.0360] AppleAP3DSH::handleStart _calibrationInverseMatrix [66427 1929 393] [1599 66087 261] [-895 -507 67257]
    [13:48:10.0360] AppleAP3DSH::handleStart _odr400HzSampleInterval = 2440
    [13:48:10.0360] AppleH4CamIn::setPowerStateGated: 0
    [13:48:10.0360] AppleCS35L19Amp: could not allocate control 395
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 1
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType USBHost
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 0
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType Detached
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableDetect 1
    [13:48:10.0360] AppleD1972PMUPowerSource: AppleUSBCableType USBHost
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [13:48:10.0360] display-scale = 2
    [13:48:10.0360] display-rotation = 0
    [13:48:10.0360] found applelogo at /usr/share/progressui/[email protected]
    [13:48:10.0360] found display: primary
    [13:48:10.0360] display: 640 x 1136
    [13:48:10.0360] found PTP interface
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: PTP
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [13:48:10.0360] IOAccessoryPortUSB::start
    [13:48:10.0360] virtual bool AppleUSBDeviceMux::start(IOService *) build: Jun 11 2014 20:11:28
    [13:48:10.0360] init_waste
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [13:48:10.0360] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [13:48:10.0360] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [13:48:10.0360] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [13:48:10.0360] AppleBCMWLANCore::init(): IO80211-46 Jun 11 2014 20:10:03
    [13:48:10.0360] [NAND] WMR_Open:420 FTL_Open    [OK]
    [13:48:10.0360] [NAND] _publishServices:642 FTL capabilities: 0x00000001
    [13:48:10.0360] [NAND] _ppnvflGetStruct:3469 Checking borrowed blocks - count: 23 max_count: 23
    [13:48:10.0360] [NAND] _fetchBorrowedList:881 number of borrowed blocks 16
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 0
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 1
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 2
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 3
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 5
    [13:48:10.0360] [nand_part_core:INF@ 157] published partition 6
    [13:48:10.0360] 000828.945879 wlan.N[0] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [13:48:10.0360] 000828.946182 wlan.N[1] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0xc476b000 (this 1, provider 0)
    [13:48:10.0360] 000828.946197 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [13:48:10.0360] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [13:48:10.0360] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [13:48:10.0360] IO80211PeerManager::initWithInterface cant add monitoring timer
    [13:48:10.0360] Started logging for intf
    [13:48:10.0360] IO80211PeerManager::initWithInterface: inited peer manager
    [13:48:10.0360] IO80211Interface::init peerManager=0x87cb8800
    [13:48:10.0360] start:156
    [13:48:10.0360] start:156
    [13:48:10.0360] AppleARMBacklight::start: No AAP function
    [13:48:10.0360] [effaceable:INIT] found current generation, 90, in group 1
    [13:48:10.0360] [effaceable:INIT] started
    [13:48:10.0360] [effaceable:INIT] started
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49152 62078<-usb->4608
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49153 62078<-usb->4864
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888adec8 established 62078<-lo0->49154 62078<-usb->5120
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade18 established 62078<-lo0->49155 62078<-usb->5376
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888adec8
    [13:48:10.0360] recv(13, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade18
    [13:48:10.0360] recv(14, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade18 established 62078<-lo0->49156 62078<-usb->5632
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49157 62078<-usb->5888
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49158 62078<-usb->6144
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49159 62078<-usb->6400
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49160 62078<-usb->6656
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49161 62078<-usb->6912
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49162 62078<-usb->7168
    [13:48:10.0360] unrecognized key 'BootArgs' in value query
    [13:48:10.0360] failed to handle value query for key 'BootArgs', sending back empty response
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49163 62078<-usb->7424
    [13:48:10.0360] unrecognized key 'MarketingPartNumber' in value query
    [13:48:10.0360] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] AppleUSBDeviceMux::handleConnectResult new session 0x888ade70 established 62078<-lo0->49164 62078<-usb->7680
    [13:48:10.0360] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x888ade70
    [13:48:10.0360] recv(9, 4) failed: connection closed
    [13:48:10.0360] unable to read message size: -1
    [13:48:10.0360] could not receive message
    [13:48:10.0360] client protocol version 13
    [13:48:10.0360] *** UUID 4B2AC217-7071-EC47-8945-EB5E2188BE49 ***
    [13:48:10.0360] Restore options:
    [13:48:10.0360]  UUID                           => <CFString 0x19315c0 [0x2f3ad0]>{contents = "4B2AC217-7071-EC47-8945-EB5E2188BE49"}
    [13:48:10.0360]  MinimumSystemPartition         => <CFNumber 0x1931510 [0x2f3ad0]>{value = +1660, type = kCFNumberSInt64Type}
    [13:48:10.0360]  SystemPartitionSize            => <CFNumber 0x1930f50 [0x2f3ad0]>{value = +1660, type = kCFNumberSInt64Type}
    [13:48:10.0360]  SystemPartitionPadding         => <CFBasicHash 0x192f3c0 [0x2f3ad0]>{type = mutable dict, count = 5,
    [13:48:10.0360] entries =>
    [13:48:10.0360]  2 : <CFString 0x1931540 [0x2f3ad0]>{contents = "128"} = <CFNumber 0x1931570 [0x2f3ad0]>{value = +1280, type = kCFNumberSInt64Type}
    [13:48:10.0360]  3 : <CFString 0x1930f20 [0x2f3ad0]>{contents = "16"} = <CFNumber 0x192f3f0 [0x2f3ad0]>{value = +160, type = kCFNumberSInt64Type}
    [13:48:10.0360]  4 : <CFString 0x192ede0 [0x2f3ad0]>{contents = "32"} = <CFNumber 0x1931250 [0x2f3ad0]>{value = +320, type = kCFNumberSInt64Type}
    [13:48:10.0360]  5 : <CFString 0x1931960 [0x2f3ad0]>{contents = "8"} = <CFNumber 0x192ed50 [0x2f3ad0]>{value = +80, type = kCFNumberSInt64Type}
    [13:48:10.0360]  8 : <CFString 0x1931180 [0x2f3ad0]>{contents = "64"} = <CFNumber 0x1931950 [0x2f3ad0]>{value = +640, type = kCFNumberSInt64Type}
    [13:48:10.0360] }
    [13:48:10.0360]
    [13:48:10.0360] entering load_sep_os
    [13:48:10.0360] device has no sep
    [13:48:10.0360] entering partition_nand_device
    [13:48:10.0360] device supports boot-from-NAND
    [13:48:10.0360] nand device is already partitioned
    [13:48:10.0360] entering wait_for_storage_device
    [13:48:10.0360] Searching for NAND service
    [13:48:10.0360] Found NAND service: IOFlashStoragePartition
    [13:48:10.0360] NAND initialized. Waiting for devnode.
    [13:48:10.0360] entering clear_remap_variable
    [13:48:10.0360] executing /usr/sbin/nvram
    [13:48:10.0360] entering format_effaceable_storage
    [13:48:10.0360] effaceable storage is formatted, clearing it
    [13:48:10.0360] effaceable storaged cleared
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] AppleD1972PMUPowerSource: limiting USB input current to 390 mA (measured 462 mA)
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is Sochi11D257.N42OS
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume Sochi11D257.N42OS appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] entering check_for_restore_log
    [13:48:10.0360] found restore log (size = 28347)
    [13:48:10.0360] entering unmount_filesystems
    [13:48:10.0360] error unmounting '/mnt2': Invalid argument
    [13:48:10.0360] entering clean_NAND
    [13:48:10.0360] NAND format complete
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [13:48:10.0360] entering format_storage_for_LwVM
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] unexpected partition 'LwVM' - skipping
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [13:48:10.0360] entering create_filesystem_partitions
    [13:48:10.0360] User specified system partition size, skipping firmware extras size.
    [13:48:10.0360] system partition padding size is: 167772160 bytes
    [13:48:10.0360] unable to open : No such file or directory
    [13:48:10.0360] creating 2 partitions
    [13:48:10.0360] creating encrypted data partition
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] wipe entire partition: 1 (old = 0 new = 1820)
    [13:48:10.0360] block size for /dev/disk0s1s1: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] block size for /dev/disk0s1s2: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [13:48:10.0360] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] entering mount_filesystems
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is System
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume System appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s2
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is Data
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume Data appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s2 mounted on /mnt2
    [13:48:10.0360] entering resize_system_partition_to_options
    [13:48:10.0360] User specified system partition size, skipping firmware extras size.
    [13:48:10.0360] Found SystemPartitionPadding value of 167772160 bytes
    [13:48:10.0360] Erasing system partition prior to resize operation.
    [13:48:10.0360] block size for /dev/disk0s1s1: 4096
    [13:48:10.0360] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [13:48:10.0360] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [13:48:10.0360] executing /sbin/fsck_hfs
    [13:48:10.0360] ** /dev/rdisk0s1s1
    [13:48:10.0360]    Executing fsck_hfs (version hfs-277.10.5).
    [13:48:10.0360] ** Checking Journaled HFS Plus volume.
    [13:48:10.0360] ** Detected a case-sensitive volume.
    [13:48:10.0360]    The volume name is System
    [13:48:10.0360] ** Checking extents overflow file.
    [13:48:10.0360] ** Checking catalog file.
    [13:48:10.0360] ** Checking multi-linked files.
    [13:48:10.0360] ** Checking catalog hierarchy.
    [13:48:10.0360] ** Checking extended attributes file.
    [13:48:10.0360] ** Checking volume bitmap.
    [13:48:10.0360] ** Checking volume information.
    [13:48:10.0360] ** Trimming unused blocks.
    [13:48:10.0360] ** The volume System appears to be OK.
    [13:48:10.0360] executing /sbin/mount_hfs
    [13:48:10.0360] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [13:48:10.0360] /dev/disk0s1s1 mounted on /mnt1
    [13:48:10.0360] Trying to resize system partition to 1908408320 bytes aka 1820 MB
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:0 requiredSize=465920
    [13:48:10.0360] no change in size
    [13:48:10.0360] Successfully resized the system partition
    [13:48:10.0360] entering maximize_data_partition
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:1 requiredSize=<<<<<IMEI>>>>>>6
    [13:48:10.0360] maximizing data partition to 13946060799 bytes
    [13:48:10.0360] entering adjust_partition_preflight
    [13:48:10.0360] partition:1 requiredSize=3404800
    [13:48:10.0360] no change in size
    [13:48:10.0360] Successfully resized data partition to consume free blocks
    [13:48:10.0360] The system partition now has a total HFS+ capacity of 1820 MB
    [13:48:10.0360] entering ramrod_probe_media
    [13:48:10.0360] device partitioning scheme is GPT
    [13:48:10.0360] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [13:48:10.0360] entering unmount_filesystems
    [13:48:10.0360] entering ramrod_ticket_update
    [13:48:10.0360] looking up root ticket hash
    [13:48:10.0360] device tree ticket-hash: <CFData 0x1930040 [0x2f3ad0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [13:48:10.0360] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [13:48:10.0360] received valid ticket (2741 bytes)
    [13:48:10.0360] entering restore_images
    [13:48:10.0360] Successfully marked device node /dev/rdisk0s1s1 as static data
    [13:48:10.0360] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [13:48:10.0360] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [13:48:10.0360] void AppleUSBDeviceM

    Hello gamavranje,
    Thanks for using Apple Support Communities.
    The icons you're seeing on your iPhone indicate it is in recovery mode.  Please plug your iPhone into your computer, and restore it with iTunes.
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    Take care,
    Alex H.

Maybe you are looking for

  • Configuration Control Node not getting displayed in Sol man

    Hi Experts, At Plant Maintenace configuration node Configuraton Control node needs to be configured to use IE4N Transcation. Where as this node is not visiable in my Solution Manager setting. The same can be seen in Dev & Qulaity system. Please guide

  • Problem when sending report to mail ID's in BIP

    Dear All, We are using BIP 10.1.3.3.1. I generated some reports . I configured SMTP server and i can aable to send my reports to users ID's also. But i have to send my reports to 10 users(one ID is having 30 characters length). while i am giving the

  • Let's build the dream together

    I am IT guy and I am creating a platform ( a roaming desktop) based on internet environment. Right now I'm using Novell Server as backend to provide file storage place. My dream is that let the corporation develop their own applications (ie. Accounti

  • Macbook pro slow wake when charged overnight

    I have seen some other posts similar to this but that ended a few years ago and I'm hoping there might be a fix now. Apologies for the amount of detail but My macbook pro (mid 2012) has a very strange wake from sleep routine when it has been plugged

  • Using iPhone as just a Touch??

    My contract with AT&T is almost finished and I am wondering what will happen with my iPhone if I don't renew. Can I keep it and just use it as a touch? Or will AT&T want it back and/or deactivate it? Thanks