Chart Reseting on Host

I am running an RT system and have the Host.vi on my computer (same subnet).  When I run the Host.vi I my chart appears to be reseting (starts blank, begins filling with points, then goes blank again and begins filling with points again).
Below is my chart.
I am sampling at 1kHz inside a loop that cycles every 10ms (there are 10 waveform terms per loop).  Is this a buffer problem?  Am I doing something else wrong?  The chart gets to this state then blanks, so on and so forth.  The period of the blanking is not constant.  I have tried a normal buffer, and a FIFO buffer with varying settings but I cannot seem to eliminate this behavior.  It appear that the bigger I make the buffer, and the more deterministic I make the application, the worse this behavior gets.
I am sure there is probably a simple answer for it.  You guys are always on top of things, so thanks in advance!
~milq

I would have come out with more details but I sort of assumed that it was a common problem because it occurs everytime (even when I build something simple from scratch).
I am running LabVIEW 8 and the Real-Time Module
Here is the VI on the target, the issue here is towards the top, the circuit chunk ending with the "Analog" shared variable.
Here is the host VI
Again, trace "Analog" and you can see where the graphs in question are.
With the troubleshooting I have done, the graph looks fine on the target side and not fine on the host side.  My next step will be to put the graph of the variable in the other loop, and see what it looks like there.  At this point I am considering the network as a contributor, and the buffering.
If there is anything else you want to see, just ask, I have been banging my head against this for too long
Thanks!
~milq

Similar Messages

  • Clearing time chart resets time also, but I don't want that

    I've tested this under both LV2011 and 2013, and the problem is seen in both versions.
    When I set up a chart with absolute time on the x-axis, and after some time have filled the
    chart with data, right-click and select Clear Chart, the chart is cleared, indeed.
    However, the problem is that the tims-scale is also reset, so when new data continue
    to be displayed, the time scale is wrong, cause it restarts on the time the chart originally started
    (before clear). How do I solve this problem ?
    Martin

    You could build a waveform to write to the chart.  The waveform would include a timestamp that the chart would then use.  If you just wire up and array or scaler to the chart, then the time just defaults to midnight Jan 1, 1904.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Reset Host Name buffer on WebAS Java

    Hello everyone.
    I'm currently planning the move of a production server to a new hardware. We need to reuse the old host name of the SAP server but it will be associated to a new IP address.
    I know that in ABAP it is possible to clear / reset the host name buffer for this kind of situation.
    Is it possible on a Web AS Java too? If yes, how can we achieve that?
    It will be needed for an XI 7.0 / Portal 7.0 with XCM system that are connected to the system that must be moved.
    Thanks in advance,
    Sébastien

    Buffers like these are automatically reset during the restart of your system. I think this will be the most safe way to do this..
    Kind regards,
    Mark
    Edited by: M. Dijsselbloem on May 27, 2010 10:09 AM

  • "loading data. please wait." message on flash charts after releasing to 3.1

    We are experiencing "loading data. please wait." message on all flash charts after exporting our app from dev (3.1.2) where all of the charts work fine and importing it into prod (3.1.2) where the message occurs.
    A work-around has been found by resetting the #HOST# variable in charts' regions' source code
    from:
    XMLFile=#HOST#apex_util.flash?
    to:
    XMLFile=<physical URL of the production app>apex_util.flash?
    Obviously this is an ugly work-around and requires a lot of work every time we do a release because it gets overwritten back to #HOST# with ever import (we have quite a few flash charts).
    Any suggestions, or rumors when this "bug" will be fixed?
    Thank You
    Boris

    Hello,
    Take a look at this thread and see if it addresses your problem -
    Flash chart fails through proxy
    BTW it's not really a 'bug' ;)
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • Drawing pie chart in applet

    Hi,
    The following is an applet I've written as an assignment in school. The applet runs well on appletviewer (here I mean drawing the pie chart). But when I run it on my browser, the pie chart is not drawn. Hope you can help me. Thanks in advance.
    import java.applet.*;import java.text.*;import java.awt.*;import java.awt.event.*;import java.awt.Graphics;public class x2 extends Applet implements ActionListener {               private Button draw,reset;        private TextField thigh,tmedium,tlow,tno;     private Label banner,l1, l2, l3, l4;     double rhigh,rmedium,rlow,rno;     double high, medium, low, no, total, high2=0, medium2=0, low2=0, no2=0,low3, no3;     String something="";          public void paint(Graphics g){     setBackground(Color.white);               if(something=="in"){     try {               rhigh=Double.parseDouble(thigh.getText());     rmedium=Double.parseDouble(tmedium.getText());     rlow=Double.parseDouble(tlow.getText());     rno=Double.parseDouble(tno.getText());     } catch (NumberFormatException nfe) {     }     total=rhigh+rmedium+rlow+rno; high=(rhigh/total)*100; medium=(rmedium/total)*100; low=(rlow/total)*100; no=(rno/total)*100; high2=high*360/100;     medium2=medium*360/100;     low2=low*360/100;     no2=no*360/100;          low3=high2+medium2;     no3=low3+low2;               g.setColor(Color.red);     g.fillArc(100,100,200,200,0,(int)high2);     g.setColor(Color.blue);     g.fillArc(100,100,200,200,(int)high2,(int)medium2);     g.setColor(Color.green);     g.fillArc(100,100,200,200,(int)low3,(int)low2);     g.setColor(Color.pink);     g.fillArc(100,100,200,200,(int)no3,(int)no2);     }     }          public void init(){          draw=new Button("Draw pie chart");     reset=new Button("Reset");     thigh=new TextField("",10);     tmedium=new TextField("",10);     tlow=new TextField("",10);     tno=new TextField("",10);     l1=new Label("High Risk  :$");     l2=new Label("Medium Risk:$");     l3=new Label("Low Risk   :$");     l4=new Label("No Risk    :$");     banner=new Label("Welcome");           add(banner);           add(l1);     add(thigh);          add(l2);     add(tmedium);     add(l3);     add(tlow);     add(l4);     add(tno);                         add(draw);     add(reset);                   draw.setActionCommand("Draw");     draw.addActionListener(this);        reset.setActionCommand("Reset");     reset.addActionListener(this);     }          public void actionPerformed(ActionEvent e){          if(e.getActionCommand() == "Draw") {               something="in";               repaint();                    } else if(e.getActionCommand()== "Reset") {               something="";               thigh.setText("");               tmedium.setText("");               tlow.setText("");               tno.setText("");               repaint();          }     }}

    <code>
    import java.applet.*;
    import java.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Graphics;
    public class x2 extends Applet implements ActionListener {
         private Button draw, reset;
         private TextField thigh, tmedium, tlow, tno;
         private Label banner, l1, l2, l3, l4;
         double rhigh,rmedium,rlow,rno;
         double high, medium, low, no, total, high2=0, medium2=0, low2=0, no2=0,low3, no3;
         String something="";
         public void paint(Graphics g) {
              setBackground(Color.white);
              if(something=="in"){
                   try {
                        rhigh=Double.parseDouble(thigh.getText());
                        rmedium=Double.parseDouble(tmedium.getText());
                        rlow=Double.parseDouble(tlow.getText());
                        rno=Double.parseDouble(tno.getText());
                   catch (NumberFormatException nfe) { }
                   total=rhigh+rmedium+rlow+rno; high=(rhigh/total)*100;
                   medium=(rmedium/total)*100;
                   low=(rlow/total)*100;
                   no=(rno/total)*100;
                   high2=high*360/100;
                   medium2=medium*360/100;
                   low2=low*360/100;
                   no2=no*360/100;
                   low3=high2+medium2;
                   no3=low3+low2;
                   g.setColor(Color.red);
                   g.fillArc(100,100,200,200,0,(int)high2);
                   g.setColor(Color.blue);
                   g.fillArc(100,100,200,200,(int)high2,(int)medium2);
                   g.setColor(Color.green);
                   g.fillArc(100,100,200,200,(int)low3,(int)low2);
                   g.setColor(Color.pink);
                   g.fillArc(100,100,200,200,(int)no3,(int)no2);
         public void init(){
              draw=new Button("Draw pie chart");
              reset=new Button("Reset");
              thigh=new TextField("",10);
              tmedium=new TextField("",10);
              tlow=new TextField("",10);
              tno=new TextField("",10);
              l1=new Label("High Risk :$");
              l2=new Label("Medium Risk:$");
              l3=new Label("Low Risk :$");
              l4=new Label("No Risk :$");
              banner=new Label("Welcome");
              add(banner);
              add(l1);
              add(thigh);
              add(l2);
              add(tmedium);
              add(l3);
              add(tlow);
              add(l4);
              add(tno);
              add(draw);
              add(reset);
              draw.setActionCommand("Draw");
              draw.addActionListener(this);
              reset.setActionCommand("Reset");
              reset.addActionListener(this);
         public void actionPerformed(ActionEvent e) {
              if(e.getActionCommand() == "Draw") {
                   something="in";
                   repaint();
              } else if(e.getActionCommand()== "Reset") {
                   something="";
                   thigh.setText("");
                   tmedium.setText("");
                   tlow.setText("");
                   tno.setText("");
                   repaint();
    </code>

  • Components tied to scorecard "reset" when scorecard data changes

    My dashboard is set up so a bunch of gages and charts are tied to a scorecard.  The scorecard in turn has data that changes according to the selection in a label menu (two options: "Current" and "YTD").  I'm trying to get it so that the selection on the scorecard doesn't reset when the label menu selection changes.
    For instance: you make a selection on the scorecard, and the charts adjust accordingly.  Then you click on "YTD" and the charts reset to the data on the top selection of the scorecard, <i>even though your prior selection is still highlighted</i>; so if you're not paying close attention it looks like the charts are then displaying the wrong data.  You have to click on the highlighted row again to get the charts to adjust correctly.
    I'd like it so that either:
    - The selection stays when you go from "Current" to "YTD" or vice-versa
    or
    - The highlight returns to the top row to correspond to what the charts display.
    I thought the "Clear Destination When No Selected Item" and "Insert on: Interaction Only" options for the selectors would make a difference but they have no effect as far as I can tell.

    Just a few minutes after I posted this thread I figured out what was going on: I had a second scorecard and label menu on another tab that was pulling data from the same spot, and I had to adjust <i>their</i> properties as well.
    Nothing to see here, folks!

  • 10G: Startup/Shutdown Host and Target Credentials

    Hello,
    I recently installed the Windows version of Oracle 10G. I was working on the database when I had to do a shutdown immediate command. The I went to Enterprise Manager to restart but it gave me a web page stating I need to specify the Host and database credentials. It stated to give the username and password of the Host and Database credentials.
    I know what the DB credentials are and my credentials are my OS username and password that I normally use to logon to my PC (or so I thought) but when I try and use that combination, it gives an error and states that it's an invalid password. Is there a way to reset the Host credentials username and password in Enterprise Manager Oracle 10G version?
    Thanks,
    Steve

    Can you check out
    10g host preferred credentials, wrong password
    and see if the solution given there solves your problem, too?

  • Drawing pie chart

    import java.applet.*;
    import java.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Graphics;
    public class x2 extends Applet implements ActionListener {
         private Button draw,draw2,reset;
         private TextField thigh,tmedium,tlow,tno;
         private Label banner,l1, l2, l3, l4;
         double rhigh,rmedium,rlow,rno;
         double high, medium, low, no, total, high2=0, medium2=0, low2=0, no2=0,low3=0,no3=0;
         String something="";
         public void paint(Graphics g){
         setBackground(Color.white);
         if(something=="pie"){
              try{
    rhigh=Double.parseDouble(thigh.getText());
    rmedium=Double.parseDouble(tmedium.getText());
                   rlow=Double.parseDouble(tlow.getText());
                   rno=Double.parseDouble(tno.getText());
    if(rhigh<0||rmedium<0||rlow<0||no<0){
         throw new NumberFormatException();
              total=rhigh+rmedium+rlow+rno;
         high=(rhigh/total)*100;
         medium=(rmedium/total)*100;
         low=(rlow/total)*100;
         no=(rno/total)*100;
         high2=high*360/100;
              medium2=medium*360/100;
              low2=low*360/100;
              no2=no*360/100;     
              low3=high2+medium2;
              no3=low3+low2;
              DecimalFormat F=new DecimalFormat("###.000");
    g.setColor(Color.black);
    g.drawString("THE INVESTMENT ARE:",250,100);
    g.drawString("Pie Chart",450,100);
    g.setColor(Color.red);
    g.drawString(F.format(high)+" "+"% High Risk",250,140);
    g.setColor(Color.blue);
    g.drawString(F.format(medium)+" "+"%High Risk",250,180);
    g.setColor(Color.green);
    g.drawString(F.format(low)+" "+"% Low Risk",250,220);
    g.setColor(Color.pink);
    g.drawString(F.format(no)+" "+"% No Risk",250,260);
    g.setColor(Color.red);
    g.fillArc(500,80,200,200,0,360-(int)(medium2+low2+no2));
    g.setColor(Color.blue);
    g.fillArc(500,80,200,200,(int)high2,360-(int)(high2+low2+no2));
    g.setColor(Color.green);
    g.fillArc(500,80,200,200,(int)low3,360-(int)(high2+medium2+no2));
    g.setColor(Color.pink);
    g.fillArc(500,80,200,200,(int)no3,360-(int)(high2+medium2+low2));
    g.setColor(Color.red);
    g.fillRect(450,300,60,30);
    g.setColor(Color.blue);
    g.fillRect(450,330,60,30);
    g.setColor(Color.green);
    g.fillRect(450,360,60,30);
    g.setColor(Color.pink);
    g.fillRect(450,390,60,30);
    g.setColor(Color.red);
    g.drawString("High Risk Investment",520,320);
    g.setColor(Color.blue);
    g.drawString("Medium Risk Investment",520,350);
    g.setColor(Color.green);
    g.drawString("Low Risk Investment",520,380);
    g.setColor(Color.pink);
    g.drawString("No Risk Investment",520,410);
         catch(NumberFormatException e){
    g.drawString("Invalid value click the reset button and reenter your value",300,200);
              else if(something=="bar") {
              try{
    rhigh=Double.parseDouble(thigh.getText());
    rmedium=Double.parseDouble(tmedium.getText());
    rlow=Double.parseDouble(tlow.getText());
    rno=Double.parseDouble(tno.getText());
    if(rhigh<0||rmedium<0||rlow<0||no<0){
         throw new NumberFormatException();
         total=rhigh+rmedium+rlow+rno;
         high=(rhigh/total)*100;
         medium=(rmedium/total)*100;
         low=(rlow/total)*100;
         no=(rno/total)*100;
    DecimalFormat F=new DecimalFormat("###.000");
    g.setColor(Color.black);
    g.drawString("THE INVESTMENT ARE:",250,100);
    g.drawString("Bar Chart",530,100);
    g.setColor(Color.red);
    g.drawString(F.format(high)+" "+"% High Risk",250,140);
    g.setColor(Color.blue);
    g.drawString(F.format(medium)+" "+"% High Risk",250,180);
    g.setColor(Color.green);
    g.drawString(F.format(low)+" "+"% Low Risk",250,220);
    g.setColor(Color.pink);
    g.drawString(F.format(no)+" "+"% No Risk",250,260);
    g.setColor(Color.red);
    g.fillRect(480,250-(int)high,40,(int)high);
    g.setColor(Color.blue);
    g.fillRect(530,250-(int)medium,40,(int)medium);
    g.setColor(Color.green);
    g.fillRect(580,250-(int)low,40,(int)low);
    g.setColor(Color.pink);
    g.fillRect(630,250-(int)no,40,(int)no);
    g.setColor(Color.black);
    g.drawLine(450,250,700,250);
    g.drawLine(450,130,450,250);
    g.drawLine(445,150,450,150);
    g.drawString("Hight",485,265);
    g.drawString("Medium",535,265);
    g.drawString("Low",585,265);
    g.drawString("No",635,265);
    g.drawString("Percentage%",425,125);
    g.drawString("Risks",710,250);
    g.drawString("100",420,150);
    g.setColor(Color.red);
    g.fillRect(450,300,60,30);
    g.setColor(Color.blue);
    g.fillRect(450,330,60,30);
    g.setColor(Color.green);
    g.fillRect(450,360,60,30);
    g.setColor(Color.pink);
    g.fillRect(450,390,60,30);
    g.setColor(Color.red);
    g.drawString("High Risk Investment",520,320);
    g.setColor(Color.blue);
    g.drawString("Medium Risk Investment",520,350);
    g.setColor(Color.green);
    g.drawString("Low Risk Investment",520,380);
    g.setColor(Color.pink);
    g.drawString("No Risk Investment",520,410);     
         catch(NumberFormatException e){
    g.drawString("Invalid value click the reset button and reenter your value",300,200);
         public void init(){
         setLayout (null);
         draw=new Button("Draw pie chart");
         draw2=new Button("Draw bar chart");
         reset=new Button("Reset");
         thigh=new TextField("",10);
         tmedium=new TextField("",10);
         tlow=new TextField("",10);
         tno=new TextField("",10);
         l1=new Label("High Risk :$");
         l2=new Label("Medium Risk:$");
         l3=new Label("Low Risk :$");
         l4=new Label("No Risk :$");
         banner=new Label("Welcome");
         banner.setBounds(new Rectangle(200,50,100,20));
         add(banner);
    l1.setBounds(new Rectangle(20,100,100,20));
    add(l1);
    thigh.setBounds(new Rectangle(120,100,100,20));
    add(thigh);
    l2.setBounds(new Rectangle(20,140,100,20));
    add(l2);
    tmedium.setBounds(new Rectangle(120,140,100,20));
    add(tmedium);
    l3.setBounds(new Rectangle(20,180,100,20));
    add(l3);
    tlow.setBounds(new Rectangle(120,180,100,20));
    add(tlow);
    l4.setBounds(new Rectangle(20,220,100,20));
    add(l4);
    tno.setBounds(new Rectangle(120,220,100,20));
    add(tno);
    draw.setBounds(new Rectangle(20,260,100,20));
    add(draw);
    draw2.setBounds(new Rectangle(120,260,100,20));
    add(draw2);
    reset.setBounds(new Rectangle(20,290,100,20));
    add(reset);
    draw.addActionListener(this);
    draw2.addActionListener(this);
    reset.addActionListener(this);
         public void actionPerformed(ActionEvent e){
              if(e.getSource()==draw) {
                   something="pie";
                   repaint();
              }else if(e.getSource()==draw2) {
                   something="bar";
                   repaint();
              if(e.getSource()==reset) {
                   something="";
                   thigh.setText("");
                   tmedium.setText("");
                   tlow.setText("");
                   tno.setText("");
                   repaint();

    import java.applet.*;
    import java.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.Graphics;
    public class x2 extends Applet implements ActionListener
         private Button draw,draw2,reset;
         private TextField thigh,tmedium,tlow,tno;
         private Label banner,l1, l2, l3, l4;
         double  rhigh,rmedium,rlow,rno;
         double  high, medium, low, no, total, high2=0, medium2=0, low2=0, no2=0,low3=0,no3=0;
         String something="";
         Double  d1;
    public void paint(Graphics g)
         setBackground(Color.white);
         if(something=="pie")
              try
    //          rhigh=Double.parseDouble(thigh.getText());
    //          rmedium=Double.parseDouble(tmedium.getText());
    //          rlow=Double.parseDouble(tlow.getText());
    //          rno=Double.parseDouble(tno.getText());
                   rhigh   = get_double(thigh.getText());
                   rmedium = get_double(tmedium.getText());
                   rlow    = get_double(tlow.getText());
                   rno     = get_double(tno.getText());
                   if(rhigh<0||rmedium<0||rlow<0||no<0)
                        throw new NumberFormatException();
                   total=rhigh+rmedium+rlow+rno;
                   high=(rhigh/total)*100;
                   medium=(rmedium/total)*100;
                   low=(rlow/total)*100;
                   no=(rno/total)*100;
                   high2=high*360/100;
                   medium2=medium*360/100;
                   low2=low*360/100;
                   no2=no*360/100;
                   low3=high2+medium2;
                   no3=low3+low2;
                   DecimalFormat F=new DecimalFormat("###.000");
                   g.setColor(Color.black);
                   g.drawString("THE INVESTMENT ARE:",250,100);
                   g.drawString("Pie Chart",450,100);
                   g.setColor(Color.red);
                   g.drawString(F.format(high)+" "+"% High Risk",250,140);
                   g.setColor(Color.blue);
                   g.drawString(F.format(medium)+" "+"%High Risk",250,180);
                   g.setColor(Color.green);
                   g.drawString(F.format(low)+" "+"% Low Risk",250,220);
                   g.setColor(Color.pink);
                   g.drawString(F.format(no)+" "+"% No Risk",250,260);
                   g.setColor(Color.red);
                   g.fillArc(500,80,200,200,0,360-(int)(medium2+low2+no2));
                   g.setColor(Color.blue);
                   g.fillArc(500,80,200,200,(int)high2,360-(int)(high2+low2+no2));
                   g.setColor(Color.green);
                   g.fillArc(500,80,200,200,(int)low3,360-(int)(high2+medium2+no2));
                   g.setColor(Color.pink);
                   g.fillArc(500,80,200,200,(int)no3,360-(int)(high2+medium2+low2));
                   g.setColor(Color.red);
                   g.fillRect(450,300,60,30);
                   g.setColor(Color.blue);
                   g.fillRect(450,330,60,30);
                   g.setColor(Color.green);
                   g.fillRect(450,360,60,30);
                   g.setColor(Color.pink);
                   g.fillRect(450,390,60,30);
                   g.setColor(Color.red);
                   g.drawString("High Risk Investment",520,320);
                   g.setColor(Color.blue);
                   g.drawString("Medium Risk Investment",520,350);
                   g.setColor(Color.green);
                   g.drawString("Low Risk Investment",520,380);
                   g.setColor(Color.pink);
                   g.drawString("No Risk Investment",520,410);
              catch(NumberFormatException e)
                   g.drawString("Invalid value click the reset button and reenter your value",300,200);
         if(something=="bar")
              try
    //     rhigh=Double.parseDouble(thigh.getText());
    //     rmedium=Double.parseDouble(tmedium.getText());
    //  rlow=Double.parseDouble(tlow.getText());
    //  rno=Double.parseDouble(tno.getText());
                   rhigh   = get_double(thigh.getText());
                   rmedium = get_double(tmedium.getText());
                   rlow    = get_double(tlow.getText());
                   rno     = get_double(tno.getText());
                   if(rhigh<0||rmedium<0||rlow<0||no<0)
                        throw new NumberFormatException();
                   total=rhigh+rmedium+rlow+rno;
                   high=(rhigh/total)*100;
                   medium=(rmedium/total)*100;
                   low=(rlow/total)*100;
                   no=(rno/total)*100;
                   DecimalFormat F=new DecimalFormat("###.000");
                   g.setColor(Color.black);
                   g.drawString("THE INVESTMENT ARE:",250,100);
                   g.drawString("Bar Chart",530,100);
                   g.setColor(Color.red);
                   g.drawString(F.format(high)+" "+"% High Risk",250,140);
                   g.setColor(Color.blue);
                   g.drawString(F.format(medium)+" "+"% High Risk",250,180);
                   g.setColor(Color.green);
                   g.drawString(F.format(low)+" "+"% Low Risk",250,220);
                   g.setColor(Color.pink);
                   g.drawString(F.format(no)+" "+"% No Risk",250,260);
                   g.setColor(Color.red);
                   g.fillRect(480,250-(int)high,40,(int)high);
                   g.setColor(Color.blue);
                   g.fillRect(530,250-(int)medium,40,(int)medium);
                   g.setColor(Color.green);
                   g.fillRect(580,250-(int)low,40,(int)low);
                   g.setColor(Color.pink);
                   g.fillRect(630,250-(int)no,40,(int)no);
                   g.setColor(Color.black);
                   g.drawLine(450,250,700,250);
                   g.drawLine(450,130,450,250);
                   g.drawLine(445,150,450,150);
                   g.drawString("Hight",485,265);
                   g.drawString("Medium",535,265);
                   g.drawString("Low",585,265);
                   g.drawString("No",635,265);
                   g.drawString("Percentage%",425,125);
                   g.drawString("Risks",710,250);
                   g.drawString("100",420,150);
                   g.setColor(Color.red);
                   g.fillRect(450,300,60,30);
                   g.setColor(Color.blue);
                   g.fillRect(450,330,60,30);
                   g.setColor(Color.green);
                   g.fillRect(450,360,60,30);
                   g.setColor(Color.pink);
                   g.fillRect(450,390,60,30);
                   g.setColor(Color.red);
                   g.drawString("High Risk Investment",520,320);
                   g.setColor(Color.blue);
                   g.drawString("Medium Risk Investment",520,350);
                   g.setColor(Color.green);
                   g.drawString("Low Risk Investment",520,380);
                   g.setColor(Color.pink);
                   g.drawString("No Risk Investment",520,410);
              catch(NumberFormatException e)
                   g.drawString("Invalid value click the reset button and reenter your value",300,200);
    private double get_double(String s)
         try
              d1 = d1.valueOf(s);
              return(d1.doubleValue());
         catch (NumberFormatException nfe)
              return(-1);
    public void init()
         setLayout (null);
         draw    = new Button("Draw pie chart");
         draw2   = new Button("Draw bar chart");
         reset   = new Button("Reset");
         thigh   = new TextField("",10);
         tmedium = new TextField("",10);
         tlow    = new TextField("",10);
         tno     = new TextField("",10);
         l1      = new Label("High Risk :$");
         l2      = new Label("Medium Risk:$");
         l3      = new Label("Low Risk :$");
         l4      = new Label("No Risk :$");
         banner = new Label("Welcome");
         banner.setBounds(200,50,100,20);
         add(banner);
         l1.setBounds(20,100,100,20);
         add(l1);
         thigh.setBounds(120,100,100,20);
         add(thigh);
         l2.setBounds(20,140,100,20);
         add(l2);
         tmedium.setBounds(120,140,100,20);
         add(tmedium);
         l3.setBounds(20,180,100,20);
         add(l3);
         tlow.setBounds(120,180,100,20);
         add(tlow);
         l4.setBounds(20,220,100,20);
         add(l4);
         tno.setBounds(120,220,100,20);
         add(tno);
         draw.setBounds(20,260,100,20);
         add(draw);
         draw2.setBounds(120,260,100,20);
         add(draw2);
         reset.setBounds(20,290,100,20);
         add(reset);
         draw.addActionListener(this);
         draw2.addActionListener(this);
         reset.addActionListener(this);
    public void actionPerformed(ActionEvent e)
         if(e.getSource()==draw)
              something="pie";
         if(e.getSource()==draw2)
              something="bar";
         if(e.getSource()==reset)
              something="";
              thigh.setText("");
              tmedium.setText("");
              tlow.setText("");
              tno.setText("");
         repaint();
    Noah

  • I cannot activate LR5 and find 2 hosts file in html. not sure how to proceed from now

    i cannot activate lr5
    Contacted help desk and found the info on the site but i ma supposed to copy the hosts file and remove reference to adobe activation. issue is that i see two host file but in html format. how am i supposed to do this? sorry, am not a techy.

    What operating system are you on?
    Win: - How can I reset the Hosts file back to the default?
    Mac: - restore orginal host file | Apple Support Communities
    Or get in contact with the support of the Operating system and ask them to guide on getting the Host file restored.
    It is a System Related file, they should be able to assist you in restoring it to default.

  • Charter Email Problem

    Up until 3 days ago I could send and recieve my charter email on my ipad mini now I can only send email and not recieve
    Here are my Settings:
    outgoing SMTP mobile.charter.net
    Incoming :
    Host Name mobile.charter.net
    the email account is ******.charter.net
    any help would be appreciated  thanks

    Choose IMAP;
    imap settings
    mail.charter.net
    username without @charter.net
    password
    auth; pw
    port 110
    smpt settings
    mobile.charter.net
    [email protected]
    password
    auth; pw
    port 587
    ssl on

  • URGENT : java exception

    hello
    I have a quiz system that has a server, a player and a friend client. I have tried running them( by directly running their main classes) it works fine.
    However when i load a player and a friend client from a main interface by clicling on their respective jButton, the respective interfaces are loaded but i get the following error:
    Exception in thread "Thread-3" java.lang.NullPointerException
    at playerQuiz.src.QuizClient.run(QuizClient.java:318)
    at java.lang.Thread.run(Thread.java:595)
    But as i have already mentioned the program works perfectly when not loaded from a button.
    can someone please help.
    Edited by: ojm22 on Jun 8, 2008 2:21 AM

    The class QuizClient :
    package playerQuiz.src;
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class QuizClient extends JFrame implements ActionListener, Runnable {
        String moneySum[] = {"5", "10", "20", "30", "40", "45", "50", "55",
                             "60", "70", "75", "80",
                             "85", "90", "95", "100 "};
        static PrintStream out;         // for sending to server.
        static BufferedReader in;       // for getting data from server.
        // socket for connection with the server:
        static Socket socket = null;
        // label to show status messages:
        JLabel lblStatus = new JLabel("Connected! Waiting for a friend...", JLabel.CENTER);
        // label to show questions:
        JLabel lblQuestion = new JLabel(" ", JLabel.CENTER);
        // label to just to show "wheels" label:
        JLabel lblWheels = new JLabel("  Wheels");
        // label to show how many friend wheels are left:
        JLabel lblFriend = new JLabel("  Friend:   ?");
        // label to show how many 50:50 wheels are left:
        JLabel lbl5050 = new JLabel("  50:50 :   ?");
        // label to show how many wheels of the public are left:
        JLabel lblThePublic = new JLabel("  Public:   ?");
        // answer boxes for possible answers:
        AnswerBox cbAnswers[] = new AnswerBox[4];
        // buttons:
        JButton btnFinal, btnFriend, btn5050, btnThePublic, btnRetire;
        // money boxes:
        PointBox cbMoney[] = new PointBox[15];
        // response chart for the public:
        Chart publicChart = new Chart();
        int selectedAnswer = -1; // last clicked answer.
        int moneyIndex = 0;    // money index, updated by server.
        // will be true when friend will also be connected:
        public boolean ALL_CONNECTED = false;
        // thread which cares about receiving data from server:
        Thread thServer = null;
        * Default Constructor.
        public QuizClient()
            super ("The Revision Quiz");
            // look & feel setup:
            try {
                UIManager.setLookAndFeel(
                    UIManager.getSystemLookAndFeelClassName() );
            } catch (Exception e) {
                System.err.println("Couldn't use the system "
                                 + "look and feel: " + e);
            // update look & feel for those components created in
            //     declaration (if required):
            lblStatus.updateUI();
            lblQuestion.updateUI();
            lblWheels.updateUI();
            lblFriend.updateUI();
            lbl5050.updateUI();
            lblThePublic.updateUI();
            // processing window events:
            WindowListener L= new WindowAdapter () {
                public void windowClosing(WindowEvent e) {
                    closeApplication();
            addWindowListener(L);
            // prepare the layout:
            JPanel  pMain = new JPanel ();
            pMain.setLayout(new BorderLayout());
            JPanel pUpper = new JPanel();           // for labels.
            pUpper.setLayout(new GridLayout(2,1));
            JPanel  pCenter = new JPanel ();        // for answers.
            pCenter.setLayout(new BorderLayout());
            JPanel pAnswers = new JPanel();           // for answers & the public chart.
            pAnswers.setLayout(new GridLayout(2,2, 20,20));
            // for buttons:
            JPanel pButtons = new JPanel(new FlowLayout(FlowLayout.CENTER,10,10));
            JPanel pLeft = new JPanel(new GridLayout(15,1, 10,10));  // for wheels counters.
            JPanel pRight = new JPanel(new GridLayout(15,1, 1,1));   // for money boxes.
            pUpper.add(lblStatus);
            pUpper.add(lblQuestion);
            pLeft.add(lblWheels);
            pLeft.add(lblFriend);
            pLeft.add(lbl5050);
            pLeft.add(lblThePublic);
            // make & add check boxes for answers:
            cbAnswers[0] = new AnswerBox ("A:",pAnswers);   // first possible answer.
            pAnswers.add(cbAnswers[0]);
            cbAnswers[0].addActionListener(this);
            cbAnswers[1] = new AnswerBox ("B:",pAnswers);   // second possible answer.
            pAnswers.add(cbAnswers[1]);
            cbAnswers[1].addActionListener(this);
            cbAnswers[2] = new AnswerBox ("C:",pAnswers);   // third possible answer.
            pAnswers.add(cbAnswers[2]);
            cbAnswers[2].addActionListener(this);
            cbAnswers[3] = new AnswerBox ("D:",pAnswers);   // fourth possible answer.
            pAnswers.add(cbAnswers[3]);
            cbAnswers[3].addActionListener(this);
            // make & add buttons:
            btnFinal = new JButton("Final");        // for confirmation of answer.
            pButtons.add(btnFinal);
            btnFinal.addActionListener(this);
            btnFriend = new JButton("Friend");      // for friend request.
            pButtons.add(btnFriend);
            btnFriend.addActionListener(this);
            btn5050 = new JButton("50:50");         // for 50:50 request.
            pButtons.add(btn5050);
            btn5050.addActionListener(this);
            btnThePublic = new JButton("The Public");   // for request of the public.
            pButtons.add(btnThePublic);
            btnThePublic.addActionListener(this);
            btnRetire = new JButton("Retire");      // for request to retire.
            pButtons.add(btnRetire);
            btnRetire.addActionListener(this);
            enableButtons(false);     // disable all buttons.
            // make money boxes:
            for (int i=14; i>=0; i--) {
                cbMoney[i] = new PointBox (moneySum[i+1], pRight);
                pRight.add(cbMoney);
    cbMoney[4].setStopStation(); // "1,000"
    cbMoney[9].setStopStation(); // "32,000"
    pCenter.add (pAnswers, BorderLayout.SOUTH);
    // add response chart for the public:
    publicChart.setVisible(false); // shown only when required.
    pCenter.add (publicChart, BorderLayout.CENTER);
    // Add sub layouts to main layout:
    pMain.add(pUpper, BorderLayout.NORTH);
    pMain.add(pButtons, BorderLayout.SOUTH);
    pMain.add(pCenter, BorderLayout.CENTER);
    pMain.add(pLeft, BorderLayout.WEST);
    pMain.add(pRight, BorderLayout.EAST);
    // -------- set colors and fonts:
    pButtons.setBackground(Color.lightGray );
    pAnswers.setBackground(Color.lightGray );
    pCenter.setBackground(Color.lightGray );
    pUpper.setBackground(Color.lightGray );
    pRight.setBackground(Color.lightGray) ;
    pLeft.setBackground(Color.lightGray);
    lblStatus.setForeground(Color.yellow);
    lblQuestion.setForeground(Color.black);
    lblWheels.setForeground(Color.green);
    lblFriend.setForeground(Color.white);
    lbl5050.setForeground(Color.white);
    lblThePublic.setForeground(Color.white);
    Font f1 = new Font("Arial", Font.BOLD, 12);
    Font f2 = new Font("Arial", Font.BOLD, 20);
    lblStatus.setFont(f1);
    lblQuestion.setFont(f2);
    lblWheels.setFont(f1);
    lblFriend.setFont(f1);
    lbl5050.setFont(f1);
    lblThePublic.setFont(f1);
    // show the window:
    setContentPane (pMain);
    setSize(590,450);
    setVisible(true);
    // start the thread that cares about receiving data from server:
    thServer = new Thread (this);
    thServer.start();
    * Main function, from where QuizClient starts.
    public static void main(String args[]) {
         String serverAddress = "172.22.45.120";
         int serverPort = 4450;
         try {
                   socket = new Socket(serverAddress, serverPort);
              } catch (UnknownHostException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
              } catch (IOException e1) {
                   // TODO Auto-generated catch block
                   e1.printStackTrace();
    System.out.println(socket);
    // open in and out streams for talking with the server:
    try {
    in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    out = new PrintStream(socket.getOutputStream());
    catch (IOException e) {
    System.err.println("Open streams -> " + e);
    System.exit(1);
    // print the address of player - for verification:
    InetAddress localHost = null;
    try {
    localHost = InetAddress.getLocalHost();
    } catch (UnknownHostException e) {
    System.out.println("Unknown host - probably localhost with no IP!");
    // no exit, since can work on "localhost" without internet.
    System.out.println("Player's local address: " + localHost);
    // create QuizClient and show its window:
    new QuizClient();
    private void pause(int time) {
    try {
    Thread.sleep(time);
    catch (InterruptedException e) {
    System.err.println(e.getMessage());
    * The run method of that is used by a thread.
    public void run() {
    Thread thisThread = Thread.currentThread();
    // thread which cares about receiving data from server:
    while (thServer == thisThread) {
    String serverInput;
    try {
    if ((serverInput = in.readLine()) != null)
    gotMessageFromServer(serverInput); // trigger "event".
    catch (IOException ioe) {
    JOptionPane.showMessageDialog(this,
    ioe + "\nNot regular game termination!",
    "Cannot read from server!",
    JOptionPane.ERROR_MESSAGE);
    closeApplication(); // force to close.
    } // end of run().
    public void actionPerformed(ActionEvent e){
    Object src=e.getSource();
    if (src == btnFinal) {            // confirmation of answer.
    if (selectedAnswer != -1) {
    enableButtons(false); // disable all buttons.
    lblStatus.setText("Waiting for server's response...");
    sendToServer("FINAL:" + selectedAnswer);
    else {
    JOptionPane.showMessageDialog(this,
    "Please select an answer!",
    "Not selected!", JOptionPane.ERROR_MESSAGE);
    else if (src == btnFriend) {     // friend request.
    enableButtons(false); // disable all buttons.
    lblStatus.setText("Waiting for friend's response...");
    sendToServer("FRIEND");
    else if (src == btn5050) {        // 50:50 request.
    enableButtons(false); // disable all buttons.
    lblStatus.setText("Waiting for server's response...");
    sendToServer("50:50");
    else if (src == btnThePublic) {   // request of the public.
    enableButtons(false); // disable all buttons.
    publicChart.setChart(0, 0, 0, 0); // reset the chart from any data.
    publicChart.setVisible(true); // show the chart.
    lblStatus.setText("Waiting for server's response...");
    sendToServer("THE_PUBLIC");
    else if (src == btnRetire) {     // request to retire.
    enableButtons(false); // disable all buttons.
    lblStatus.setText("Waiting for server's response...");
    sendToServer("RETIRE");
    else{
    // clicks on check-boxes:
    for (int i=0; i<4; i++)
    if (cbAnswers[i] == src) {  // click on one of the answer boxes.
    selectedAnswer = i+1; // +1 because first is 1.
    // deselect any other selected check-boxes
    // except the last one:
    for (int k=0; k<4; k++) {
    if (k != i) // not equal to selected.
    cbAnswers[k].setSelected(false);
    else
    cbAnswers[k].setSelected(true);
    return; // no need to continue.
    } // end of actionPerformed().
    private void setMoney(String sm) {
    int k;
    try {
    k = Integer.parseInt(sm);
    catch(NumberFormatException e) {
    System.err.println("setMoney()--> " + e);
    return;
    // validation (should be between 0 and 15):
    if ((k > 15) || (k < 0)) {
    System.err.println("setMoney() out of bounds --> " + sm);
    return;
    moneyIndex = k; // store in global variable.
    updateEarnedMoney();
    private void updateEarnedMoney() {
    // select earned stations:
    for (int i=0; i<moneyIndex; i++)
    cbMoney[i].setSelected(true);
    // clear all the others:
    for (int i=moneyIndex; i<15; i++)
    cbMoney[i].setSelected(false);
    private void gotMessageFromServer(String msg) {
    System.out.println("SERVER: [" + msg + "]");
    if (msg.equals("ALL_CONNECTED")) {   // game started.
    ALL_CONNECTED = true;
    sendToServer("RESTART"); // reset everything.
    sendToServer("QUESTION"); // ask for first question.
    else if (msg.startsWith("Q:")) {    // question.
    prepareForNextQuestion();
    lblQuestion.setText(extractData(msg));
    else if (msg.startsWith("A1:")) {       // first possible answer.
    cbAnswers[0].setText(extractData(msg));
    else if (msg.startsWith("A2:")) {       // second possible answer.
    cbAnswers[1].setText(extractData(msg));
    else if (msg.startsWith("A3:")) {       // third possible answer.
    cbAnswers[2].setText(extractData(msg));
    else if (msg.startsWith("A4:")) {       // fourth possible answer.
    cbAnswers[3].setText(extractData(msg));
    // got last possible answer, so enable buttons:
    enableButtons(true);
    lblStatus.setText(" "); // clear the status.
    else if (msg.startsWith("MONEY:")) {    // earned money index.
    setMoney(extractData(msg));
    else if (msg.startsWith("FRIEND:")) {  // how many friend tips left.
    lblFriend.setText (" Friend: " + extractData(msg));
    else if (msg.startsWith("50_50:")) {  // how many 50:50 tips left.
    lbl5050.setText (" 50:50 : " + extractData(msg));
    else if (msg.startsWith("THE_PUBLIC:")) {  // how many tips of the public left.
    lblThePublic.setText (" Public: " + extractData(msg));
    else if (msg.equals("NOFRIEND!")) {     // error - no more friend tips!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server says you have no more friend tips, sorry.",
    "No more friend tips", JOptionPane.ERROR_MESSAGE);
    enableButtons(true);
    else if (msg.equals("NO50:50!")) {      // error - no more 50:50 tips!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server says you have no more 50:50 tips, sorry.",
    "No more 50:50 tips", JOptionPane.ERROR_MESSAGE);
    enableButtons(true);
    else if (msg.equals("50:50TWICE!")) {   // error - 50:50 done twice already!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server says you have done 50:50 twice already for this question!",
    "Cannot do 50:50 three times for one question", JOptionPane.ERROR_MESSAGE);
    enableButtons(true);
    else if (msg.equals("NO_PUBLIC!")) {    // error - no more tips of the public!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server says you have no more tips of the public, sorry.",
    "No more tips of the public!", JOptionPane.ERROR_MESSAGE);
    enableButtons(true);
    publicChart.setVisible(false); // hide the chart (it's empty).
    else if (msg.startsWith("GREEN:")) {   // set right answer be green.
    try { // generally, server sends the right data, check anyway
    int k = Integer.parseInt(extractData(msg));
    cbAnswers[k-1].setCorrect();
    } catch (Exception e) {
    System.out.println("GREEN: -> " + e);
    else if (msg.equals("RIGHT!")) {      // last question was answered correctly!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "This is the right answer!",
    "Congratulations!", JOptionPane.INFORMATION_MESSAGE);
    lblStatus.setText("Waiting for server's response...");
    sendToServer("QUESTION"); // ask for next question.
    else if (msg.equals("MILLION!")) {    // correct, and you won a million!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "You passed with Distinction!",
    "Congratulations! - Game over.", JOptionPane.INFORMATION_MESSAGE);
    askToRestart();
    else if (msg.startsWith("WRONG!:")) { // last question was answered WRONG!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Your answer is wrong!\n Correct answer is " +
    indexToLetter( extractData(msg) ) +
    "\nYour current marks is \t" + moneySum[moneyIndex],
    "Game over!", JOptionPane.ERROR_MESSAGE);
    askToRestart();
    else if (msg.startsWith("RETIRED:")) { // retire request confirmed.
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Your current marks is" + moneySum[moneyIndex] + ",\n" +
    "and the right answer for the last question is " +
    indexToLetter ( extractData(msg) ),
    "Retired!", JOptionPane.INFORMATION_MESSAGE);
    askToRestart();
    else if (msg.startsWith("FRIEND_ANSWER:")) {    // getting friend answer.
    lblStatus.setText("Your friend thinks answer is: " +
    indexToLetter( extractData(msg) ) );
    // got answer from friend, so enable the buttons:
    enableButtons(true);
    else if (msg.equals("FRIEND_DONTKNOW")) {       // friend doesn't know!
    lblStatus.setText("Your friend doesn't know the answer...");
    // friend says he doesn't know, so enable the buttons:
    enableButtons(true);
    else if (msg.equals("FRIEND_TIMEUP")) {         // friend's time is up!
    lblStatus.setText("Your friend failed to give answer in 30 seconds...");
    // time is up, so enable the buttons:
    enableButtons(true);
    else if (msg.startsWith("TIMER:")) {            // timer state for friend.
    lblStatus.setText("Your friend has: " + extractData(msg) + " seconds.");
    else if (msg.startsWith("Message from Server:")) {
    lblStatus.setText(msg);
    else if (msg.equals("FRIEND_DISCONECTED")) {    // error - friend disconected.
    // though the game can be continued without the friend,
    // we decided to end the game to avoid processing the state
    // when friend is required and it's not there....
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Your Friend has disconnected!\n" +
    "Server terminated the game.",
    "Friend disconnected!",
    JOptionPane.ERROR_MESSAGE);
    closeApplication(); // force to close.
    else if (msg.equals("WATING_PREV_FRIEND")) {    // error - server not ready!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server still waits for a connection of Friend" +
    " for previous game that has not connected yet!\n" +
    "Try again later...",
    "Server not ready!",
    JOptionPane.ERROR_MESSAGE);
    closeApplication(); // force to close.
    else if (msg.equals("TERMINATED")) {        // server terminates our game!
    lblStatus.setText(" "); // clear the status.
    JOptionPane.showMessageDialog(this,
    "Server terminated your game for no obvious reason!",
    "Game terminated!",
    JOptionPane.ERROR_MESSAGE);
    closeApplication(); // force to close.
    else if (msg.startsWith("CANCEL1:")) {   // 50:50 first canceled answer
    try {
    String index = extractData(msg);
    cbAnswers[Integer.parseInt(index)-1].setText(" "); // clear.
    } catch (Exception e) {
    System.err.println("CANCEL1: -> " + e);
    else if (msg.startsWith("CANCEL2:")) {   // 50:50 another canceled answer
    try {
    String index = extractData(msg);
    cbAnswers[Integer.parseInt(index)-1].setText(" "); // clear.
    } catch (Exception e) {
    System.err.println("CANCEL2: -> " + e);
    // clear the status & enable the buttons:
    lblStatus.setText(" ");
    enableButtons(true);
    else if (msg.startsWith("BAR1:")) {  // help of the public (% for "A").
    publicChart.setChart(extractData(msg), 1);
    else if (msg.startsWith("BAR2:")) {  // help of the public (% for "B").
    publicChart.setChart(extractData(msg), 2);
    else if (msg.startsWith("BAR3:")) {  // help of the public (% for "C").
    publicChart.setChart(extractData(msg), 3);
    else if (msg.startsWith("BAR4:")) {  // help of the public (% for "D").
    publicChart.setChart(extractData(msg), 4);
    // assumed that "BAR4:?" is received as the last bar, so
    // clear the status & enable the buttons:
    lblStatus.setText(" ");
    enableButtons(true);
    public void sendToServer(String msg) {
    if (thServer == null) // shuting down?
    return;
    out.println(msg);
    // Flush the stream and check its error state:
    if (out.checkError())
    System.err.println("Cannot send -> " + msg);
    else
    System.out.println("SEND: " + msg);
    * Asks user if he/she want's to restart the game.
    * If the answer is "yes", starts new game.
    private void askToRestart() {
    int result;
    result = JOptionPane.showConfirmDialog(this,
    "Would you like to play again?",
    "Play again?",
    JOptionPane.YES_NO_OPTION,
    JOptionPane.QUESTION_MESSAGE);
    if (result == 0) {  // yes, restart.
    lblStatus.setText("Waiting for server's response...");
    sendToServer("RESTART"); // reset everything.
    sendToServer("QUESTION"); // ask for a question.
    else {              // no, close connection.
    closeApplication(); // close connection, and exit.
    * Closes this Game Client station.
    private void closeApplication() {
    // inform the server:
    sendToServer("CLOSE");
    thServer = null; // stop the thread.
    try {
    // close server streams:
    out.close(); // close stream that sends data to server.
    in.close(); // close stream that gets data from server.
    // close socket connected to server:
    if (socket != null)
    socket.close();
    } catch (IOException e) {}
    // close everything:
    System.exit(0);
    * Enables (or disables) all buttons.
    * @param b when true enables, otherwise disables.
    private void enableButtons (boolean b) {
    btnFinal.setEnabled(b);
    btnFriend.setEnabled(b);
    btn5050.setEnabled(b);
    btnThePublic.setEnabled(b);
    btnRetire.setEnabled(b);
    * Prepares the GUI for the next question,
    * hides the chart, resets question field, and possible
    * answers.
    private void prepareForNextQuestion() {
    publicChart.setVisible(false);
    lblQuestion.setText(" ");
    for (int i=0; i<cbAnswers.length; i++) {
    cbAnswers[i].setText("");
    cbAnswers[i].setSelected(false); // reset selected check box.
    selectedAnswer = -1;
    private String indexToLetter(String index) {
    String sANSWERS[] = {"\"A\"", "\"B\"", "\"C\"", "\"D\""};
    try {
    return sANSWERS[Integer.parseInt(index)-1];
    } catch (Exception e) {
    System.err.println("indexToLetter -> " + e);
    return "?";
    private static String extractData(String msg) {
    try {
    int i = msg.indexOf(':'); // get index of first ':'.
    return msg.substring(i+1); // return second token.
    catch(Exception e) {
    return ""; // in case of error return empty string.
    } // end of class.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to find licence number to activate software ?

    I have just bought the Adobe creative Cloud for enterprise.
    I had download the creative cloud and now each software is asking for a licence number but I can't find it.
    And I have no acces to Adobe Licensing website to get one.
    Can you help me?
    Thanks.

    Hi Berengere,
    Welcome on the Adobe Forums!
    There is no serial number needed to activate the Creative Cloud, the Adobe ID will be used to activate the product.
    As the product mentioned is Cloud for Enterprise, you have to verify first if your Adobe ID (email address) has been assigned to the user rights.
    You will find more information in the following link: http://helpx.adobe.com/creative-cloud/help/manage-creative-cloud-teams-membership.html
    If you have already proceeded the the previous steps, please try the steps below then:
    1. Clean Up cached user login information
    Close the Creative Cloud application.
    Navigate to the OOBE folder.
    Windows: [System drive]:\Users\[user name]\AppData\Local\Adobe\OOBE
    Mac OS: /Users/[user name]/Library/Application Support/Adobe/OOBE
    Delete the opm.db file.
    Launch Creative Cloud.
    2. Reset the Hosts file
    Windows
       Choose Start > Run, type %systemroot% \system32\drivers\etc, and then press Enter.
    Right-click the hosts file and select Open. Select Notepad for the application to open the hosts file.
    Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    Search the hosts file for entries that reference Adobe (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    Save and close the file.
    Mac OS  
    Log in as an administrator to edit the hosts file in Mac OS.
    In a Finder window, choose Go > Go To Folder.Type /etc.
    Select the hosts file and open it.
    Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    Search the hosts file for entries that reference Adobe (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    Save and close the file.
    Please, let us know how it goes.
    Thank you.
    Arnaud.

  • Problems upgrading iPhone 4 to latest iOS (7.1.2)

    Hi, I'm trying to upgrade an iPhone 4 from iOS 6.0.1 to the latest version (7.1.2) but facing the dreaded 3194 error in iTunes. I have tried everything from resetting my hosts file to disabling my firewall and anti-virus but the error just will not go away.. it occurs right at the end of the restore process after the software has been restored and is being verified. I looked through the update log and it seems to be an issue with updating the baseband. Copying a section of the log below.
    This phone has never been jailbroken or modified in any way. Please help!!!
    [20:50:15.0138] update_baseband: requesting baseband firmware data
    [20:50:15.0138] [nand_part_core:INF@3169] next 87 pages of boot blocks written with LLB image of size 133632 bytes
    [20:50:15.0138] [nand_part_core:INF@3172] final 39 pages of boot blocks left unprogrammed
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213420
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] 0: RamrodErrorDomain/3: update_baseband: host failed to provide baseband data
    [20:50:15.0138] unable to convert ramrod error 3
    [20:50:15.0138] restore failed with CFError:
    [20:50:15.0138] 0: AMRestoreErrorDomain/ffffffff: failed to update device firmware
    [20:50:15.0138] 1: AMRestoreErrorDomain/ffffffff: ramrod firmware update failed
    [20:50:15.0138] 2: RamrodErrorDomain/3: update_baseband: host failed to provide baseband data
    [20:50:15.0138] send(13, 31560) failed: Broken pipe
    [20:50:15.0138] error sending final status message: -1
    [20:50:15.0138] waiting for host to acknowledge final status received...
    [20:50:15.0138] recv(13, 4) failed: Connection reset by peer
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] received NULL message from host, expected final status
    Full log as follows:
    2014-07-12 01:48:30.497 [4552:135c]: restore library built Feb 12 2014 at 16:27:17
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: iTunes 11.2.2.3
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: Software payload version: 11D257 (option key)
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: Using MobileRestore state machine
    [20:49:26.0904] Changing state from 'Idle' to 'Restoring'
    [20:49:26.0904] requested restore behavior: Erase
    [20:49:26.0914] requested variant: Erase
    [20:49:26.0914] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:27.0729] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [20:49:27.0729] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 0724AF80 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 0724B0A0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0724B208 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0724B1C0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0724A050 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0724AEF0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0724AE18 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 07249FC0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0724AB48 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0724ACF8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 0724B3B8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0724ADD0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0724ACB0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0724AD40 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 0724AAB8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 0724A7E8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 0724A680 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 0724A368 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 07102F28 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [20:49:27.0749] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [20:49:27.0759] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Atto/AppData/Local/Temp/Per21A8.tmp/amai/debug/tss-re quest.plist
    [20:49:28.0539] amai: tss_submit_job: HttpQueryInfo returned 200
    [20:49:28.0779] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [20:49:28.0779] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Atto/AppData/Local/Temp/Per21A8.tmp/amai/debug/tss-re sponse.plist
    [20:49:28.0899] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [20:49:28.0929] iBoot build-version = iBoot-1940.10.58
    [20:49:28.0929] iBoot build-style = RELEASE
    [20:49:28.0929] requested restore behavior: Erase
    [20:49:28.0929] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0929] requested restore behavior: Erase
    [20:49:28.0939] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0939] unable to open device_map.txt: No such file or directory
    [20:49:28.0939] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:28.0939] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:28.0939] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:28.0939] AMDeviceIoControl: pipe stall
    [20:49:28.0939] USBControlTransfer: error 31, usbd status c0000004
    [20:49:28.0939] command device request for 'getenv radio-error' failed: 2008
    [20:49:28.0939] radio-error not set
    [20:49:28.0939] unable to open device_map.txt: No such file or directory
    [20:49:28.0949] <Recovery Mode Device 06F709F0>: production fused device
    [20:49:28.0949] requested restore behavior: Erase
    [20:49:28.0949] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0949] requested restore behavior: Erase
    [20:49:28.0949] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0949] interface has 1 endpoints, file pipe = 1
    [20:49:28.0949]
    [20:49:28.0949] <Recovery Mode Device 06F709F0>: operation 4 progress -1
    [20:49:29.0009] bootstrapping restore with iBEC
    [20:49:29.0009] requested restore behavior: Erase
    [20:49:29.0019] <Recovery Mode Device 06F709F0>: operation 31 progress -1
    [20:49:30.0019] <Recovery Mode Device 06F709F0>: Recovery mode succeeded
    [20:49:30.0019] Finished Recovery Restore Phase: Successful
    [20:49:30.0529] Recovery mode device disconnected
    [20:49:30.0539] Device removed when in state Restoring, moving device to transition state
    [20:49:30.0539] Changing state from 'Restoring' to 'Transitioning'
    [20:49:30.0539] Creating timer to monitor transition
    [20:49:34.0228] Recovery mode device connected
    [20:49:34.0228] Transitioning device returned, continuing restore.
    [20:49:34.0228] Canceling timer
    [20:49:34.0228] Changing state from 'Transitioning' to 'Restoring'
    [20:49:34.0228] requested restore behavior: Erase
    [20:49:34.0228] requested variant: Erase
    [20:49:34.0238] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [20:49:35.0070] iBoot build-version = iBoot-1940.10.58
    [20:49:35.0080] iBoot build-style = RELEASE
    [20:49:35.0080] requested restore behavior: Erase
    [20:49:35.0080] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0080] requested restore behavior: Erase
    [20:49:35.0080] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0080] unable to open device_map.txt: No such file or directory
    [20:49:35.0080] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:35.0080] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:35.0080] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:35.0080] AMDeviceIoControl: pipe stall
    [20:49:35.0080] USBControlTransfer: error 31, usbd status c0000004
    [20:49:35.0080] command device request for 'getenv radio-error' failed: 2008
    [20:49:35.0080] radio-error not set
    [20:49:35.0080] unable to open device_map.txt: No such file or directory
    [20:49:35.0090] <Recovery Mode Device 06FA4F28>: production fused device
    [20:49:35.0090] requested restore behavior: Erase
    [20:49:35.0090] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0090] requested restore behavior: Erase
    [20:49:35.0090] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0090] interface has 1 endpoints, file pipe = 1
    [20:49:35.0090]
    [20:49:35.0090] <Recovery Mode Device 06FA4F28>: operation 4 progress -1
    [20:49:35.0140] unable to open device_map.txt: No such file or directory
    [20:49:35.0150] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:35.0150] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:35.0150] requested restore behavior: Erase
    [20:49:35.0150] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0150] requested restore behavior: Erase
    [20:49:35.0150] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0150] <Recovery Mode Device 06FA4F28>: operation 42 progress -1
    [20:49:35.0160] requested restore behavior: Erase
    [20:49:35.0160] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:36.0190] <Recovery Mode Device 06FA4F28>: operation 5 progress -1
    [20:49:36.0490] unable to open device_map.txt: No such file or directory
    [20:49:36.0500] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:36.0500] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:36.0500] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:36.0500] AMDeviceIoControl: pipe stall
    [20:49:36.0500] USBControlTransfer: error 31, usbd status c0000004
    [20:49:36.0500] command device request for 'getenv ramdisk-delay' failed: 2008
    [20:49:38.0420] <Recovery Mode Device 06FA4F28>: operation 6 progress -1
    [20:49:39.0430] <Recovery Mode Device 06FA4F28>: operation 7 progress -1
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: operation 8 progress -1
    [20:49:39.0700] unable to open device_map.txt: No such file or directory
    [20:49:39.0700] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:39.0700] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: operation 9 progress -1
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: Recovery mode succeeded
    [20:49:39.0700] Finished Recovery Restore Phase: Successful
    [20:49:42.0030] Recovery mode device disconnected
    [20:49:42.0030] Device removed when in state Restoring, moving device to transition state
    [20:49:42.0030] Changing state from 'Restoring' to 'Transitioning'
    [20:49:42.0030] Creating timer to monitor transition
    [20:49:46.0813] RestoreOS mode device connected
    [20:49:46.0813] Transitioning device returned, continuing restore.
    [20:49:46.0813] Canceling timer
    [20:49:46.0813] Changing state from 'Transitioning' to 'Restoring'
    [20:49:46.0823] <Restore Device 0735FD18>: operation 44 progress -1
    [20:49:46.0823] requested restore behavior: Erase
    [20:49:46.0823] requested variant: Erase
    [20:49:46.0823] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [20:49:47.0683] requested restore behavior: Erase
    [20:49:47.0683] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0693] device did not return saved USB log
    [20:49:47.0693] device did not return saved panic log
    [20:49:47.0693] previous restore failed with exit status 0x100
    [20:49:47.0693] connected to service com.apple.mobile.restored
    [20:49:47.0693] using protocol version 13
    [20:49:47.0703] unable to open device_map.txt: No such file or directory
    [20:49:47.0703] board config = n90ap
    [20:49:47.0703] no value returned for BootArgs
    [20:49:47.0703] _copyDeviceProperty() failed for restore bootargs
    [20:49:47.0713] no value returned for MarketingPartNumber
    [20:49:47.0713] _copyDeviceProperty() failed for mpn
    [20:49:47.0713] requested restore behavior: Erase
    [20:49:47.0713] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0723] value query for 'HardwareModel' returned 'N90AP'
    [20:49:47.0743] <Restore Device 0735FD18>: operation 28 progress -1
    [20:50:15.0138] previous restore failed:  0x0
    [20:50:15.0138] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [20:50:15.0138] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [20:50:15.0138] AppleRGBOUT verify_swap failed
    [20:50:15.0138] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [20:50:15.0138] AppleRGBOUT verify_swap failed
    [20:50:15.0138] AppleS5L8920XBasebandSPIController::loadConfiguration: NCLK Frequency 48857142, Prescaler 3
    [20:50:15.0138] BasebandSPIDevice::exitLowPower: Invalid state inactive
    [20:50:15.0138] AppleSerialMultiplexer: adap::start: Frame size is 2048, Rx Buffer count is 16
    [20:50:15.0138] AppleSerialMultiplexer: mux::start: created new mux (17) for spi-baseband with adapter BasebandSPIDevice
    [20:50:15.0138] AppleSerialMultiplexer: debugparams::init: Parsed flags "" ( 0 )
    [20:50:15.0138] AppleSerialMultiplexer: !! mux::setPowerStateGated: Skipping power state change
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x82600000(0x90d33000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart2 at 0x82700000(0x90d35000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart3 at 0x82800000(0x90d38000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart6 at 0x82b00000(0x90d3a000)
    [20:50:15.0138] [HPark] AUD10::start: 0x80249000, highland-park mIISNub: 0x938fe100, sampleRate = 44100, ol=10, oi=12
    [20:50:15.0138] AppleCS42L61Audio: could not allocate control 395
    [20:50:15.0138] AppleARMBacklight::start: _minDACLevel=456 _maxDACLevel=1971
    [20:50:15.0138] AppleMultitouchN1SPI: successfully started
    [20:50:15.0138] AppleRGBOUT: TVOUT device is detected
    [20:50:15.0138] ApplePinotLCD: _lcdPanelID: 0xb2d105c8 _lcdPanelClass: 2
    [20:50:15.0138] IOReturn AppleMobileCLCD::set_ditherTable_state(bool), mIsCLCDDitherFor8Bits is true, no dynamic dither table.
    [20:50:15.0138] AppleD1815PMUPowerSource: AppleUSBCableDetect 1
    [20:50:15.0138] AppleD1815PMUPowerSource: AppleUSBCableType USBHost
    [20:50:15.0138] [HPark] AUD10::start: 0x80249000, highland-park mIICNub: 0x91b5d540, mIISNub: 0x938fe100, mSerialNub: 0x938a7400, sampleRate = 44100, ol=10, oi=12
    [20:50:15.0138] [HPark] AUD10 ATSc values: [ mic1: 0x000000ef, mic2: 0x0000000b, mic3: 0x00000000, recv: 0x00000013, spk: 0x00000000 ]
    [20:50:15.0138] [HPark] AUD10::setPowerState() function called whereas Start() is not finished
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [20:50:15.0138] IOSDIOController::enumerateSlot(): Searching for SDIO device in slot: 0
    [20:50:15.0138] IOSDIOController::enumerateSlot(): Found SDIO I/O device. Function count(1), memory(0)
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Device manufacturer ID 0x2d0, Product ID 0x4329
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Manufacturer: ""
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Product:      ""
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo0: "s=B1"
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo1: "P=N90 m=3.1 V=m"
    [20:50:15.0138] AppleBCMWLANBusInterfaceSdio::start(): Started by: IOSDIOIoCardDevice, AppleBCMWLANV2-259 Jun 11 2014 20:13:01
    [20:50:15.0138] AppleBCMWLANCore::init(): IO80211-46 Jun 11 2014 20:10:01
    [20:50:15.0138] 000333.424645 wlan.N[0] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [20:50:15.0138] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [20:50:15.0138] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [20:50:15.0138] IO80211PeerManager::initWithInterface cant add monitoring timer
    [20:50:15.0138] Started logging for intf
    [20:50:15.0138] IO80211PeerManager::initWithInterface: inited peer manager
    [20:50:15.0138] IO80211Interface::init peerManager=0x939e8000
    [20:50:15.0138] start:156
    [20:50:15.0138] start:156
    [20:50:15.0138] 000333.428295 wlan.N[1] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0x8044f000 (this 1, provider 0)
    [20:50:15.0138] 000333.428339 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] read new style signature 0x43313131 (line:389)
    [20:50:15.0138] [FTL:MSG] VSVFL Register  [OK]
    [20:50:15.0138] [WMR:MSG] Metadata whitening is set in NAND signature
    [20:50:15.0138] [FTL:MSG] VFL Init            [OK]
    [20:50:15.0138] display-scale = 2
    [20:50:15.0138] display-rotation = 0
    [20:50:15.0138] found applelogo at /usr/share/progressui/[email protected]
    [20:50:15.0138] [FTL:MSG] VFL_Open            [OK]
    [20:50:15.0138] [FTL:MSG] YAFTL Register  [OK]
    [20:50:15.0138] found display: primary
    [20:50:15.0138] display: 640 x 960
    [20:50:15.0138] found PTP interface
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [20:50:15.0138] IOAccessoryPortUSB::start
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [20:50:15.0138] virtual bool AppleUSBDeviceMux::start(IOService *) build: Jun 11 2014 20:11:28
    [20:50:15.0138] init_waste
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [20:50:15.0138] [FTL:MSG] FTL_Open            [OK]
    [20:50:15.0138] [NAND] _publishServices:642 FTL capabilities: 0x00000000
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 0
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 1
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 2
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 3
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 5
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 6
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [20:50:15.0138] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [20:50:15.0138] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [20:50:15.0138] [effaceable:INIT] found current generation, 182, in group 1
    [20:50:15.0138] [effaceable:INIT] started
    [20:50:15.0138] [effaceable:INIT] started
    [20:50:15.0138] AppleARMBacklight::start: No AAP function
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49152 62078<-usb->4864
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49153 62078<-usb->5120
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49154 62078<-usb->5376
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213478 established 62078<-lo0->49155 62078<-usb->5632
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49156 62078<-usb->5888
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213420 established 62078<-lo0->49157 62078<-usb->6144
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213478
    [20:50:15.0138] recv(15, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213420
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213420 established 62078<-lo0->49158 62078<-usb->6400
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] recv(16, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49159 62078<-usb->6656
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49160 62078<-usb->6912
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49161 62078<-usb->7168
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49162 62078<-usb->7424
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49163 62078<-usb->7680
    [20:50:15.0138] unrecognized key 'BootArgs' in value query
    [20:50:15.0138] failed to handle value query for key 'BootArgs', sending back empty response
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49164 62078<-usb->7936
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] unrecognized key 'MarketingPartNumber' in value query
    [20:50:15.0138] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49165 62078<-usb->8192
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] client protocol version 13
    [20:50:15.0138] *** UUID A6457AB6-F30A-724E-8954-04B63CF72E04 ***
    [20:50:15.0138] Restore options:
    [20:50:15.0138] UUID                           => <CFString 0xe742b0 [0x2f2ae0]>{contents = "A6457AB6-F30A-724E-8954-04B63CF72E04"}
    [20:50:15.0138] MinimumSystemPartition         => <CFNumber 0xe74200 [0x2f2ae0]>{value = +1531, type = kCFNumberSInt64Type}
    [20:50:15.0138] SystemPartitionSize            => <CFNumber 0xe73b70 [0x2f2ae0]>{value = +1531, type = kCFNumberSInt64Type}
    [20:50:15.0138] SystemPartitionPadding         => <CFBasicHash 0xe75210 [0x2f2ae0]>{type = mutable dict, count = 5,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 2 : <CFString 0xe74230 [0x2f2ae0]>{contents = "128"} = <CFNumber 0xe74260 [0x2f2ae0]>{value = +1280, type = kCFNumberSInt64Type}
    [20:50:15.0138] 3 : <CFString 0xe741d0 [0x2f2ae0]>{contents = "16"} = <CFNumber 0xe73e70 [0x2f2ae0]>{value = +160, type = kCFNumberSInt64Type}
    [20:50:15.0138] 4 : <CFString 0xe75dc0 [0x2f2ae0]>{contents = "32"} = <CFNumber 0xe737f0 [0x2f2ae0]>{value = +320, type = kCFNumberSInt64Type}
    [20:50:15.0138] 5 : <CFString 0xe73c30 [0x2f2ae0]>{contents = "8"} = <CFNumber 0xe73b60 [0x2f2ae0]>{value = +80, type = kCFNumberSInt64Type}
    [20:50:15.0138] 8 : <CFString 0xe73800 [0x2f2ae0]>{contents = "64"} = <CFNumber 0xe73c80 [0x2f2ae0]>{value = +640, type = kCFNumberSInt64Type}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] entering load_sep_os
    [20:50:15.0138] device has no sep
    [20:50:15.0138] entering partition_nand_device
    [20:50:15.0138] device supports boot-from-NAND
    [20:50:15.0138] nand device is already partitioned
    [20:50:15.0138] entering wait_for_storage_device
    [20:50:15.0138] Searching for NAND service
    [20:50:15.0138] Found NAND service: IOFlashStoragePartition
    [20:50:15.0138] NAND initialized. Waiting for devnode.
    [20:50:15.0138] entering clear_remap_variable
    [20:50:15.0138] executing /usr/sbin/nvram
    [20:50:15.0138] entering format_effaceable_storage
    [20:50:15.0138] effaceable storage is formatted, clearing it
    [20:50:15.0138] effaceable storaged cleared
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Sochi11D257.N90OS
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Sochi11D257.N90OS appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] entering check_for_restore_log
    [20:50:15.0138] found restore log (size = 29025)
    [20:50:15.0138] entering unmount_filesystems
    [20:50:15.0138] error unmounting '/mnt2': Invalid argument
    [20:50:15.0138] entering clean_NAND
    [20:50:15.0138] NAND format complete
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [20:50:15.0138] entering format_storage_for_LwVM
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] unexpected partition 'LwVM' - skipping
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [20:50:15.0138] entering create_filesystem_partitions
    [20:50:15.0138] User specified system partition size, skipping firmware extras size.
    [20:50:15.0138] system partition padding size is: 167772160 bytes
    [20:50:15.0138] unable to open : No such file or directory
    [20:50:15.0138] creating 2 partitions
    [20:50:15.0138] creating encrypted data partition
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] wipe entire partition: 1 (old = 0 new = 1691)
    [20:50:15.0138] block size for /dev/disk0s1s1: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] block size for /dev/disk0s1s2: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [20:50:15.0138] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering mount_filesystems
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is System
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume System appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s2
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Data
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Data appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] mount_hfs: Could not exec re-keying daemon /usr/libexec/rolld: No such file or directory
    [20:50:15.0138] /dev/disk0s1s2 mounted on /mnt2
    [20:50:15.0138] entering resize_system_partition_to_options
    [20:50:15.0138] User specified system partition size, skipping firmware extras size.
    [20:50:15.0138] Found SystemPartitionPadding value of 167772160 bytes
    [20:50:15.0138] Erasing system partition prior to resize operation.
    [20:50:15.0138] block size for /dev/disk0s1s1: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is System
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume System appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] Trying to resize system partition to 1773142016 bytes aka 1691 MB
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:0 requiredSize=216448
    [20:50:15.0138] no change in size
    [20:50:15.0138] Successfully resized the system partition
    [20:50:15.0138] entering maximize_data_partition
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:1 requiredSize=<<<<<IMEI>>>>>>8
    [20:50:15.0138] maximizing data partition to 14181990399 bytes
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:1 requiredSize=1731200
    [20:50:15.0138] no change in size
    [20:50:15.0138] Successfully resized data partition to consume free blocks
    [20:50:15.0138] The system partition now has a total HFS+ capacity of 1691 MB
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering unmount_filesystems
    [20:50:15.0138] entering ramrod_ticket_update
    [20:50:15.0138] looking up root ticket hash
    [20:50:15.0138] device tree ticket-hash: <CFData 0xe79d80 [0x2f2ae0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [20:50:15.0138] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [20:50:15.0138] received valid ticket (2741 bytes)
    [20:50:15.0138] entering restore_images
    [20:50:15.0138] Successfully marked device node /dev/rdisk0s1s1 as static data
    [20:50:15.0138] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [20:50:15.0138] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [20:50:15.0138] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [20:50:15.0138] ASR: asr: Unable to disable idle sleep - -536870199
    [20:50:15.0138] ASR STATUS: start 241.1 multicast-client
    [20:50:15.0138] ASR: Waiting for connection attempt from server
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952130b0 established 12345<-lo0->49168 12345<-usb->8960
    [20:50:15.0138] ASR STATUS: setup
    [20:50:15.0138] ASR: Validating target...done
    [20:50:15.0138] ASR STATUS: metadata
    [20:50:15.0138] ASR: Validating source...
    [20:50:15.0138] ASR: done
    [20:50:15.0138] ASR: Retrieving scan information...done
    [20:50:15.0138] ASR: Validating sizes...done
    [20:50:15.0138] ASR STATUS: restore
    [20:50:15.0138] ASR RESTORE PROGRESS: 2%
    [20:50:15.0138] ASR RESTORE PROGRESS: 4%
    [20:50:15.0138] ASR RESTORE PROGRESS: 6%
    [20:50:15.0138] ASR RESTORE PROGRESS: 8%
    [20:50:15.0138] ASR RESTORE PROGRESS: 10%
    [20:50:15.0138] ASR RESTORE PROGRESS: 12%
    [20:50:15.0138] ASR RESTORE PROGRESS: 14%
    [20:50:15.0138] ASR RESTORE PROGRESS: 16%
    [20:50:15.0138] ASR RESTORE PROGRESS: 18%
    [20:50:15.0138] ASR RESTORE PROGRESS: 20%
    [20:50:15.0138] ASR RESTORE PROGRESS: 22%
    [20:50:15.0138] ASR RESTORE PROGRESS: 24%
    [20:50:15.0138] ASR RESTORE PROGRESS: 26%
    [20:50:15.0138] ASR RESTORE PROGRESS: 28%
    [20:50:15.0138] ASR RESTORE PROGRESS: 30%
    [20:50:15.0138] ASR RESTORE PROGRESS: 32%
    [20:50:15.0138] ASR RESTORE PROGRESS: 34%
    [20:50:15.0138] ASR RESTORE PROGRESS: 36%
    [20:50:15.0138] ASR RESTORE PROGRESS: 38%
    [20:50:15.0138] ASR RESTORE PROGRESS: 40%
    [20:50:15.0138] ASR RESTORE PROGRESS: 42%
    [20:50:15.0138] ASR RESTORE PROGRESS: 44%
    [20:50:15.0138] ASR RESTORE PROGRESS: 46%
    [20:50:15.0138] ASR RESTORE PROGRESS: 48%
    [20:50:15.0138] ASR RESTORE PROGRESS: 50%
    [20:50:15.0138] ASR RESTORE PROGRESS: 52%
    [20:50:15.0138] ASR RESTORE PROGRESS: 54%
    [20:50:15.0138] ASR RESTORE PROGRESS: 56%
    [20:50:15.0138] ASR RESTORE PROGRESS: 58%
    [20:50:15.0138] ASR RESTORE PROGRESS: 60%
    [20:50:15.0138] ASR RESTORE PROGRESS: 62%
    [20:50:15.0138] ASR RESTORE PROGRESS: 64%
    [20:50:15.0138] ASR RESTORE PROGRESS: 66%
    [20:50:15.0138] ASR RESTORE PROGRESS: 68%
    [20:50:15.0138] ASR RESTORE PROGRESS: 70%
    [20:50:15.0138] ASR RESTORE PROGRESS: 72%
    [20:50:15.0138] ASR RESTORE PROGRESS: 74%
    [20:50:15.0138] ASR RESTORE PROGRESS: 76%
    [20:50:15.0138] ASR RESTORE PROGRESS: 78%
    [20:50:15.0138] ASR RESTORE PROGRESS: 80%
    [20:50:15.0138] ASR RESTORE PROGRESS: 82%
    [20:50:15.0138] ASR RESTORE PROGRESS: 84%
    [20:50:15.0138] ASR RESTORE PROGRESS: 86%
    [20:50:15.0138] ASR RESTORE PROGRESS: 88%
    [20:50:15.0138] ASR RESTORE PROGRESS: 90%
    [20:50:15.0138] ASR RESTORE PROGRESS: 92%
    [20:50:15.0138] ASR RESTORE PROGRESS: 94%
    [20:50:15.0138] ASR RESTORE PROGRESS: 96%
    [20:50:15.0138] ASR RESTORE PROGRESS: 98%
    [20:50:15.0138] AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x952130b0 (12345<-lo0->49168 12345<-usb->8960)
    [20:50:15.0138] ASR RESTORE PROGRESS: 100%
    [20:50:15.0138] ASR: Copied 1605403136 bytes in 197.51 seconds, 7937.88 KiB/s
    [20:50:15.0138] ASR STATUS: verify
    [20:50:15.0138] ASR VERIFY PROGRESS: 2%
    [20:50:15.0138] ASR VERIFY PROGRESS: 4%
    [20:50:15.0138] ASR VERIFY PROGRESS: 6%
    [20:50:15.0138] ASR VERIFY PROGRESS: 8%
    [20:50:15.0138] ASR VERIFY PROGRESS: 10%
    [20:50:15.0138] ASR VERIFY PROGRESS: 12%
    [20:50:15.0138] ASR VERIFY PROGRESS: 14%
    [20:50:15.0138] ASR VERIFY PROGRESS: 16%
    [20:50:15.0138] ASR VERIFY PROGRESS: 18%
    [20:50:15.0138] ASR VERIFY PROGRESS: 20%
    [20:50:15.0138] ASR VERIFY PROGRESS: 22%
    [20:50:15.0138] ASR VERIFY PROGRESS: 24%
    [20:50:15.0138] ASR VERIFY PROGRESS: 26%
    [20:50:15.0138] ASR VERIFY PROGRESS: 28%
    [20:50:15.0138] ASR VERIFY PROGRESS: 30%
    [20:50:15.0138] ASR VERIFY PROGRESS: 32%
    [20:50:15.0138] ASR VERIFY PROGRESS: 34%
    [20:50:15.0138] ASR VERIFY PROGRESS: 36%
    [20:50:15.0138] ASR VERIFY PROGRESS: 38%
    [20:50:15.0138] ASR VERIFY PROGRESS: 40%
    [20:50:15.0138] ASR VERIFY PROGRESS: 42%
    [20:50:15.0138] ASR VERIFY PROGRESS: 44%
    [20:50:15.0138] ASR VERIFY PROGRESS: 46%
    [20:50:15.0138] ASR VERIFY PROGRESS: 48%
    [20:50:15.0138] ASR VERIFY PROGRESS: 50%
    [20:50:15.0138] ASR VERIFY PROGRESS: 52%
    [20:50:15.0138] ASR VERIFY PROGRESS: 54%
    [20:50:15.0138] ASR VERIFY PROGRESS: 56%
    [20:50:15.0138] ASR VERIFY PROGRESS: 58%
    [20:50:15.0138] ASR VERIFY PROGRESS: 60%
    [20:50:15.0138] ASR VERIFY PROGRESS: 62%
    [20:50:15.0138] ASR VERIFY PROGRESS: 64%
    [20:50:15.0138] ASR VERIFY PROGRESS: 66%
    [20:50:15.0138] ASR VERIFY PROGRESS: 68%
    [20:50:15.0138] ASR VERIFY PROGRESS: 70%
    [20:50:15.0138] ASR VERIFY PROGRESS: 72%
    [20:50:15.0138] ASR VERIFY PROGRESS: 74%
    [20:50:15.0138] ASR VERIFY PROGRESS: 76%
    [20:50:15.0138] ASR VERIFY PROGRESS: 78%
    [20:50:15.0138] ASR VERIFY PROGRESS: 80%
    [20:50:15.0138] ASR VERIFY PROGRESS: 82%
    [20:50:15.0138] ASR VERIFY PROGRESS: 84%
    [20:50:15.0138] ASR VERIFY PROGRESS: 86%
    [20:50:15.0138] ASR VERIFY PROGRESS: 88%
    [20:50:15.0138] ASR VERIFY PROGRESS: 90%
    [20:50:15.0138] ASR VERIFY PROGRESS: 92%
    [20:50:15.0138] ASR VERIFY PROGRESS: 94%
    [20:50:15.0138] ASR VERIFY PROGRESS: 96%
    [20:50:15.0138] ASR VERIFY PROGRESS: 98%
    [20:50:15.0138] ASR VERIFY PROGRESS: 100%
    [20:50:15.0138] ASR: Verified SHA-1 checksum 1605403136 bytes in 40.96 seconds, 38271.93 KiB/s
    [20:50:15.0138] ASR STATUS: finish
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering mount_filesystems
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Sochi11D257.N90OS
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Sochi11D257.N90OS appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s2
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Data
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Data appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] mount_hfs: Could not exec re-keying daemon /usr/libexec/rolld: No such file or directory
    [20:50:15.0138] /dev/disk0s1s2 mounted on /mnt2
    [20:50:15.0138] entering install_kernel_cache
    [20:50:15.0138] writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    [20:50:15.0138] entering install_secure_vault_daemon
    [20:50:15.0138] entering get_hardware_platform
    [20:50:15.0138] platform-name = s5l8930x
    [20:50:15.0138] linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8930x
    [20:50:15.0138] no securekeyvaultd for s5l8930x
    [20:50:15.0138] entering ramrod_ticket_write
    [20:50:15.0138] writing ticket to /mnt1/System/Library/Caches/apticket.der
    [20:50:15.0138] entering update_device_firmware
    [20:50:15.0138] create_baseband_update_options: Got imeisv: 22
    [20:50:15.0138] baseband updater options = <CFBasicHash 0xe773a0 [0x2f2ae0]>{type = mutable dict, count = 3,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec298 [0x2f2ae0]>{contents = "IMEISwVersion"} = <CFNumber 0xe7a7e0 [0x2f2ae0]>{value = +22, type = kCFNumberSInt32Type}
    [20:50:15.0138] 1 : <CFString 0xec2f8 [0x2f2ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] 2 : <CFString 0xec308 [0x2f2ae0]>{contents = "disablePing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] _baseband_update_requires_system_filesystem_once: querying baseband to determine if it requires system filesystem
    [20:50:15.0138] _baseband_update_requires_system_filesystem_once: query returned <CFBasicHash 0xe7a480 [0x2f2ae0]>{type = immutable dict, count = 1,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec068 [0x2f2ae0]>{contents = "requireSystemPartitionMount"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] entering update_iBoot
    [20:50:15.0138] found 'AppleImage3NORAccess' object in IORegistry
    [20:50:15.0138] entering update_iBoot_image3_NOR_access
    [20:50:15.0138] write_image3_data: flashing illb data (length = 0x209d9)
    [20:50:15.0138] write_image3_data: flashing SCAB data (length = 0xb00)
    [20:50:15.0138] ticket updated
    [20:50:15.0138] write_image3_data: flashing ibot data (length = 0x4518c)
    [20:50:15.0138] write_image3_data: flashing chg1 data (length = 0x88cc)
    [20:50:15.0138] write_image3_data: flashing bat0 data (length = 0xaa4c)
    [20:50:15.0138] write_image3_data: flashing batF data (length = 0x1484c)
    [20:50:15.0138] write_image3_data: flashing logo data (length = 0x1a8c)
    [20:50:15.0138] write_image3_data: flashing recm data (length = 0x10f4c)
    [20:50:15.0138] write_image3_data: flashing dtre data (length = 0x1240c)
    [20:50:15.0138] write_image3_data: flashing chg0 data (length = 0x260c)
    [20:50:15.0138] write_image3_data: flashing bat1 data (length = 0x80c)
    [20:50:15.0138] write_image3_data: flashing glyP data (length = 0x2e4c)
    [20:50:15.0138] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [20:50:15.0138] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [20:50:15.0138] [nand_part_core:INF@2289] first 2 pages of boot blocks written with copies of partition table
    [20:50:15.0138] entering update_gas_gauge
    [20:50:15.0138] entering update_ir_mcu
    [20:50:15.0138] looking for mcu nub...no entry from path!
    [20:50:15.0138] TiSerialFlasher not supported on this platform. Exiting.
    [20:50:15.0138] entering update_baseband
    [20:50:15.0138] update_baseband: registering for progress notifications
    [20:50:15.0138] create_baseband_update_options: Got imeisv: 22
    [20:50:15.0138] baseband updater options = <CFBasicHash 0xe7af30 [0x2f2ae0]>{type = mutable dict, count = 6,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec248 [0x2f2ae0]>{contents = "SystemRoot"} = <CFString 0xe76c40 [0x2f2ae0]>{contents = "/mnt1"}
    [20:50:15.0138] 1 : <CFString 0xec298 [0x2f2ae0]>{contents = "IMEISwVersion"} = <CFNumber 0xe75180 [0x2f2ae0]>{value = +22, type = kCFNumberSInt32Type}
    [20:50:15.0138] 2 : <CFString 0xec2f8 [0x2f2ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] 3 : <CFString 0xec1d8 [0x2f2ae0]>{contents = "forceUpdate"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] 5 : <CFString 0xec308 [0x2f2ae0]>{contents = "disablePing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] 6 : <CFString 0xec1f8 [0x2f2ae0]>{contents = "DisallowFusiing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] update_baseband: querying baseband info
    [20:50:15.0138] bbupdater: Opening device path /dev/cu.debug, using baud 115200
    [20:50:15.0138] bbupdater: Configuring Hardware Mux...bbupdater: OK
    [20:50:15.0138] bbupdater: [    714981.281435 : 13.00]::: powercycle
    [20:50:15.0138] bbupdater: - Ping failed, trying again, 48 tries left
    [20:50:15.0138] bbupdater: - Ping OK
    [20:50:15.0138] bbupdater: [    714982.987679 : 13.01]::: Polled 1
    [20:50:15.0138] bbupdater: Opening device path /dev/cu.debug, using baud 115200
    [20:50:15.0138] bbupdater: [    714

    Hi Md. Abdur Rahman, 
    Thanks for participating in the Apple Support Communities. 
    If your iPhone 4 is restarting unexpectedly, there are a few things to do depending on how frequently this is happening. 
    If it is restarting intermittently (from time to time), you may want to back up your data and restore the iPhone to factory settings:
    Use iTunes to restore your iOS device to factory settings - Apple Support
    If the same thing occurs, this article suggests contacting Apple Support for more help:
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it - Apple Support
    Make sure your iOS device is up to date. If you still see this issue after updating, contact Apple Support.
    Sincerely,
    Jeremy 

  • Creative Cloud for Teams - second computer will only install as trial version

    Hi there
    My company purchased Creative Cloud for Teams. I use a Mac at work and have installed it without any problems there. However at home i use a PC (Windows 7) and i have tried several times to sign into my Creative Cloud account and download programs so i can work at home but each time it will only load the programs as trial versions.
    I have tried several troubleshooting options with no luck:
    Clicked sign in on the trial window - but it just asks me for a serial number which i obviously dont have.
    I asked my work IT dept to delete and resend my seat invitation which they did but it didnt fix the issue.
    I asked my work IT dept to check with the reseller we bought Creative Cloud for Teams from whether there were any restrictions or settings which wont allow to install on a second computer but they said it should be fine.
    My team mates at work have installed it on their home Macs without a problem, it seems to be only a PC issue.
    I have had CS6 on my computer previously but uninstalled it all in case this was causing the conflict - but it didnt fix the CC issue.
    I have uninstalled and used the Adobe Cleaner tool, then reinstalled but this didnt work - the trial days still kept counting down.
    I uninstalled again, used a Registery cleaning tool (cleaned registery, temp files, browser temp files etc), used the Adobe Cleaner tool (just to make it extra clean), and removed all traces of Adobe from my machine. I reinstalled Creative Cloud Application manager, installed Acrobat to try it out. This time the trial days have gone back to 30 (rather than zero). I clicked on the "sign in" button, it signs me in but still asks for a serial number.
    I tried contacting Adobe via the chat channel but was told after some time that i would need to speak to Tech Support. My dealings with Adobe Tech Support in the past haven't been the most fruitful, so i thought i would ask the forum as my last desperate attempt to solve this problem.
    Any and all suggestions welcome.
    Thanks!

    Hi,
    Reset the hosts file:
    Windows
    Choose Start > Run, type %systemroot% \system32\drivers\etc, and then press Enter.
    Right-click the hosts file and select Open. Select Notepad for the application to open the hosts file.
    Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    Save and close the file.
    Mac OS
    Log in as an administrator to edit the hosts file in Mac OS.
    In a Finder window, choose Go > Go To Folder.
    Type /etc.
    Select the hosts file and open it.
    Back up the hosts file: Choose File > Save As, save the file as hosts.backup, and then click OK.
    Search the hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and delete these entries.
    Save and close the file.
    Regards,
    Romit Sinha

  • Secure link to iTunes Store Failed, Can't restore iPhone.

    Good day,
    Am hoping to get some help please. We recently upgraded our desktop from Windows XP to Windows 7. Re-installed all the software as well as iTunes 10.
    All has been working fine, up until yesterday. The playlist which we where syncing with the iPhone 3G, had been changed and we wanted to sync the changes to the phone.
    When preforming the sync, it got to the point where it said "Finishing Sync" in iTunes, the phone said "Sync in Progress" and iTunes froze completely. (Not Responding) Left it for about 30mins, after which it still said the same. I rebooted the machine and the phone, and tried again with the same error. I then tried removing all music and videos from the phone. Same problem.
    My last resort was to attempt a restore of the phone. It started the restore and eventually got to a point where iTunes came up with the error 2003, unable to restore iPhone, the phone was now stuck in restore mode with the iTunes Logo and USB plug on the main screen.
    So off to the iStore to get it fixed. The phone was reformatted/restored there and was working fine but I did not have any contacts/messages or photos on the phone, so I attempted another restore, so I could get my info back. It came up with the same issue again. Error 2003.
    I then started browsing around and found out the iTunes diagnostics, it fails every time on the "Secure link to iTunes", iTunes has been added to the Windows firewall, I have tried un-installing my AntiVirus software and trying it with again but same result. I have checked the ports are all open. I have tried to reset my hosts file. I have reset my internet explorer settings, but nothing is working.
    Can anybody help me out with this please.
    Below is the copy of the diagnostics log created the last time I ran it:
    Microsoft Windows 7 Home Premium Edition (Build 7600)
    OEM OEM
    iTunes 10.1.1.4
    QuickTime 7.6.9
    FairPlay 1.10.14
    Apple Application Support 1.4.1
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.3.0.69
    Apple Mobile Device Driver 1.52.0.0
    Bonjour 2.0.4.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number 91FD09E04D569044
    Current user is an administrator.
    The current local date and time is 2011-01-26 08:09:55.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce 8400 GS
    ** External Plug-ins Information **
    No external plug-ins installed.
    iPodService 10.1.1.4 is currently running.
    iTunesHelper 10.1.1.4 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {56AC59F1-BAF3-48E5-A70D-50B73E31F5EA}
    Description: Realtek RTL8102E/RTL8103E Family PCI-E Fast Ethernet NIC (NDIS 6.20)
    IP Address: 192.168.0.202
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.0.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.0.1
    Lease Obtained: Tue Jan 25 22:44:34 2011
    Lease Expires: Wed Jan 26 22:44:34 2011
    DNS Servers: 192.168.0.1
    192.168.0.254
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: Yes
    HTTP Proxy: 192.168.0.1:800
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was unsuccessful.
    The network connection timed out.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Last successful store access was 2011-01-26 08:08:05.
    Any help would be appreciated!
    Thanks in advance!

    The results show that you have a proxy server set and this can often cause problems with iTunes.
    The proxy setting can be accessed in Internet options>>Connections>>LAN Settings.
    Try un-checking the proxy server check box.
    It might also be a good idea to run a malware check if you didn't know you had the proxy server set.
    You can download a free version of an excellent scanner- Malwarebytes here:
    http://www.malwarebytes.org/

Maybe you are looking for

  • Scratch Disk Full

    I can't get on my Photoshop Elements 6.0 on my Mac (OS X) – I'm told the scratch disk is full. Please help!

  • Advice/opinions on best way to use Flash for website

    Hi I am working on an animation in After Effects (dimensions 1000px x 350px) which will sit in the masthead area of a website. I intend to render from After Effects as a flv (or as uncompressed avi and then convert to flv) and then import this into a

  • Photo Manager Pro

    Not sure if this is the right place to ask these questions, but hopefully someone can help.  I just installed the app Photo Manager Pro and love it !  When I sync my phone with my imac, where will the photos be synced to ? Can I now delete the albums

  • How to get current server node information uses webdynpro?

    Hi,everybody!         Can I use webdynpro to get the current logined on sever node informaition,such as server node id,server node number.

  • Dvorak Mac keyboard

    I am looking for a Mac keybord with Dvorak layout. Does anybody knows where can I find any?